class Wallet::Models::CustodianWalletContract

Wallet information

Attributes

name[RW]

@return [String] The wallet name

wallet_id[RW]

@return [String] The wallet identifier

Public Class Methods

mapper() click to toggle source

Mapper for CustodianWalletContract class as Ruby Hash. This will be used for serialization/deserialization.

# File lib/generated/wallet/models/custodian_wallet_contract.rb, line 23
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'CustodianWalletContract',
    type: {
      name: 'Composite',
      class_name: 'CustodianWalletContract',
      model_properties: {
        wallet_id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'walletId',
          type: {
            name: 'String'
          }
        },
        name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end