Sha256: 6da6342e18a010e3d502e265942819d492f05897e3b435aaa564eda8481e9fb7

Contents?: true

Size: 577 Bytes

Versions: 3

Compression:

Stored size: 577 Bytes

Contents

require_relative '../../common/jsonifier'

module MangoModel

  # Mandate entity
  class BankingAlias < EntityBase
    include MangoPay::Jsonifier

    # [String] The user ID who was credited
    attr_accessor :credited_user_id

    # [String] The Id of wallet
    attr_accessor :wallet_id

    # [BankingAliasType] The type of banking alias
    attr_accessor :type

    # [String] Owner name
    attr_accessor :owner_name

    # [Boolean] Whether the banking alias is active or not
    attr_accessor :active

    # [CountryIso] Its country
    attr_accessor :country
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
mangopay-v4-4.1.0 lib/mangopay/model/entity/banking_alias.rb
mangopay-v4-4.0.2 lib/mangopay/model/entity/banking_alias.rb
mangopay-v4-4.0.1 lib/mangopay/model/entity/banking_alias.rb