Class: Plaid::RiskSignalDocumentType

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

Constant Summary collapse

UNKNOWN =
"UNKNOWN".freeze
BANK_STATEMENT =
"BANK_STATEMENT".freeze
BENEFITS_STATEMENT =
"BENEFITS_STATEMENT".freeze
BUSINESS_FILING =
"BUSINESS_FILING".freeze
CHECK =
"CHECK".freeze
DRIVING_LICENSE =
"DRIVING_LICENSE".freeze
FINANCIAL_STATEMENT =
"FINANCIAL_STATEMENT".freeze
INVOICE =
"INVOICE".freeze
PAYSLIP =
"PAYSLIP".freeze
SOCIAL_SECURITY_CARD =
"SOCIAL_SECURITY_CARD".freeze
TAX_FORM =
"TAX_FORM".freeze
UTILITY_BILL =
"UTILITY_BILL".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



34
35
36
# File 'lib/plaid/models/risk_signal_document_type.rb', line 34

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



41
42
43
44
45
46
# File 'lib/plaid/models/risk_signal_document_type.rb', line 41

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