Class: Plaid::ItemConsentedDataScope

Inherits:
Object
  • Object
show all
Defined in:
lib/plaid/models/item_consented_data_scope.rb

Constant Summary collapse

ACCOUNT_BALANCE_INFO =
"account_balance_info".freeze
CONTACT_INFO =
"contact_info".freeze
ACCOUNT_ROUTING_NUMBER =
"account_routing_number".freeze
TRANSACTIONS =
"transactions".freeze
CREDIT_LOAN_INFO =
"credit_loan_info".freeze
INVESTMENTS =
"investments".freeze
PAYROLL_INFO =
"payroll_info".freeze
INCOME_VERIFICATION_PAYSTUBS_INFO =
"income_verification_paystubs_info".freeze
INCOME_VERIFICATION_W2S_INFO =
"income_verification_w2s_info".freeze
INCOME_VERIFICATION_BANK_STATEMENTS =
"income_verification_bank_statements".freeze
INCOME_VERIFICATION_EMPLOYMENT_INFO =
"income_verification_employment_info".freeze
BANK_STATEMENTS =
"bank_statements".freeze
RISK_INFO =
"risk_info".freeze
NETWORK_INSIGHTS_LITE =
"network_insights_lite".freeze
FRAUD_INFO =
"fraud_info".freeze

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.build_from_hash(value) ⇒ String

Builds the enum from string

Parameters:

  • The (String)

    enum value in the form of the string

Returns:

  • (String)

    The enum value



37
38
39
# File 'lib/plaid/models/item_consented_data_scope.rb', line 37

def self.build_from_hash(value)
  new.build_from_hash(value)
end

Instance Method Details

#build_from_hash(value) ⇒ String

Builds the enum from string

Parameters:

  • The (String)

    enum value in the form of the string

Returns:

  • (String)

    The enum value



44
45
46
47
48
49
# File 'lib/plaid/models/item_consented_data_scope.rb', line 44

def build_from_hash(value)
  # We do not validate that the value is one of the enums set in the OpenAPI
  # file because we want to be able to add to our list of enums without
  # breaking this client library.
  value
end