Class: Lithic::Models::RequiredDocument

Inherits:
Internal::Type::BaseModel show all
Defined in:
lib/lithic/models/required_document.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Internal::Type::BaseModel

==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml

Methods included from Internal::Type::Converter

#coerce, coerce, #dump, dump, inspect, #inspect, meta_info, new_coerce_state, type_info

Methods included from Internal::Util::SorbetRuntimeSupport

#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type

Constructor Details

#initialize(entity_token:, status_reasons:, valid_documents:) ⇒ Object

Some parameter documentations has been truncated, see Lithic::Models::RequiredDocument for more details.

Parameters:

  • entity_token (String)

    Globally unique identifier for an entity.

  • status_reasons (Array<String>)

    Provides the status reasons that will be satisfied by providing one of the valid

  • valid_documents (Array<String>)

    A list of valid documents that will satisfy the KYC requirements for the specifi



# File 'lib/lithic/models/required_document.rb', line 26

Instance Attribute Details

#entity_tokenString

Globally unique identifier for an entity.

Returns:

  • (String)


10
# File 'lib/lithic/models/required_document.rb', line 10

required :entity_token, String

#status_reasonsArray<String>

Provides the status reasons that will be satisfied by providing one of the valid documents.

Returns:

  • (Array<String>)


17
# File 'lib/lithic/models/required_document.rb', line 17

required :status_reasons, Lithic::Internal::Type::ArrayOf[String]

#valid_documentsArray<String>

A list of valid documents that will satisfy the KYC requirements for the specified entity.

Returns:

  • (Array<String>)


24
# File 'lib/lithic/models/required_document.rb', line 24

required :valid_documents, Lithic::Internal::Type::ArrayOf[String]