Sha256: f9a4b34c37f7739f6fcad22977541592104b0ee9c81de1026074dd3c6b4d9ceb

Contents?: true

Size: 595 Bytes

Versions: 3

Compression:

Stored size: 595 Bytes

Contents

require_relative '../../util/enum'

module MangoModel

  # UBO Declaration refusal reasons enumeration
  class UboDeclarationRefusedReasonType
    extend Enum

    # At least one natural user is missing from the declaration
    MISSING_UBO = value 'MISSING_UBO'

    # At least one of the natural users should not be declared as UBO
    INVALID_DECLARED_UBO = value 'INVALID_DECLARED_UBO'

    # At least one of the natural users declared as UBOs has been
    # created with wrong details (i.e. date of birth, country of residence)
    INVALID_UBO_DETAILS = value 'INVALID_UBO_DETAILS'
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
mangopay-v4-4.1.0 lib/mangopay/model/enum/ubo_declaration_refused_reason_type.rb
mangopay-v4-4.0.2 lib/mangopay/model/enum/ubo_declaration_refused_reason_type.rb
mangopay-v4-4.0.1 lib/mangopay/model/enum/ubo_declaration_refused_reason_type.rb