Class: MangoModel::BankingAlias
- Inherits:
-
EntityBase
- Object
- EntityBase
- MangoModel::BankingAlias
- Includes:
- MangoPay::Jsonifier
- Defined in:
- lib/mangopay/model/entity/banking_alias.rb
Overview
Mandate entity
Constant Summary
Constants included from MangoPay::Jsonifier
Instance Attribute Summary collapse
-
#active ⇒ Object
- Boolean
-
Whether the banking alias is active or not.
-
#country ⇒ Object
- CountryIso
-
Its country.
-
#credited_user_id ⇒ Object
- String
-
The user ID who was credited.
-
#owner_name ⇒ Object
- String
-
Owner name.
-
#type ⇒ Object
- BankingAliasType
-
The type of banking alias.
-
#wallet_id ⇒ Object
- String
-
The Id of wallet.
Attributes inherited from EntityBase
Method Summary
Methods included from MangoPay::Jsonifier
Methods included from NonInstantiable
Instance Attribute Details
#active ⇒ Object
- Boolean
-
Whether the banking alias is active or not
22 23 24 |
# File 'lib/mangopay/model/entity/banking_alias.rb', line 22 def active @active end |
#country ⇒ Object
- CountryIso
-
Its country
25 26 27 |
# File 'lib/mangopay/model/entity/banking_alias.rb', line 25 def country @country end |
#credited_user_id ⇒ Object
- String
-
The user ID who was credited
10 11 12 |
# File 'lib/mangopay/model/entity/banking_alias.rb', line 10 def credited_user_id @credited_user_id end |
#owner_name ⇒ Object
- String
-
Owner name
19 20 21 |
# File 'lib/mangopay/model/entity/banking_alias.rb', line 19 def owner_name @owner_name end |
#type ⇒ Object
- BankingAliasType
-
The type of banking alias
16 17 18 |
# File 'lib/mangopay/model/entity/banking_alias.rb', line 16 def type @type end |
#wallet_id ⇒ Object
- String
-
The Id of wallet
13 14 15 |
# File 'lib/mangopay/model/entity/banking_alias.rb', line 13 def wallet_id @wallet_id end |