pnz-payments-sdk 1.0.0
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 +7 -0
- data/LICENSE +28 -0
- data/README.md +98 -0
- data/lib/account_and_transaction_api_specification/api_helper.rb +10 -0
- data/lib/account_and_transaction_api_specification/client.rb +114 -0
- data/lib/account_and_transaction_api_specification/configuration.rb +127 -0
- data/lib/account_and_transaction_api_specification/controllers/accounts_controller.rb +146 -0
- data/lib/account_and_transaction_api_specification/controllers/balances_controller.rb +146 -0
- data/lib/account_and_transaction_api_specification/controllers/base_controller.rb +66 -0
- data/lib/account_and_transaction_api_specification/controllers/beneficiaries_controller.rb +146 -0
- data/lib/account_and_transaction_api_specification/controllers/direct_debits_controller.rb +146 -0
- data/lib/account_and_transaction_api_specification/controllers/offers_controller.rb +146 -0
- data/lib/account_and_transaction_api_specification/controllers/party_controller.rb +146 -0
- data/lib/account_and_transaction_api_specification/controllers/scheduled_payments_controller.rb +146 -0
- data/lib/account_and_transaction_api_specification/controllers/standing_orders_controller.rb +146 -0
- data/lib/account_and_transaction_api_specification/controllers/statements_controller.rb +421 -0
- data/lib/account_and_transaction_api_specification/controllers/transactions_controller.rb +170 -0
- data/lib/account_and_transaction_api_specification/exceptions/accounts400_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/accounts403_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/accounts500_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/accounts503_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/accounts_balances400_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/accounts_balances403_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/accounts_balances500_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/accounts_balances503_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/accounts_beneficiaries400_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/accounts_beneficiaries403_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/accounts_beneficiaries500_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/accounts_beneficiaries503_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/accounts_direct_debits400_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/accounts_direct_debits403_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/accounts_direct_debits500_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/accounts_direct_debits503_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/accounts_offers400_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/accounts_offers403_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/accounts_offers500_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/accounts_offers503_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/accounts_party400_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/accounts_party403_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/accounts_party500_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/accounts_party503_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/accounts_scheduled_payments400_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/accounts_scheduled_payments403_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/accounts_scheduled_payments500_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/accounts_scheduled_payments503_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/accounts_standing_orders400_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/accounts_standing_orders403_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/accounts_standing_orders500_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/accounts_standing_orders503_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/accounts_statements400_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/accounts_statements403_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/accounts_statements500_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/accounts_statements503_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/accounts_statements_transactions400_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/accounts_statements_transactions403_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/accounts_statements_transactions500_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/accounts_statements_transactions503_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/accounts_transactions400_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/accounts_transactions403_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/accounts_transactions500_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/accounts_transactions503_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/api_exception.rb +21 -0
- data/lib/account_and_transaction_api_specification/exceptions/balances400_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/balances403_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/balances500_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/balances503_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/beneficiaries400_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/beneficiaries403_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/beneficiaries500_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/beneficiaries503_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/direct_debits400_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/direct_debits403_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/direct_debits500_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/direct_debits503_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/offers400_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/offers403_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/offers500_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/offers503_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/party400_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/party403_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/party500_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/party503_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/scheduled_payments400_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/scheduled_payments403_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/scheduled_payments500_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/scheduled_payments503_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/standing_orders400_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/standing_orders403_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/standing_orders500_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/standing_orders503_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/statements400_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/statements403_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/statements500_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/statements503_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/transactions400_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/transactions403_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/transactions500_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/exceptions/transactions503_error_exception.rb +72 -0
- data/lib/account_and_transaction_api_specification/http/auth/o_auth2.rb +43 -0
- data/lib/account_and_transaction_api_specification/http/http_call_back.rb +10 -0
- data/lib/account_and_transaction_api_specification/http/http_method_enum.rb +10 -0
- data/lib/account_and_transaction_api_specification/http/http_request.rb +10 -0
- data/lib/account_and_transaction_api_specification/http/http_response.rb +10 -0
- data/lib/account_and_transaction_api_specification/models/account.rb +100 -0
- data/lib/account_and_transaction_api_specification/models/account_access_consent.rb +69 -0
- data/lib/account_and_transaction_api_specification/models/account_access_consent_model.rb +60 -0
- data/lib/account_and_transaction_api_specification/models/account_access_consent_pos_tresponse.rb +86 -0
- data/lib/account_and_transaction_api_specification/models/account_access_consent_response.rb +86 -0
- data/lib/account_and_transaction_api_specification/models/account_access_consent_response_model.rb +120 -0
- data/lib/account_and_transaction_api_specification/models/account_access_status_enum.rb +29 -0
- data/lib/account_and_transaction_api_specification/models/account_model.rb +137 -0
- data/lib/account_and_transaction_api_specification/models/account_response.rb +76 -0
- data/lib/account_and_transaction_api_specification/models/account_response_data.rb +71 -0
- data/lib/account_and_transaction_api_specification/models/account_scheme_model_enum.rb +23 -0
- data/lib/account_and_transaction_api_specification/models/account_sub_type_enum.rb +41 -0
- data/lib/account_and_transaction_api_specification/models/account_type_enum.rb +23 -0
- data/lib/account_and_transaction_api_specification/models/address.rb +137 -0
- data/lib/account_and_transaction_api_specification/models/address_type_enum.rb +20 -0
- data/lib/account_and_transaction_api_specification/models/address_type_option_enum.rb +41 -0
- data/lib/account_and_transaction_api_specification/models/amount.rb +71 -0
- data/lib/account_and_transaction_api_specification/models/authorisation_type_enum.rb +26 -0
- data/lib/account_and_transaction_api_specification/models/balance.rb +82 -0
- data/lib/account_and_transaction_api_specification/models/balance_model.rb +136 -0
- data/lib/account_and_transaction_api_specification/models/balance_model_type_enum.rb +47 -0
- data/lib/account_and_transaction_api_specification/models/balances_response.rb +76 -0
- data/lib/account_and_transaction_api_specification/models/balances_response_data.rb +69 -0
- data/lib/account_and_transaction_api_specification/models/bank_transaction_code.rb +69 -0
- data/lib/account_and_transaction_api_specification/models/base_model.rb +110 -0
- data/lib/account_and_transaction_api_specification/models/becs_remittance.rb +109 -0
- data/lib/account_and_transaction_api_specification/models/beneficiaries_response.rb +76 -0
- data/lib/account_and_transaction_api_specification/models/beneficiaries_response_data.rb +71 -0
- data/lib/account_and_transaction_api_specification/models/beneficiary_model.rb +110 -0
- data/lib/account_and_transaction_api_specification/models/card_instrument.rb +97 -0
- data/lib/account_and_transaction_api_specification/models/card_scheme_name_enum.rb +32 -0
- data/lib/account_and_transaction_api_specification/models/consent.rb +145 -0
- data/lib/account_and_transaction_api_specification/models/credit_debit_indicator_enum.rb +24 -0
- data/lib/account_and_transaction_api_specification/models/credit_line.rb +82 -0
- data/lib/account_and_transaction_api_specification/models/credit_line_type_enum.rb +26 -0
- data/lib/account_and_transaction_api_specification/models/creditor_account.rb +102 -0
- data/lib/account_and_transaction_api_specification/models/creditor_agent.rb +100 -0
- data/lib/account_and_transaction_api_specification/models/creditor_reference.rb +81 -0
- data/lib/account_and_transaction_api_specification/models/currency_exchange.rb +147 -0
- data/lib/account_and_transaction_api_specification/models/data.rb +71 -0
- data/lib/account_and_transaction_api_specification/models/debtor_account.rb +102 -0
- data/lib/account_and_transaction_api_specification/models/debtor_agent.rb +70 -0
- data/lib/account_and_transaction_api_specification/models/debtor_reference.rb +81 -0
- data/lib/account_and_transaction_api_specification/models/delivery_address.rb +138 -0
- data/lib/account_and_transaction_api_specification/models/direct_debit_model.rb +146 -0
- data/lib/account_and_transaction_api_specification/models/direct_debit_response.rb +76 -0
- data/lib/account_and_transaction_api_specification/models/direct_debit_response_data.rb +71 -0
- data/lib/account_and_transaction_api_specification/models/direct_debit_status_code_enum.rb +23 -0
- data/lib/account_and_transaction_api_specification/models/error.rb +92 -0
- data/lib/account_and_transaction_api_specification/models/error_code_enum.rb +100 -0
- data/lib/account_and_transaction_api_specification/models/error_response.rb +100 -0
- data/lib/account_and_transaction_api_specification/models/fee.rb +71 -0
- data/lib/account_and_transaction_api_specification/models/final_payment_amount.rb +71 -0
- data/lib/account_and_transaction_api_specification/models/first_payment_amount.rb +71 -0
- data/lib/account_and_transaction_api_specification/models/geo_location.rb +72 -0
- data/lib/account_and_transaction_api_specification/models/get_account_offers_response.rb +76 -0
- data/lib/account_and_transaction_api_specification/models/get_account_party_response.rb +76 -0
- data/lib/account_and_transaction_api_specification/models/get_account_party_response_data.rb +62 -0
- data/lib/account_and_transaction_api_specification/models/get_account_scheduled_payments_response.rb +76 -0
- data/lib/account_and_transaction_api_specification/models/get_account_statement_response.rb +76 -0
- data/lib/account_and_transaction_api_specification/models/get_account_statement_response_data.rb +62 -0
- data/lib/account_and_transaction_api_specification/models/get_account_statement_transactions_response.rb +76 -0
- data/lib/account_and_transaction_api_specification/models/get_account_statement_transactions_response_data.rb +71 -0
- data/lib/account_and_transaction_api_specification/models/get_account_statements_response.rb +76 -0
- data/lib/account_and_transaction_api_specification/models/get_account_statements_response_data.rb +71 -0
- data/lib/account_and_transaction_api_specification/models/get_offers_response.rb +76 -0
- data/lib/account_and_transaction_api_specification/models/get_offers_response_data.rb +71 -0
- data/lib/account_and_transaction_api_specification/models/get_party_response.rb +76 -0
- data/lib/account_and_transaction_api_specification/models/get_scheduled_payments_response.rb +76 -0
- data/lib/account_and_transaction_api_specification/models/get_scheduled_payments_response_data.rb +71 -0
- data/lib/account_and_transaction_api_specification/models/get_statements_response.rb +76 -0
- data/lib/account_and_transaction_api_specification/models/get_statements_response_data.rb +71 -0
- data/lib/account_and_transaction_api_specification/models/instructed_amount.rb +73 -0
- data/lib/account_and_transaction_api_specification/models/links.rb +100 -0
- data/lib/account_and_transaction_api_specification/models/merchant_details.rb +75 -0
- data/lib/account_and_transaction_api_specification/models/meta.rb +112 -0
- data/lib/account_and_transaction_api_specification/models/meta_data.rb +112 -0
- data/lib/account_and_transaction_api_specification/models/next_payment_amount.rb +71 -0
- data/lib/account_and_transaction_api_specification/models/offer_model.rb +199 -0
- data/lib/account_and_transaction_api_specification/models/offer_type_enum.rb +32 -0
- data/lib/account_and_transaction_api_specification/models/party_model.rb +144 -0
- data/lib/account_and_transaction_api_specification/models/party_type_enum.rb +26 -0
- data/lib/account_and_transaction_api_specification/models/payment_context_code_enum.rb +32 -0
- data/lib/account_and_transaction_api_specification/models/permission_enum.rb +76 -0
- data/lib/account_and_transaction_api_specification/models/postal_address.rb +138 -0
- data/lib/account_and_transaction_api_specification/models/previous_payment_amount.rb +71 -0
- data/lib/account_and_transaction_api_specification/models/proprietary_bank_transaction_code.rb +70 -0
- data/lib/account_and_transaction_api_specification/models/reference.rb +95 -0
- data/lib/account_and_transaction_api_specification/models/risk.rb +164 -0
- data/lib/account_and_transaction_api_specification/models/scheduled_payment_model.rb +155 -0
- data/lib/account_and_transaction_api_specification/models/scheduled_type_enum.rb +23 -0
- data/lib/account_and_transaction_api_specification/models/scheme_name_enum.rb +21 -0
- data/lib/account_and_transaction_api_specification/models/servicer.rb +71 -0
- data/lib/account_and_transaction_api_specification/models/standing_order_model.rb +289 -0
- data/lib/account_and_transaction_api_specification/models/standing_order_status_code_enum.rb +23 -0
- data/lib/account_and_transaction_api_specification/models/standing_orders_response.rb +76 -0
- data/lib/account_and_transaction_api_specification/models/standing_orders_response_data.rb +71 -0
- data/lib/account_and_transaction_api_specification/models/statement.rb +313 -0
- data/lib/account_and_transaction_api_specification/models/statement_amount.rb +81 -0
- data/lib/account_and_transaction_api_specification/models/statement_amount_type_enum.rb +83 -0
- data/lib/account_and_transaction_api_specification/models/statement_benefit.rb +69 -0
- data/lib/account_and_transaction_api_specification/models/statement_benefit_type_enum.rb +29 -0
- data/lib/account_and_transaction_api_specification/models/statement_date_time.rb +81 -0
- data/lib/account_and_transaction_api_specification/models/statement_date_time_type_enum.rb +41 -0
- data/lib/account_and_transaction_api_specification/models/statement_fee.rb +80 -0
- data/lib/account_and_transaction_api_specification/models/statement_fee_type_enum.rb +59 -0
- data/lib/account_and_transaction_api_specification/models/statement_interest.rb +81 -0
- data/lib/account_and_transaction_api_specification/models/statement_interest_type_enum.rb +32 -0
- data/lib/account_and_transaction_api_specification/models/statement_model.rb +313 -0
- data/lib/account_and_transaction_api_specification/models/statement_rate.rb +69 -0
- data/lib/account_and_transaction_api_specification/models/statement_rate_type_enum.rb +47 -0
- data/lib/account_and_transaction_api_specification/models/statement_type_enum.rb +32 -0
- data/lib/account_and_transaction_api_specification/models/statement_value.rb +69 -0
- data/lib/account_and_transaction_api_specification/models/statement_value_type_enum.rb +41 -0
- data/lib/account_and_transaction_api_specification/models/transaction_model.rb +333 -0
- data/lib/account_and_transaction_api_specification/models/transaction_reference.rb +95 -0
- data/lib/account_and_transaction_api_specification/models/transaction_status_enum.rb +23 -0
- data/lib/account_and_transaction_api_specification/models/transactions_response.rb +76 -0
- data/lib/account_and_transaction_api_specification/models/transactions_response_data.rb +71 -0
- data/lib/account_and_transaction_api_specification/utilities/date_time_helper.rb +11 -0
- data/lib/account_and_transaction_api_specification/utilities/file_wrapper.rb +28 -0
- data/lib/account_and_transaction_api_specification.rb +439 -0
- data/test/controllers/controller_test_base.rb +29 -0
- data/test/controllers/test_accounts_controller.rb +45 -0
- data/test/controllers/test_balances_controller.rb +45 -0
- data/test/controllers/test_beneficiaries_controller.rb +45 -0
- data/test/controllers/test_direct_debits_controller.rb +45 -0
- data/test/controllers/test_offers_controller.rb +45 -0
- data/test/controllers/test_party_controller.rb +45 -0
- data/test/controllers/test_scheduled_payments_controller.rb +45 -0
- data/test/controllers/test_standing_orders_controller.rb +45 -0
- data/test/controllers/test_statements_controller.rb +49 -0
- data/test/controllers/test_transactions_controller.rb +49 -0
- data/test/http_response_catcher.rb +19 -0
- metadata +349 -0
@@ -0,0 +1,100 @@
|
|
1
|
+
# account_and_transaction_api_specification
|
2
|
+
#
|
3
|
+
# This file was automatically generated by APIMATIC v2.0
|
4
|
+
# ( https://apimatic.io ).
|
5
|
+
|
6
|
+
module AccountAndTransactionApiSpecification
|
7
|
+
# Party that manages the account on behalf of the account owner, that is
|
8
|
+
# manages the registration and booking of entries on the account, calculates
|
9
|
+
# balances on the account and provides information about the account. This is
|
10
|
+
# the servicer of the beneficiary account.
|
11
|
+
class CreditorAgent < BaseModel
|
12
|
+
SKIP = Object.new
|
13
|
+
private_constant :SKIP
|
14
|
+
|
15
|
+
# Name of the identification scheme, in a coded form as published in an
|
16
|
+
# external list.
|
17
|
+
# @return [SchemeNameEnum]
|
18
|
+
attr_accessor :scheme_name
|
19
|
+
|
20
|
+
# Unique and unambiguous identification of the servicing institution.
|
21
|
+
# @return [String]
|
22
|
+
attr_accessor :identification
|
23
|
+
|
24
|
+
# Name by which an agent is known and which is usually used to identify that
|
25
|
+
# agent.
|
26
|
+
# @return [String]
|
27
|
+
attr_accessor :name
|
28
|
+
|
29
|
+
# Information that locates and identifies a specific address, as defined by
|
30
|
+
# postal services.
|
31
|
+
# @return [PostalAddress]
|
32
|
+
attr_accessor :postal_address
|
33
|
+
|
34
|
+
# A mapping from model property names to API property names.
|
35
|
+
def self.names
|
36
|
+
@_hash = {} if @_hash.nil?
|
37
|
+
@_hash['scheme_name'] = 'SchemeName'
|
38
|
+
@_hash['identification'] = 'Identification'
|
39
|
+
@_hash['name'] = 'Name'
|
40
|
+
@_hash['postal_address'] = 'PostalAddress'
|
41
|
+
@_hash
|
42
|
+
end
|
43
|
+
|
44
|
+
# An array for optional fields
|
45
|
+
def self.optionals
|
46
|
+
%w[
|
47
|
+
scheme_name
|
48
|
+
identification
|
49
|
+
name
|
50
|
+
postal_address
|
51
|
+
]
|
52
|
+
end
|
53
|
+
|
54
|
+
# An array for nullable fields
|
55
|
+
def self.nullables
|
56
|
+
[]
|
57
|
+
end
|
58
|
+
|
59
|
+
def initialize(scheme_name = SKIP, identification = SKIP, name = SKIP,
|
60
|
+
postal_address = SKIP)
|
61
|
+
@scheme_name = scheme_name unless scheme_name == SKIP
|
62
|
+
@identification = identification unless identification == SKIP
|
63
|
+
@name = name unless name == SKIP
|
64
|
+
@postal_address = postal_address unless postal_address == SKIP
|
65
|
+
end
|
66
|
+
|
67
|
+
# Creates an instance of the object from a hash.
|
68
|
+
def self.from_hash(hash)
|
69
|
+
return nil unless hash
|
70
|
+
|
71
|
+
# Extract variables from the hash.
|
72
|
+
scheme_name = hash.key?('SchemeName') ? hash['SchemeName'] : SKIP
|
73
|
+
identification =
|
74
|
+
hash.key?('Identification') ? hash['Identification'] : SKIP
|
75
|
+
name = hash.key?('Name') ? hash['Name'] : SKIP
|
76
|
+
postal_address = PostalAddress.from_hash(hash['PostalAddress']) if hash['PostalAddress']
|
77
|
+
|
78
|
+
# Create object from extracted values.
|
79
|
+
CreditorAgent.new(scheme_name,
|
80
|
+
identification,
|
81
|
+
name,
|
82
|
+
postal_address)
|
83
|
+
end
|
84
|
+
|
85
|
+
# Provides a human-readable string representation of the object.
|
86
|
+
def to_s
|
87
|
+
class_name = self.class.name.split('::').last
|
88
|
+
"<#{class_name} scheme_name: #{@scheme_name}, identification: #{@identification}, name:"\
|
89
|
+
" #{@name}, postal_address: #{@postal_address}>"
|
90
|
+
end
|
91
|
+
|
92
|
+
# Provides a debugging-friendly string with detailed object information.
|
93
|
+
def inspect
|
94
|
+
class_name = self.class.name.split('::').last
|
95
|
+
"<#{class_name} scheme_name: #{@scheme_name.inspect}, identification:"\
|
96
|
+
" #{@identification.inspect}, name: #{@name.inspect}, postal_address:"\
|
97
|
+
" #{@postal_address.inspect}>"
|
98
|
+
end
|
99
|
+
end
|
100
|
+
end
|
@@ -0,0 +1,81 @@
|
|
1
|
+
# account_and_transaction_api_specification
|
2
|
+
#
|
3
|
+
# This file was automatically generated by APIMATIC v2.0
|
4
|
+
# ( https://apimatic.io ).
|
5
|
+
|
6
|
+
module AccountAndTransactionApiSpecification
|
7
|
+
# CreditorReference Model.
|
8
|
+
class CreditorReference < BaseModel
|
9
|
+
SKIP = Object.new
|
10
|
+
private_constant :SKIP
|
11
|
+
|
12
|
+
# TODO: Write general description for this method
|
13
|
+
# @return [String]
|
14
|
+
attr_accessor :particulars
|
15
|
+
|
16
|
+
# TODO: Write general description for this method
|
17
|
+
# @return [String]
|
18
|
+
attr_accessor :code
|
19
|
+
|
20
|
+
# TODO: Write general description for this method
|
21
|
+
# @return [String]
|
22
|
+
attr_accessor :reference
|
23
|
+
|
24
|
+
# A mapping from model property names to API property names.
|
25
|
+
def self.names
|
26
|
+
@_hash = {} if @_hash.nil?
|
27
|
+
@_hash['particulars'] = 'Particulars'
|
28
|
+
@_hash['code'] = 'Code'
|
29
|
+
@_hash['reference'] = 'Reference'
|
30
|
+
@_hash
|
31
|
+
end
|
32
|
+
|
33
|
+
# An array for optional fields
|
34
|
+
def self.optionals
|
35
|
+
%w[
|
36
|
+
particulars
|
37
|
+
code
|
38
|
+
reference
|
39
|
+
]
|
40
|
+
end
|
41
|
+
|
42
|
+
# An array for nullable fields
|
43
|
+
def self.nullables
|
44
|
+
[]
|
45
|
+
end
|
46
|
+
|
47
|
+
def initialize(particulars = SKIP, code = SKIP, reference = SKIP)
|
48
|
+
@particulars = particulars unless particulars == SKIP
|
49
|
+
@code = code unless code == SKIP
|
50
|
+
@reference = reference unless reference == SKIP
|
51
|
+
end
|
52
|
+
|
53
|
+
# Creates an instance of the object from a hash.
|
54
|
+
def self.from_hash(hash)
|
55
|
+
return nil unless hash
|
56
|
+
|
57
|
+
# Extract variables from the hash.
|
58
|
+
particulars = hash.key?('Particulars') ? hash['Particulars'] : SKIP
|
59
|
+
code = hash.key?('Code') ? hash['Code'] : SKIP
|
60
|
+
reference = hash.key?('Reference') ? hash['Reference'] : SKIP
|
61
|
+
|
62
|
+
# Create object from extracted values.
|
63
|
+
CreditorReference.new(particulars,
|
64
|
+
code,
|
65
|
+
reference)
|
66
|
+
end
|
67
|
+
|
68
|
+
# Provides a human-readable string representation of the object.
|
69
|
+
def to_s
|
70
|
+
class_name = self.class.name.split('::').last
|
71
|
+
"<#{class_name} particulars: #{@particulars}, code: #{@code}, reference: #{@reference}>"
|
72
|
+
end
|
73
|
+
|
74
|
+
# Provides a debugging-friendly string with detailed object information.
|
75
|
+
def inspect
|
76
|
+
class_name = self.class.name.split('::').last
|
77
|
+
"<#{class_name} particulars: #{@particulars.inspect}, code: #{@code.inspect}, reference:"\
|
78
|
+
" #{@reference.inspect}>"
|
79
|
+
end
|
80
|
+
end
|
81
|
+
end
|
@@ -0,0 +1,147 @@
|
|
1
|
+
# account_and_transaction_api_specification
|
2
|
+
#
|
3
|
+
# This file was automatically generated by APIMATIC v2.0
|
4
|
+
# ( https://apimatic.io ).
|
5
|
+
|
6
|
+
require 'date'
|
7
|
+
module AccountAndTransactionApiSpecification
|
8
|
+
# Set of elements used to provide details on the currency exchange.
|
9
|
+
class CurrencyExchange < BaseModel
|
10
|
+
SKIP = Object.new
|
11
|
+
private_constant :SKIP
|
12
|
+
|
13
|
+
# Currency from which an amount is to be converted in a currency conversion.
|
14
|
+
# @return [String]
|
15
|
+
attr_accessor :source_currency
|
16
|
+
|
17
|
+
# Currency from which an amount is to be converted in a currency conversion.
|
18
|
+
# @return [String]
|
19
|
+
attr_accessor :target_currency
|
20
|
+
|
21
|
+
# Currency from which an amount is to be converted in a currency conversion.
|
22
|
+
# @return [String]
|
23
|
+
attr_accessor :unit_currency
|
24
|
+
|
25
|
+
# Factor used to convert an amount from one currency into another. This
|
26
|
+
# reflects the price at which one currency was bought with another currency.
|
27
|
+
# Usage: ExchangeRate expresses the ratio between UnitCurrency and
|
28
|
+
# QuotedCurrency (ExchangeRate = UnitCurrency/QuotedCurrency).
|
29
|
+
# @return [Float]
|
30
|
+
attr_accessor :exchange_rate
|
31
|
+
|
32
|
+
# Unique identification to unambiguously identify the foreign exchange
|
33
|
+
# contract.
|
34
|
+
# @return [String]
|
35
|
+
attr_accessor :contract_identification
|
36
|
+
|
37
|
+
# Date and time at which an exchange rate is quoted.
|
38
|
+
# All dates in the JSON payloads are represented in ISO 8601 date-time
|
39
|
+
# format.
|
40
|
+
# All date-time fields in responses must include the timezone. An example is
|
41
|
+
# below:
|
42
|
+
# 2017-04-05T10:43:07+00:00
|
43
|
+
# @return [DateTime]
|
44
|
+
attr_accessor :quotation_date
|
45
|
+
|
46
|
+
# Amount of money of the cash balance after a transaction entry is applied
|
47
|
+
# to the account..
|
48
|
+
# @return [InstructedAmount]
|
49
|
+
attr_accessor :instructed_amount
|
50
|
+
|
51
|
+
# A mapping from model property names to API property names.
|
52
|
+
def self.names
|
53
|
+
@_hash = {} if @_hash.nil?
|
54
|
+
@_hash['source_currency'] = 'SourceCurrency'
|
55
|
+
@_hash['target_currency'] = 'TargetCurrency'
|
56
|
+
@_hash['unit_currency'] = 'UnitCurrency'
|
57
|
+
@_hash['exchange_rate'] = 'ExchangeRate'
|
58
|
+
@_hash['contract_identification'] = 'ContractIdentification'
|
59
|
+
@_hash['quotation_date'] = 'QuotationDate'
|
60
|
+
@_hash['instructed_amount'] = 'InstructedAmount'
|
61
|
+
@_hash
|
62
|
+
end
|
63
|
+
|
64
|
+
# An array for optional fields
|
65
|
+
def self.optionals
|
66
|
+
%w[
|
67
|
+
target_currency
|
68
|
+
unit_currency
|
69
|
+
contract_identification
|
70
|
+
quotation_date
|
71
|
+
instructed_amount
|
72
|
+
]
|
73
|
+
end
|
74
|
+
|
75
|
+
# An array for nullable fields
|
76
|
+
def self.nullables
|
77
|
+
[]
|
78
|
+
end
|
79
|
+
|
80
|
+
def initialize(source_currency = nil, exchange_rate = nil,
|
81
|
+
target_currency = SKIP, unit_currency = SKIP,
|
82
|
+
contract_identification = SKIP, quotation_date = SKIP,
|
83
|
+
instructed_amount = SKIP)
|
84
|
+
@source_currency = source_currency
|
85
|
+
@target_currency = target_currency unless target_currency == SKIP
|
86
|
+
@unit_currency = unit_currency unless unit_currency == SKIP
|
87
|
+
@exchange_rate = exchange_rate
|
88
|
+
@contract_identification = contract_identification unless contract_identification == SKIP
|
89
|
+
@quotation_date = quotation_date unless quotation_date == SKIP
|
90
|
+
@instructed_amount = instructed_amount unless instructed_amount == SKIP
|
91
|
+
end
|
92
|
+
|
93
|
+
# Creates an instance of the object from a hash.
|
94
|
+
def self.from_hash(hash)
|
95
|
+
return nil unless hash
|
96
|
+
|
97
|
+
# Extract variables from the hash.
|
98
|
+
source_currency =
|
99
|
+
hash.key?('SourceCurrency') ? hash['SourceCurrency'] : nil
|
100
|
+
exchange_rate = hash.key?('ExchangeRate') ? hash['ExchangeRate'] : nil
|
101
|
+
target_currency =
|
102
|
+
hash.key?('TargetCurrency') ? hash['TargetCurrency'] : SKIP
|
103
|
+
unit_currency = hash.key?('UnitCurrency') ? hash['UnitCurrency'] : SKIP
|
104
|
+
contract_identification =
|
105
|
+
hash.key?('ContractIdentification') ? hash['ContractIdentification'] : SKIP
|
106
|
+
quotation_date = if hash.key?('QuotationDate')
|
107
|
+
(DateTimeHelper.from_rfc3339(hash['QuotationDate']) if hash['QuotationDate'])
|
108
|
+
else
|
109
|
+
SKIP
|
110
|
+
end
|
111
|
+
instructed_amount = InstructedAmount.from_hash(hash['InstructedAmount']) if
|
112
|
+
hash['InstructedAmount']
|
113
|
+
|
114
|
+
# Create object from extracted values.
|
115
|
+
CurrencyExchange.new(source_currency,
|
116
|
+
exchange_rate,
|
117
|
+
target_currency,
|
118
|
+
unit_currency,
|
119
|
+
contract_identification,
|
120
|
+
quotation_date,
|
121
|
+
instructed_amount)
|
122
|
+
end
|
123
|
+
|
124
|
+
def to_custom_quotation_date
|
125
|
+
DateTimeHelper.to_rfc3339(quotation_date)
|
126
|
+
end
|
127
|
+
|
128
|
+
# Provides a human-readable string representation of the object.
|
129
|
+
def to_s
|
130
|
+
class_name = self.class.name.split('::').last
|
131
|
+
"<#{class_name} source_currency: #{@source_currency}, target_currency: #{@target_currency},"\
|
132
|
+
" unit_currency: #{@unit_currency}, exchange_rate: #{@exchange_rate},"\
|
133
|
+
" contract_identification: #{@contract_identification}, quotation_date: #{@quotation_date},"\
|
134
|
+
" instructed_amount: #{@instructed_amount}>"
|
135
|
+
end
|
136
|
+
|
137
|
+
# Provides a debugging-friendly string with detailed object information.
|
138
|
+
def inspect
|
139
|
+
class_name = self.class.name.split('::').last
|
140
|
+
"<#{class_name} source_currency: #{@source_currency.inspect}, target_currency:"\
|
141
|
+
" #{@target_currency.inspect}, unit_currency: #{@unit_currency.inspect}, exchange_rate:"\
|
142
|
+
" #{@exchange_rate.inspect}, contract_identification: #{@contract_identification.inspect},"\
|
143
|
+
" quotation_date: #{@quotation_date.inspect}, instructed_amount:"\
|
144
|
+
" #{@instructed_amount.inspect}>"
|
145
|
+
end
|
146
|
+
end
|
147
|
+
end
|
@@ -0,0 +1,71 @@
|
|
1
|
+
# account_and_transaction_api_specification
|
2
|
+
#
|
3
|
+
# This file was automatically generated by APIMATIC v2.0
|
4
|
+
# ( https://apimatic.io ).
|
5
|
+
|
6
|
+
module AccountAndTransactionApiSpecification
|
7
|
+
# Data
|
8
|
+
class Data < BaseModel
|
9
|
+
SKIP = Object.new
|
10
|
+
private_constant :SKIP
|
11
|
+
|
12
|
+
# Account
|
13
|
+
# @return [Array[AccountModel]]
|
14
|
+
attr_accessor :account
|
15
|
+
|
16
|
+
# A mapping from model property names to API property names.
|
17
|
+
def self.names
|
18
|
+
@_hash = {} if @_hash.nil?
|
19
|
+
@_hash['account'] = 'Account'
|
20
|
+
@_hash
|
21
|
+
end
|
22
|
+
|
23
|
+
# An array for optional fields
|
24
|
+
def self.optionals
|
25
|
+
%w[
|
26
|
+
account
|
27
|
+
]
|
28
|
+
end
|
29
|
+
|
30
|
+
# An array for nullable fields
|
31
|
+
def self.nullables
|
32
|
+
[]
|
33
|
+
end
|
34
|
+
|
35
|
+
def initialize(account = SKIP)
|
36
|
+
@account = account unless account == SKIP
|
37
|
+
end
|
38
|
+
|
39
|
+
# Creates an instance of the object from a hash.
|
40
|
+
def self.from_hash(hash)
|
41
|
+
return nil unless hash
|
42
|
+
|
43
|
+
# Extract variables from the hash.
|
44
|
+
# Parameter is an array, so we need to iterate through it
|
45
|
+
account = nil
|
46
|
+
unless hash['Account'].nil?
|
47
|
+
account = []
|
48
|
+
hash['Account'].each do |structure|
|
49
|
+
account << (AccountModel.from_hash(structure) if structure)
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
account = SKIP unless hash.key?('Account')
|
54
|
+
|
55
|
+
# Create object from extracted values.
|
56
|
+
Data.new(account)
|
57
|
+
end
|
58
|
+
|
59
|
+
# Provides a human-readable string representation of the object.
|
60
|
+
def to_s
|
61
|
+
class_name = self.class.name.split('::').last
|
62
|
+
"<#{class_name} account: #{@account}>"
|
63
|
+
end
|
64
|
+
|
65
|
+
# Provides a debugging-friendly string with detailed object information.
|
66
|
+
def inspect
|
67
|
+
class_name = self.class.name.split('::').last
|
68
|
+
"<#{class_name} account: #{@account.inspect}>"
|
69
|
+
end
|
70
|
+
end
|
71
|
+
end
|
@@ -0,0 +1,102 @@
|
|
1
|
+
# account_and_transaction_api_specification
|
2
|
+
#
|
3
|
+
# This file was automatically generated by APIMATIC v2.0
|
4
|
+
# ( https://apimatic.io ).
|
5
|
+
|
6
|
+
module AccountAndTransactionApiSpecification
|
7
|
+
# Unambiguous identification of the account of the debtor, in the case of a
|
8
|
+
# crebit transaction.
|
9
|
+
class DebtorAccount < BaseModel
|
10
|
+
SKIP = Object.new
|
11
|
+
private_constant :SKIP
|
12
|
+
|
13
|
+
# TODO: Write general description for this method
|
14
|
+
# @return [AccountSchemeModelEnum]
|
15
|
+
attr_accessor :scheme_name
|
16
|
+
|
17
|
+
# Identification assigned by an institution to identify an account. This
|
18
|
+
# identification is known by the account owner.
|
19
|
+
# @return [String]
|
20
|
+
attr_accessor :identification
|
21
|
+
|
22
|
+
# Name of the account, as assigned by the account servicing institution, in
|
23
|
+
# agreement with the account owner in order to provide an additional means
|
24
|
+
# of identification of the account.
|
25
|
+
# Usage: The account name is different from the account owner name. The
|
26
|
+
# account name is used in certain user communities to provide a means of
|
27
|
+
# identifying the account, in addition to the account owner's identity and
|
28
|
+
# the account number.
|
29
|
+
# @return [String]
|
30
|
+
attr_accessor :name
|
31
|
+
|
32
|
+
# This is secondary identification of the account, as assigned by the
|
33
|
+
# account servicing institution.
|
34
|
+
# @return [String]
|
35
|
+
attr_accessor :secondary_identification
|
36
|
+
|
37
|
+
# A mapping from model property names to API property names.
|
38
|
+
def self.names
|
39
|
+
@_hash = {} if @_hash.nil?
|
40
|
+
@_hash['scheme_name'] = 'SchemeName'
|
41
|
+
@_hash['identification'] = 'Identification'
|
42
|
+
@_hash['name'] = 'Name'
|
43
|
+
@_hash['secondary_identification'] = 'SecondaryIdentification'
|
44
|
+
@_hash
|
45
|
+
end
|
46
|
+
|
47
|
+
# An array for optional fields
|
48
|
+
def self.optionals
|
49
|
+
%w[
|
50
|
+
name
|
51
|
+
secondary_identification
|
52
|
+
]
|
53
|
+
end
|
54
|
+
|
55
|
+
# An array for nullable fields
|
56
|
+
def self.nullables
|
57
|
+
[]
|
58
|
+
end
|
59
|
+
|
60
|
+
def initialize(scheme_name = nil, identification = nil, name = SKIP,
|
61
|
+
secondary_identification = SKIP)
|
62
|
+
@scheme_name = scheme_name
|
63
|
+
@identification = identification
|
64
|
+
@name = name unless name == SKIP
|
65
|
+
@secondary_identification = secondary_identification unless secondary_identification == SKIP
|
66
|
+
end
|
67
|
+
|
68
|
+
# Creates an instance of the object from a hash.
|
69
|
+
def self.from_hash(hash)
|
70
|
+
return nil unless hash
|
71
|
+
|
72
|
+
# Extract variables from the hash.
|
73
|
+
scheme_name = hash.key?('SchemeName') ? hash['SchemeName'] : nil
|
74
|
+
identification =
|
75
|
+
hash.key?('Identification') ? hash['Identification'] : nil
|
76
|
+
name = hash.key?('Name') ? hash['Name'] : SKIP
|
77
|
+
secondary_identification =
|
78
|
+
hash.key?('SecondaryIdentification') ? hash['SecondaryIdentification'] : SKIP
|
79
|
+
|
80
|
+
# Create object from extracted values.
|
81
|
+
DebtorAccount.new(scheme_name,
|
82
|
+
identification,
|
83
|
+
name,
|
84
|
+
secondary_identification)
|
85
|
+
end
|
86
|
+
|
87
|
+
# Provides a human-readable string representation of the object.
|
88
|
+
def to_s
|
89
|
+
class_name = self.class.name.split('::').last
|
90
|
+
"<#{class_name} scheme_name: #{@scheme_name}, identification: #{@identification}, name:"\
|
91
|
+
" #{@name}, secondary_identification: #{@secondary_identification}>"
|
92
|
+
end
|
93
|
+
|
94
|
+
# Provides a debugging-friendly string with detailed object information.
|
95
|
+
def inspect
|
96
|
+
class_name = self.class.name.split('::').last
|
97
|
+
"<#{class_name} scheme_name: #{@scheme_name.inspect}, identification:"\
|
98
|
+
" #{@identification.inspect}, name: #{@name.inspect}, secondary_identification:"\
|
99
|
+
" #{@secondary_identification.inspect}>"
|
100
|
+
end
|
101
|
+
end
|
102
|
+
end
|
@@ -0,0 +1,70 @@
|
|
1
|
+
# account_and_transaction_api_specification
|
2
|
+
#
|
3
|
+
# This file was automatically generated by APIMATIC v2.0
|
4
|
+
# ( https://apimatic.io ).
|
5
|
+
|
6
|
+
module AccountAndTransactionApiSpecification
|
7
|
+
# Financial institution servicing an account for the debtor.
|
8
|
+
class DebtorAgent < BaseModel
|
9
|
+
SKIP = Object.new
|
10
|
+
private_constant :SKIP
|
11
|
+
|
12
|
+
# Name of the identification scheme, in a coded form as published in an
|
13
|
+
# external list.
|
14
|
+
# @return [String]
|
15
|
+
attr_reader :scheme_name
|
16
|
+
|
17
|
+
# Unique and unambiguous identification of a financial institution or a
|
18
|
+
# branch of a financial institution.
|
19
|
+
# @return [String]
|
20
|
+
attr_accessor :identification
|
21
|
+
|
22
|
+
# A mapping from model property names to API property names.
|
23
|
+
def self.names
|
24
|
+
@_hash = {} if @_hash.nil?
|
25
|
+
@_hash['scheme_name'] = 'SchemeName'
|
26
|
+
@_hash['identification'] = 'Identification'
|
27
|
+
@_hash
|
28
|
+
end
|
29
|
+
|
30
|
+
# An array for optional fields
|
31
|
+
def self.optionals
|
32
|
+
[]
|
33
|
+
end
|
34
|
+
|
35
|
+
# An array for nullable fields
|
36
|
+
def self.nullables
|
37
|
+
[]
|
38
|
+
end
|
39
|
+
|
40
|
+
def initialize(identification = nil)
|
41
|
+
@scheme_name = 'BICFI'
|
42
|
+
@identification = identification
|
43
|
+
end
|
44
|
+
|
45
|
+
# Creates an instance of the object from a hash.
|
46
|
+
def self.from_hash(hash)
|
47
|
+
return nil unless hash
|
48
|
+
|
49
|
+
# Extract variables from the hash.
|
50
|
+
identification =
|
51
|
+
hash.key?('Identification') ? hash['Identification'] : nil
|
52
|
+
|
53
|
+
# Create object from extracted values.
|
54
|
+
DebtorAgent.new(identification)
|
55
|
+
end
|
56
|
+
|
57
|
+
# Provides a human-readable string representation of the object.
|
58
|
+
def to_s
|
59
|
+
class_name = self.class.name.split('::').last
|
60
|
+
"<#{class_name} scheme_name: #{@scheme_name}, identification: #{@identification}>"
|
61
|
+
end
|
62
|
+
|
63
|
+
# Provides a debugging-friendly string with detailed object information.
|
64
|
+
def inspect
|
65
|
+
class_name = self.class.name.split('::').last
|
66
|
+
"<#{class_name} scheme_name: #{@scheme_name.inspect}, identification:"\
|
67
|
+
" #{@identification.inspect}>"
|
68
|
+
end
|
69
|
+
end
|
70
|
+
end
|
@@ -0,0 +1,81 @@
|
|
1
|
+
# account_and_transaction_api_specification
|
2
|
+
#
|
3
|
+
# This file was automatically generated by APIMATIC v2.0
|
4
|
+
# ( https://apimatic.io ).
|
5
|
+
|
6
|
+
module AccountAndTransactionApiSpecification
|
7
|
+
# DebtorReference Model.
|
8
|
+
class DebtorReference < BaseModel
|
9
|
+
SKIP = Object.new
|
10
|
+
private_constant :SKIP
|
11
|
+
|
12
|
+
# TODO: Write general description for this method
|
13
|
+
# @return [String]
|
14
|
+
attr_accessor :particulars
|
15
|
+
|
16
|
+
# TODO: Write general description for this method
|
17
|
+
# @return [String]
|
18
|
+
attr_accessor :code
|
19
|
+
|
20
|
+
# TODO: Write general description for this method
|
21
|
+
# @return [String]
|
22
|
+
attr_accessor :reference
|
23
|
+
|
24
|
+
# A mapping from model property names to API property names.
|
25
|
+
def self.names
|
26
|
+
@_hash = {} if @_hash.nil?
|
27
|
+
@_hash['particulars'] = 'Particulars'
|
28
|
+
@_hash['code'] = 'Code'
|
29
|
+
@_hash['reference'] = 'Reference'
|
30
|
+
@_hash
|
31
|
+
end
|
32
|
+
|
33
|
+
# An array for optional fields
|
34
|
+
def self.optionals
|
35
|
+
%w[
|
36
|
+
particulars
|
37
|
+
code
|
38
|
+
reference
|
39
|
+
]
|
40
|
+
end
|
41
|
+
|
42
|
+
# An array for nullable fields
|
43
|
+
def self.nullables
|
44
|
+
[]
|
45
|
+
end
|
46
|
+
|
47
|
+
def initialize(particulars = SKIP, code = SKIP, reference = SKIP)
|
48
|
+
@particulars = particulars unless particulars == SKIP
|
49
|
+
@code = code unless code == SKIP
|
50
|
+
@reference = reference unless reference == SKIP
|
51
|
+
end
|
52
|
+
|
53
|
+
# Creates an instance of the object from a hash.
|
54
|
+
def self.from_hash(hash)
|
55
|
+
return nil unless hash
|
56
|
+
|
57
|
+
# Extract variables from the hash.
|
58
|
+
particulars = hash.key?('Particulars') ? hash['Particulars'] : SKIP
|
59
|
+
code = hash.key?('Code') ? hash['Code'] : SKIP
|
60
|
+
reference = hash.key?('Reference') ? hash['Reference'] : SKIP
|
61
|
+
|
62
|
+
# Create object from extracted values.
|
63
|
+
DebtorReference.new(particulars,
|
64
|
+
code,
|
65
|
+
reference)
|
66
|
+
end
|
67
|
+
|
68
|
+
# Provides a human-readable string representation of the object.
|
69
|
+
def to_s
|
70
|
+
class_name = self.class.name.split('::').last
|
71
|
+
"<#{class_name} particulars: #{@particulars}, code: #{@code}, reference: #{@reference}>"
|
72
|
+
end
|
73
|
+
|
74
|
+
# Provides a debugging-friendly string with detailed object information.
|
75
|
+
def inspect
|
76
|
+
class_name = self.class.name.split('::').last
|
77
|
+
"<#{class_name} particulars: #{@particulars.inspect}, code: #{@code.inspect}, reference:"\
|
78
|
+
" #{@reference.inspect}>"
|
79
|
+
end
|
80
|
+
end
|
81
|
+
end
|