mangopay-v4 4.0.0 → 4.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/.gitignore +29 -29
- data/.rspec +3 -3
- data/.rubocop.yml +1 -1
- data/.travis.yml +21 -13
- data/Gemfile +2 -2
- data/LICENSE +20 -20
- data/README.md +379 -379
- data/bin/mangopay +9 -9
- data/lib/mangopay.rb +132 -132
- data/lib/mangopay/api/api.rb +8 -8
- data/lib/mangopay/api/api_methods.rb +160 -136
- data/lib/mangopay/api/auth_token_manager.rb +173 -173
- data/lib/mangopay/api/http_client.rb +324 -324
- data/lib/mangopay/api/service/bank_accounts.rb +145 -145
- data/lib/mangopay/api/service/banking_aliases.rb +83 -0
- data/lib/mangopay/api/service/cards.rb +151 -151
- data/lib/mangopay/api/service/client_wallets.rb +88 -88
- data/lib/mangopay/api/service/clients.rb +67 -67
- data/lib/mangopay/api/service/dispute_documents.rb +157 -157
- data/lib/mangopay/api/service/disputes.rb +186 -186
- data/lib/mangopay/api/service/e_money.rb +63 -41
- data/lib/mangopay/api/service/events.rb +46 -46
- data/lib/mangopay/api/service/hooks.rb +92 -92
- data/lib/mangopay/api/service/kyc_documents.rb +152 -152
- data/lib/mangopay/api/service/mandates.rb +141 -141
- data/lib/mangopay/api/service/oauth_tokens.rb +24 -24
- data/lib/mangopay/api/service/pay_ins.rb +369 -259
- data/lib/mangopay/api/service/pay_outs.rb +53 -53
- data/lib/mangopay/api/service/pre_authorizations.rb +126 -68
- data/lib/mangopay/api/service/refunds.rb +159 -61
- data/lib/mangopay/api/service/reports.rb +150 -150
- data/lib/mangopay/api/service/repudiations.rb +31 -31
- data/lib/mangopay/api/service/responses.rb +101 -101
- data/lib/mangopay/api/service/settlement_transfers.rb +54 -54
- data/lib/mangopay/api/service/transactions.rb +246 -182
- data/lib/mangopay/api/service/transfers.rb +53 -53
- data/lib/mangopay/api/service/ubo_declarations.rb +94 -69
- data/lib/mangopay/api/service/users.rb +162 -162
- data/lib/mangopay/api/service/wallets.rb +98 -98
- data/lib/mangopay/api/uri_provider.rb +32 -34
- data/lib/mangopay/common/json_tag_converter.rb +70 -67
- data/lib/mangopay/common/jsonifier.rb +266 -248
- data/lib/mangopay/common/log_provider.rb +33 -33
- data/lib/mangopay/common/rate_limit_interval.rb +16 -16
- data/lib/mangopay/common/read_only_fields.rb +26 -26
- data/lib/mangopay/common/response_error.rb +61 -61
- data/lib/mangopay/common/sort_direction.rb +14 -14
- data/lib/mangopay/common/sort_field.rb +12 -12
- data/lib/mangopay/common/template_url_options.rb +8 -8
- data/lib/mangopay/configuration.rb +38 -38
- data/lib/mangopay/environment.rb +65 -65
- data/lib/mangopay/model/address.rb +26 -26
- data/lib/mangopay/model/billing.rb +13 -0
- data/lib/mangopay/model/birthplace.rb +15 -0
- data/lib/mangopay/model/declared_ubo.rb +20 -20
- data/lib/mangopay/model/dispute_reason.rb +14 -14
- data/lib/mangopay/model/document_page_consult.rb +14 -14
- data/lib/mangopay/model/e_money.rb +17 -17
- data/lib/mangopay/model/entity/account/bank_account.rb +25 -25
- data/lib/mangopay/model/entity/account/ca_bank_account.rb +26 -26
- data/lib/mangopay/model/entity/account/debited_bank_account.rb +31 -0
- data/lib/mangopay/model/entity/account/gb_bank_account.rb +20 -20
- data/lib/mangopay/model/entity/account/iban_bank_account.rb +20 -20
- data/lib/mangopay/model/entity/account/other_bank_account.rb +23 -23
- data/lib/mangopay/model/entity/account/us_bank_account.rb +23 -23
- data/lib/mangopay/model/entity/banking_alias.rb +27 -0
- data/lib/mangopay/model/entity/card.rb +44 -44
- data/lib/mangopay/model/entity/card_registration.rb +42 -42
- data/lib/mangopay/model/entity/client.rb +65 -62
- data/lib/mangopay/model/entity/client_wallet.rb +22 -22
- data/lib/mangopay/model/entity/dispute.rb +49 -49
- data/lib/mangopay/model/entity/dispute_document.rb +28 -28
- data/lib/mangopay/model/entity/entity_base.rb +17 -17
- data/lib/mangopay/model/entity/hook.rb +25 -25
- data/lib/mangopay/model/entity/kyc_document.rb +27 -27
- data/lib/mangopay/model/entity/mandate.rb +50 -50
- data/lib/mangopay/model/entity/pay_in/apple_pay_direct_pay_in.rb +26 -0
- data/lib/mangopay/model/entity/pay_in/bank_wire_direct_pay_in.rb +24 -21
- data/lib/mangopay/model/entity/pay_in/bank_wire_external_instruction_pay_in.rb +19 -0
- data/lib/mangopay/model/entity/pay_in/card_direct_pay_in.rb +41 -32
- data/lib/mangopay/model/entity/pay_in/card_pre_authorized_pay_in.rb +15 -12
- data/lib/mangopay/model/entity/pay_in/card_web_pay_in.rb +36 -39
- data/lib/mangopay/model/entity/pay_in/direct_debit_direct_pay_in.rb +25 -22
- data/lib/mangopay/model/entity/pay_in/direct_debit_web_pay_in.rb +37 -37
- data/lib/mangopay/model/entity/pay_in/google_pay_direct_pay_in.rb +28 -0
- data/lib/mangopay/model/entity/pay_in/pay_in.rb +18 -15
- data/lib/mangopay/model/entity/pay_in/paypal_web_pay_in.rb +15 -0
- data/lib/mangopay/model/entity/pay_out.rb +21 -21
- data/lib/mangopay/model/entity/pre_authorization.rb +74 -67
- data/lib/mangopay/model/entity/refund.rb +17 -17
- data/lib/mangopay/model/entity/report.rb +50 -50
- data/lib/mangopay/model/entity/repudiation.rb +17 -17
- data/lib/mangopay/model/entity/settlement_transfer.rb +16 -16
- data/lib/mangopay/model/entity/transaction.rb +51 -51
- data/lib/mangopay/model/entity/transfer.rb +12 -12
- data/lib/mangopay/model/entity/ubo.rb +30 -0
- data/lib/mangopay/model/entity/ubo_declaration.rb +29 -31
- data/lib/mangopay/model/entity/user/legal_user.rb +55 -52
- data/lib/mangopay/model/entity/user/natural_user.rb +49 -49
- data/lib/mangopay/model/entity/user/user.rb +17 -17
- data/lib/mangopay/model/entity/wallet.rb +27 -27
- data/lib/mangopay/model/enum/account_type.rb +23 -23
- data/lib/mangopay/model/enum/avs_result.rb +19 -0
- data/lib/mangopay/model/enum/banking_alias_type.rb +12 -0
- data/lib/mangopay/model/enum/business_type.rb +17 -0
- data/lib/mangopay/model/enum/card_status.rb +14 -14
- data/lib/mangopay/model/enum/card_type.rb +32 -32
- data/lib/mangopay/model/enum/card_validity.rb +18 -18
- data/lib/mangopay/model/enum/country_iso.rb +758 -758
- data/lib/mangopay/model/enum/culture_code.rb +43 -43
- data/lib/mangopay/model/enum/currency_iso.rb +551 -551
- data/lib/mangopay/model/enum/declared_ubo_refused_reason_type.rb +15 -15
- data/lib/mangopay/model/enum/declared_ubo_status.rb +17 -17
- data/lib/mangopay/model/enum/deposit_type.rb +14 -14
- data/lib/mangopay/model/enum/direct_debit_type.rb +12 -12
- data/lib/mangopay/model/enum/dispute_doc_refused_reason_type.rb +24 -24
- data/lib/mangopay/model/enum/dispute_document_type.rb +22 -22
- data/lib/mangopay/model/enum/dispute_reason_type.rb +32 -32
- data/lib/mangopay/model/enum/dispute_status.rb +20 -20
- data/lib/mangopay/model/enum/dispute_type.rb +14 -14
- data/lib/mangopay/model/enum/document_status.rb +20 -20
- data/lib/mangopay/model/enum/download_format.rb +10 -10
- data/lib/mangopay/model/enum/event_type.rb +76 -73
- data/lib/mangopay/model/enum/funds_type.rb +14 -14
- data/lib/mangopay/model/enum/hook_status.rb +12 -12
- data/lib/mangopay/model/enum/hook_validity.rb +14 -14
- data/lib/mangopay/model/enum/income_range.rb +20 -20
- data/lib/mangopay/model/enum/kyc_doc_refused_reason_type.rb +36 -36
- data/lib/mangopay/model/enum/kyc_document_type.rb +18 -18
- data/lib/mangopay/model/enum/kyc_level.rb +12 -12
- data/lib/mangopay/model/enum/legal_person_type.rb +14 -14
- data/lib/mangopay/model/enum/mandate_culture_code.rb +22 -22
- data/lib/mangopay/model/enum/mandate_execution_type.rb +10 -10
- data/lib/mangopay/model/enum/mandate_scheme.rb +12 -12
- data/lib/mangopay/model/enum/mandate_status.rb +23 -23
- data/lib/mangopay/model/enum/mandate_type.rb +10 -10
- data/lib/mangopay/model/enum/natural_user_capacity.rb +14 -14
- data/lib/mangopay/model/enum/pay_in_execution_type.rb +17 -17
- data/lib/mangopay/model/enum/pay_in_payment_type.rb +29 -20
- data/lib/mangopay/model/enum/pay_out_payment_type.rb +10 -10
- data/lib/mangopay/model/enum/payment_status.rb +20 -20
- data/lib/mangopay/model/enum/person_type.rb +14 -14
- data/lib/mangopay/model/enum/platform_type.rb +22 -22
- data/lib/mangopay/model/enum/pre_authorization_execution_type.rb +10 -10
- data/lib/mangopay/model/enum/pre_authorization_status.rb +17 -17
- data/lib/mangopay/model/enum/refund_reason_type.rb +20 -20
- data/lib/mangopay/model/enum/report_status.rb +16 -16
- data/lib/mangopay/model/enum/report_type.rb +12 -12
- data/lib/mangopay/model/enum/sector.rb +29 -0
- data/lib/mangopay/model/enum/secure_mode.rb +15 -15
- data/lib/mangopay/model/enum/transaction_nature.rb +16 -16
- data/lib/mangopay/model/enum/transaction_status.rb +14 -14
- data/lib/mangopay/model/enum/transaction_type.rb +14 -14
- data/lib/mangopay/model/enum/ubo_declaration_refused_reason_type.rb +18 -18
- data/lib/mangopay/model/enum/ubo_declaration_status.rb +20 -20
- data/lib/mangopay/model/event.rb +17 -17
- data/lib/mangopay/model/model.rb +214 -193
- data/lib/mangopay/model/money.rb +16 -16
- data/lib/mangopay/model/pay_in_web_extended_view.rb +30 -30
- data/lib/mangopay/model/platform_categorization.rb +15 -0
- data/lib/mangopay/model/refund_reason.rb +14 -14
- data/lib/mangopay/model/report_filter.rb +82 -82
- data/lib/mangopay/model/request/cancel_request.rb +15 -15
- data/lib/mangopay/model/request/complete_registration_request.rb +12 -12
- data/lib/mangopay/model/request/currency_request.rb +12 -12
- data/lib/mangopay/model/request/deactivation_request.rb +9 -9
- data/lib/mangopay/model/request/filter_request.rb +37 -37
- data/lib/mangopay/model/request/submit_document_request.rb +13 -13
- data/lib/mangopay/model/request/submit_ubo_declaration_request.rb +16 -13
- data/lib/mangopay/model/request/upload_file_request.rb +8 -8
- data/lib/mangopay/model/response_replica.rb +26 -26
- data/lib/mangopay/model/security_info.rb +13 -0
- data/lib/mangopay/util/custom_formatter.rb +11 -11
- data/lib/mangopay/util/custom_logger.rb +33 -33
- data/lib/mangopay/util/enum.rb +51 -51
- data/lib/mangopay/util/file_encoder.rb +15 -15
- data/lib/mangopay/util/non_instantiable.rb +5 -5
- data/lib/mangopay/util/storage_strategy.rb +9 -9
- data/lib/mangopay/util/void_logger.rb +5 -5
- data/mangopay-v4.gemspec +32 -0
- data/mangopay.gemspec +32 -32
- data/spec/context/address_context.rb +24 -24
- data/spec/context/bank_account_context.rb +137 -137
- data/spec/context/banking_alias_context.rb +17 -0
- data/spec/context/birthplace_context.rb +17 -0
- data/spec/context/card_context.rb +45 -45
- data/spec/context/client_context.rb +43 -44
- data/spec/context/dispute_context.rb +36 -36
- data/spec/context/dispute_document_context.rb +19 -19
- data/spec/context/hook_context.rb +15 -15
- data/spec/context/kyc_document_context.rb +22 -22
- data/spec/context/mandate_context.rb +26 -26
- data/spec/context/pay_in_context.rb +319 -224
- data/spec/context/pay_out_context.rb +39 -38
- data/spec/context/pre_authorization_context.rb +44 -40
- data/spec/context/refund_context.rb +32 -32
- data/spec/context/report_context.rb +21 -21
- data/spec/context/repudiation_context.rb +18 -18
- data/spec/context/settlement_transfer_context.rb +27 -27
- data/spec/context/transfer_context.rb +50 -50
- data/spec/context/ubo_declaration_context.rb +29 -24
- data/spec/context/user_context.rb +83 -82
- data/spec/context/wallet_context.rb +52 -52
- data/spec/mangopay/bank_accounts_spec.rb +228 -228
- data/spec/mangopay/banking_alias_spec.rb +85 -0
- data/spec/mangopay/cards_spec.rb +133 -134
- data/spec/mangopay/client_wallets_spec.rb +147 -147
- data/spec/mangopay/clients_spec.rb +56 -54
- data/spec/mangopay/configuration_spec.rb +125 -125
- data/spec/mangopay/dispute_documents_spec.rb +173 -173
- data/spec/mangopay/disputes_spec.rb +264 -264
- data/spec/mangopay/e_money_spec.rb +57 -37
- data/spec/mangopay/events_spec.rb +49 -49
- data/spec/mangopay/hooks_spec.rb +70 -70
- data/spec/mangopay/kyc_documents_spec.rb +179 -179
- data/spec/mangopay/mandates_spec.rb +218 -218
- data/spec/mangopay/oauth_tokens_spec.rb +40 -40
- data/spec/mangopay/pay_ins_spec.rb +279 -180
- data/spec/mangopay/pay_outs_spec.rb +38 -38
- data/spec/mangopay/pre_authorizations_spec.rb +134 -57
- data/spec/mangopay/refunds_spec.rb +187 -39
- data/spec/mangopay/reports_spec.rb +118 -120
- data/spec/mangopay/responses_spec.rb +324 -294
- data/spec/mangopay/settlement_transfers_spec.rb +36 -36
- data/spec/mangopay/transactions_spec.rb +347 -232
- data/spec/mangopay/transfers_spec.rb +37 -37
- data/spec/mangopay/ubo_declarations_spec.rb +127 -64
- data/spec/mangopay/users_spec.rb +145 -145
- data/spec/mangopay/wallets_spec.rb +103 -103
- data/spec/spec_helper.rb +72 -72
- data/spec/tmp/MangoPay.AuthorizationToken.FileStore.tmp +6 -0
- data/spec/tmp/mangopay.log.tmp +1201 -0
- metadata +31 -5
@@ -1,13 +1,13 @@
|
|
1
|
-
require_relative '../../common/jsonifier'
|
2
|
-
|
3
|
-
module MangoModel
|
4
|
-
|
5
|
-
# Transfer entity
|
6
|
-
# A Transfer is a request to relocate e-money
|
7
|
-
# from one wallet to another
|
8
|
-
class Transfer < Transaction
|
9
|
-
include MangoPay::Jsonifier
|
10
|
-
|
11
|
-
# API docs specify identical fields in Transfer and Transaction.
|
12
|
-
end
|
1
|
+
require_relative '../../common/jsonifier'
|
2
|
+
|
3
|
+
module MangoModel
|
4
|
+
|
5
|
+
# Transfer entity
|
6
|
+
# A Transfer is a request to relocate e-money
|
7
|
+
# from one wallet to another
|
8
|
+
class Transfer < Transaction
|
9
|
+
include MangoPay::Jsonifier
|
10
|
+
|
11
|
+
# API docs specify identical fields in Transfer and Transaction.
|
12
|
+
end
|
13
13
|
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
require_relative '../../common/jsonifier'
|
2
|
+
|
3
|
+
module MangoModel
|
4
|
+
|
5
|
+
# UBO entity
|
6
|
+
class Ubo < EntityBase
|
7
|
+
include MangoPay::Jsonifier
|
8
|
+
|
9
|
+
# [String]
|
10
|
+
attr_accessor :first_name
|
11
|
+
|
12
|
+
# [String]
|
13
|
+
attr_accessor :last_name
|
14
|
+
|
15
|
+
# [Address]
|
16
|
+
attr_accessor :address
|
17
|
+
|
18
|
+
# [CountryIso]
|
19
|
+
attr_accessor :nationality
|
20
|
+
|
21
|
+
# [Long]
|
22
|
+
attr_accessor :birthday
|
23
|
+
|
24
|
+
# [String]
|
25
|
+
attr_accessor :birthplace
|
26
|
+
|
27
|
+
# [Bool]
|
28
|
+
attr_accessor :is_active
|
29
|
+
end
|
30
|
+
end
|
@@ -1,32 +1,30 @@
|
|
1
|
-
require_relative '../../common/jsonifier'
|
2
|
-
|
3
|
-
module MangoModel
|
4
|
-
|
5
|
-
# UBO Declaration entity
|
6
|
-
# A UBO Declaration is an electronic version of the previous KYC document
|
7
|
-
# of +KycDocumentType::SHAREHOLDER_DECLARATION+, used to declare all the
|
8
|
-
# Ultimate Beneficial Owners of a legal user of +LegalPersonType::BUSINESS+
|
9
|
-
# (i.e. the shareholders of at least 25% ownership)
|
10
|
-
class UboDeclaration < EntityBase
|
11
|
-
include MangoPay::Jsonifier
|
12
|
-
|
13
|
-
# [
|
14
|
-
attr_accessor :
|
15
|
-
|
16
|
-
# [UboDeclarationStatus] Its status
|
17
|
-
attr_accessor :status
|
18
|
-
|
19
|
-
# [Array] Array of +UboDeclarationRefusedReasonType+s (reasons why
|
20
|
-
# the UBO declaration was refused)
|
21
|
-
attr_accessor :
|
22
|
-
|
23
|
-
# [String] Explanation of why the UBO declaration was refused
|
24
|
-
attr_accessor :
|
25
|
-
|
26
|
-
# [Array] When sending to the API, will be a list of the IDs of the users
|
27
|
-
# being declared as UBOs. When retrieving +
|
28
|
-
|
29
|
-
|
30
|
-
attr_accessor :declared_ubos
|
31
|
-
end
|
1
|
+
require_relative '../../common/jsonifier'
|
2
|
+
|
3
|
+
module MangoModel
|
4
|
+
|
5
|
+
# UBO Declaration entity
|
6
|
+
# A UBO Declaration is an electronic version of the previous KYC document
|
7
|
+
# of +KycDocumentType::SHAREHOLDER_DECLARATION+, used to declare all the
|
8
|
+
# Ultimate Beneficial Owners of a legal user of +LegalPersonType::BUSINESS+
|
9
|
+
# (i.e. the shareholders of at least 25% ownership)
|
10
|
+
class UboDeclaration < EntityBase
|
11
|
+
include MangoPay::Jsonifier
|
12
|
+
|
13
|
+
# [Int]
|
14
|
+
attr_accessor :processed_date
|
15
|
+
|
16
|
+
# [UboDeclarationStatus] Its status
|
17
|
+
attr_accessor :status
|
18
|
+
|
19
|
+
# [Array] Array of +UboDeclarationRefusedReasonType+s (reasons why
|
20
|
+
# the UBO declaration was refused)
|
21
|
+
attr_accessor :reason
|
22
|
+
|
23
|
+
# [String] Explanation of why the UBO declaration was refused
|
24
|
+
attr_accessor :message
|
25
|
+
|
26
|
+
# [Array] When sending to the API, will be a list of the IDs of the users
|
27
|
+
# being declared as UBOs. When retrieving +Ubo+s from the API,
|
28
|
+
attr_accessor :ubos
|
29
|
+
end
|
32
30
|
end
|
@@ -1,53 +1,56 @@
|
|
1
|
-
require_relative '../../../common/jsonifier'
|
2
|
-
|
3
|
-
module MangoModel
|
4
|
-
|
5
|
-
# User entity of +PersonType::LEGAL+
|
6
|
-
# A Legal User represents a business or an organization.
|
7
|
-
class LegalUser < User
|
8
|
-
include MangoPay::Jsonifier
|
9
|
-
|
10
|
-
# [String] Their name
|
11
|
-
attr_accessor :name
|
12
|
-
|
13
|
-
# [LegalPersonType] Type of legal user
|
14
|
-
attr_accessor :legal_person_type
|
15
|
-
|
16
|
-
# [Address] Their headquarters' address
|
17
|
-
attr_accessor :headquarters_address
|
18
|
-
|
19
|
-
# [String] Their legal representative's first name
|
20
|
-
attr_accessor :legal_representative_first_name
|
21
|
-
|
22
|
-
# [String] Their legal representative's last name
|
23
|
-
attr_accessor :legal_representative_last_name
|
24
|
-
|
25
|
-
# [Address] Their legal representative's physical address
|
26
|
-
attr_accessor :legal_representative_address
|
27
|
-
|
28
|
-
# [String] Their legal representative's email address
|
29
|
-
attr_accessor :legal_representative_email
|
30
|
-
|
31
|
-
# [Integer] Their legal representative's birthday (UNIX timestamp)
|
32
|
-
attr_accessor :legal_representative_birthday
|
33
|
-
|
34
|
-
# [CountryIso] Their legal representative's nationality
|
35
|
-
attr_accessor :legal_representative_nationality
|
36
|
-
|
37
|
-
# [CountryIso] Their legal representative's country of residence
|
38
|
-
attr_accessor :legal_representative_country_of_residence
|
39
|
-
|
40
|
-
# [String] Their statute
|
41
|
-
attr_accessor :statute
|
42
|
-
|
43
|
-
# [String] Their proof of registration
|
44
|
-
attr_accessor :proof_of_registration
|
45
|
-
|
46
|
-
# [String]
|
47
|
-
attr_accessor :
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
1
|
+
require_relative '../../../common/jsonifier'
|
2
|
+
|
3
|
+
module MangoModel
|
4
|
+
|
5
|
+
# User entity of +PersonType::LEGAL+
|
6
|
+
# A Legal User represents a business or an organization.
|
7
|
+
class LegalUser < User
|
8
|
+
include MangoPay::Jsonifier
|
9
|
+
|
10
|
+
# [String] Their name
|
11
|
+
attr_accessor :name
|
12
|
+
|
13
|
+
# [LegalPersonType] Type of legal user
|
14
|
+
attr_accessor :legal_person_type
|
15
|
+
|
16
|
+
# [Address] Their headquarters' address
|
17
|
+
attr_accessor :headquarters_address
|
18
|
+
|
19
|
+
# [String] Their legal representative's first name
|
20
|
+
attr_accessor :legal_representative_first_name
|
21
|
+
|
22
|
+
# [String] Their legal representative's last name
|
23
|
+
attr_accessor :legal_representative_last_name
|
24
|
+
|
25
|
+
# [Address] Their legal representative's physical address
|
26
|
+
attr_accessor :legal_representative_address
|
27
|
+
|
28
|
+
# [String] Their legal representative's email address
|
29
|
+
attr_accessor :legal_representative_email
|
30
|
+
|
31
|
+
# [Integer] Their legal representative's birthday (UNIX timestamp)
|
32
|
+
attr_accessor :legal_representative_birthday
|
33
|
+
|
34
|
+
# [CountryIso] Their legal representative's nationality
|
35
|
+
attr_accessor :legal_representative_nationality
|
36
|
+
|
37
|
+
# [CountryIso] Their legal representative's country of residence
|
38
|
+
attr_accessor :legal_representative_country_of_residence
|
39
|
+
|
40
|
+
# [String] Their statute
|
41
|
+
attr_accessor :statute
|
42
|
+
|
43
|
+
# [String] Their proof of registration
|
44
|
+
attr_accessor :proof_of_registration
|
45
|
+
|
46
|
+
# [String]
|
47
|
+
attr_accessor :company_number
|
48
|
+
|
49
|
+
# [String] Their shareholder declaration
|
50
|
+
attr_accessor :shareholder_declaration
|
51
|
+
|
52
|
+
def initialize
|
53
|
+
self.person_type = PersonType::LEGAL
|
54
|
+
end
|
55
|
+
end
|
53
56
|
end
|
@@ -1,50 +1,50 @@
|
|
1
|
-
require_relative '../../../common/jsonifier'
|
2
|
-
|
3
|
-
module MangoModel
|
4
|
-
|
5
|
-
# User entity of +PersonType::NATURAL+
|
6
|
-
# A Natural User represents an actual person.
|
7
|
-
class NaturalUser < User
|
8
|
-
include MangoPay::Jsonifier
|
9
|
-
|
10
|
-
# [String] Their first name
|
11
|
-
attr_accessor :first_name
|
12
|
-
|
13
|
-
# [String] Their last name
|
14
|
-
attr_accessor :last_name
|
15
|
-
|
16
|
-
# [Address] Their address
|
17
|
-
attr_accessor :address
|
18
|
-
|
19
|
-
# [Integer] Their date of birth (UNIX timestamp)
|
20
|
-
attr_accessor :birthday
|
21
|
-
|
22
|
-
# [String] Their place of birth
|
23
|
-
attr_accessor :birthplace
|
24
|
-
|
25
|
-
# [CountryIso] Their nationality
|
26
|
-
attr_accessor :nationality
|
27
|
-
|
28
|
-
# [CountryIso] Their current country of residence
|
29
|
-
attr_accessor :country_of_residence
|
30
|
-
|
31
|
-
# [String] Their occupation
|
32
|
-
attr_accessor :occupation
|
33
|
-
|
34
|
-
# [Integer] Their income range (see MangoModel::IncomeRange)
|
35
|
-
attr_accessor :income_range
|
36
|
-
|
37
|
-
# [String] Proof of their identity
|
38
|
-
attr_accessor :proof_of_identity
|
39
|
-
|
40
|
-
# [String] Proof of their address
|
41
|
-
attr_accessor :proof_of_address
|
42
|
-
|
43
|
-
# [String] Their capacity within MangoPay
|
44
|
-
attr_accessor :capacity
|
45
|
-
|
46
|
-
def initialize
|
47
|
-
self.person_type = PersonType::NATURAL
|
48
|
-
end
|
49
|
-
end
|
1
|
+
require_relative '../../../common/jsonifier'
|
2
|
+
|
3
|
+
module MangoModel
|
4
|
+
|
5
|
+
# User entity of +PersonType::NATURAL+
|
6
|
+
# A Natural User represents an actual person.
|
7
|
+
class NaturalUser < User
|
8
|
+
include MangoPay::Jsonifier
|
9
|
+
|
10
|
+
# [String] Their first name
|
11
|
+
attr_accessor :first_name
|
12
|
+
|
13
|
+
# [String] Their last name
|
14
|
+
attr_accessor :last_name
|
15
|
+
|
16
|
+
# [Address] Their address
|
17
|
+
attr_accessor :address
|
18
|
+
|
19
|
+
# [Integer] Their date of birth (UNIX timestamp)
|
20
|
+
attr_accessor :birthday
|
21
|
+
|
22
|
+
# [String] Their place of birth
|
23
|
+
attr_accessor :birthplace
|
24
|
+
|
25
|
+
# [CountryIso] Their nationality
|
26
|
+
attr_accessor :nationality
|
27
|
+
|
28
|
+
# [CountryIso] Their current country of residence
|
29
|
+
attr_accessor :country_of_residence
|
30
|
+
|
31
|
+
# [String] Their occupation
|
32
|
+
attr_accessor :occupation
|
33
|
+
|
34
|
+
# [Integer] Their income range (see MangoModel::IncomeRange)
|
35
|
+
attr_accessor :income_range
|
36
|
+
|
37
|
+
# [String] Proof of their identity
|
38
|
+
attr_accessor :proof_of_identity
|
39
|
+
|
40
|
+
# [String] Proof of their address
|
41
|
+
attr_accessor :proof_of_address
|
42
|
+
|
43
|
+
# [String] Their capacity within MangoPay
|
44
|
+
attr_accessor :capacity
|
45
|
+
|
46
|
+
def initialize
|
47
|
+
self.person_type = PersonType::NATURAL
|
48
|
+
end
|
49
|
+
end
|
50
50
|
end
|
@@ -1,18 +1,18 @@
|
|
1
|
-
require_relative '../../../util/non_instantiable'
|
2
|
-
|
3
|
-
module MangoModel
|
4
|
-
|
5
|
-
# User entity's base class. Should not be instantiated.
|
6
|
-
class User < EntityBase
|
7
|
-
extend NonInstantiable
|
8
|
-
|
9
|
-
# Type of user, one of +PersonType+
|
10
|
-
attr_accessor :person_type
|
11
|
-
|
12
|
-
# Their KYC level, one of +KycLevel+
|
13
|
-
attr_accessor :kyc_level
|
14
|
-
|
15
|
-
# Their email address
|
16
|
-
attr_accessor :email
|
17
|
-
end
|
1
|
+
require_relative '../../../util/non_instantiable'
|
2
|
+
|
3
|
+
module MangoModel
|
4
|
+
|
5
|
+
# User entity's base class. Should not be instantiated.
|
6
|
+
class User < EntityBase
|
7
|
+
extend NonInstantiable
|
8
|
+
|
9
|
+
# Type of user, one of +PersonType+
|
10
|
+
attr_accessor :person_type
|
11
|
+
|
12
|
+
# Their KYC level, one of +KycLevel+
|
13
|
+
attr_accessor :kyc_level
|
14
|
+
|
15
|
+
# Their email address
|
16
|
+
attr_accessor :email
|
17
|
+
end
|
18
18
|
end
|
@@ -1,28 +1,28 @@
|
|
1
|
-
require_relative '../../common/jsonifier'
|
2
|
-
|
3
|
-
module MangoModel
|
4
|
-
|
5
|
-
# Wallet entity
|
6
|
-
# A Wallet is an object in which PayIns and Transfers from
|
7
|
-
# users are stored in order to collect money. Wallets can
|
8
|
-
# be paid into, funds can be withdrawn from them or transferred
|
9
|
-
# from one Wallet to another.
|
10
|
-
class Wallet < EntityBase
|
11
|
-
include MangoPay::Jsonifier
|
12
|
-
|
13
|
-
# [Array] Its owners (currently only one may be specified)
|
14
|
-
attr_accessor :owners
|
15
|
-
|
16
|
-
# [Money] Its current balance
|
17
|
-
attr_accessor :balance
|
18
|
-
|
19
|
-
# [FundsType] Its funds' type
|
20
|
-
attr_accessor :funds_type
|
21
|
-
|
22
|
-
# [String] Its description
|
23
|
-
attr_accessor :description
|
24
|
-
|
25
|
-
# [CurrencyIso] Its funds' currency
|
26
|
-
attr_accessor :currency
|
27
|
-
end
|
1
|
+
require_relative '../../common/jsonifier'
|
2
|
+
|
3
|
+
module MangoModel
|
4
|
+
|
5
|
+
# Wallet entity
|
6
|
+
# A Wallet is an object in which PayIns and Transfers from
|
7
|
+
# users are stored in order to collect money. Wallets can
|
8
|
+
# be paid into, funds can be withdrawn from them or transferred
|
9
|
+
# from one Wallet to another.
|
10
|
+
class Wallet < EntityBase
|
11
|
+
include MangoPay::Jsonifier
|
12
|
+
|
13
|
+
# [Array] Its owners (currently only one may be specified)
|
14
|
+
attr_accessor :owners
|
15
|
+
|
16
|
+
# [Money] Its current balance
|
17
|
+
attr_accessor :balance
|
18
|
+
|
19
|
+
# [FundsType] Its funds' type
|
20
|
+
attr_accessor :funds_type
|
21
|
+
|
22
|
+
# [String] Its description
|
23
|
+
attr_accessor :description
|
24
|
+
|
25
|
+
# [CurrencyIso] Its funds' currency
|
26
|
+
attr_accessor :currency
|
27
|
+
end
|
28
28
|
end
|
@@ -1,24 +1,24 @@
|
|
1
|
-
require_relative '../../util/enum'
|
2
|
-
|
3
|
-
module MangoModel
|
4
|
-
|
5
|
-
# Bank account types enumeration
|
6
|
-
class AccountType
|
7
|
-
extend Enum
|
8
|
-
|
9
|
-
# IBAN bank account
|
10
|
-
IBAN = value 'IBAN'
|
11
|
-
|
12
|
-
# US format bank account
|
13
|
-
US = value 'US'
|
14
|
-
|
15
|
-
# CA format bank account
|
16
|
-
CA = value 'CA'
|
17
|
-
|
18
|
-
# GB format bank account
|
19
|
-
GB = value 'GB'
|
20
|
-
|
21
|
-
# Unspecified bank account format
|
22
|
-
OTHER = value 'OTHER'
|
23
|
-
end
|
1
|
+
require_relative '../../util/enum'
|
2
|
+
|
3
|
+
module MangoModel
|
4
|
+
|
5
|
+
# Bank account types enumeration
|
6
|
+
class AccountType
|
7
|
+
extend Enum
|
8
|
+
|
9
|
+
# IBAN bank account
|
10
|
+
IBAN = value 'IBAN'
|
11
|
+
|
12
|
+
# US format bank account
|
13
|
+
US = value 'US'
|
14
|
+
|
15
|
+
# CA format bank account
|
16
|
+
CA = value 'CA'
|
17
|
+
|
18
|
+
# GB format bank account
|
19
|
+
GB = value 'GB'
|
20
|
+
|
21
|
+
# Unspecified bank account format
|
22
|
+
OTHER = value 'OTHER'
|
23
|
+
end
|
24
24
|
end
|