Class: Plaid::ConsumerReportPermissiblePurpose

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

Constant Summary collapse

ACCOUNT_REVIEW_CREDIT =
"ACCOUNT_REVIEW_CREDIT".freeze
ACCOUNT_REVIEW_NON_CREDIT =
"ACCOUNT_REVIEW_NON_CREDIT".freeze
EMPLOYMENT =
"EMPLOYMENT".freeze
EXTENSION_OF_CREDIT =
"EXTENSION_OF_CREDIT".freeze
LEGITIMATE_BUSINESS_NEED_TENANT_SCREENING =
"LEGITIMATE_BUSINESS_NEED_TENANT_SCREENING".freeze
LEGITIMATE_BUSINESS_NEED_OTHER =
"LEGITIMATE_BUSINESS_NEED_OTHER".freeze
WRITTEN_INSTRUCTION_PREQUALIFICATION =
"WRITTEN_INSTRUCTION_PREQUALIFICATION".freeze
WRITTEN_INSTRUCTION_OTHER =
"WRITTEN_INSTRUCTION_OTHER".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



30
31
32
# File 'lib/plaid/models/consumer_report_permissible_purpose.rb', line 30

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



37
38
39
40
41
42
# File 'lib/plaid/models/consumer_report_permissible_purpose.rb', line 37

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