lithic 0.1.0.pre.alpha.56 → 0.1.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 +4 -4
- data/CHANGELOG.md +33 -0
- data/README.md +1 -1
- data/lib/lithic/client.rb +8 -0
- data/lib/lithic/models/account_activity_list_params.rb +2 -0
- data/lib/lithic/models/account_activity_list_response.rb +2 -0
- data/lib/lithic/models/account_activity_retrieve_transaction_response.rb +2 -0
- data/lib/lithic/models/auth_rules/auth_rule.rb +208 -49
- data/lib/lithic/models/auth_rules/auth_rule_condition.rb +2 -2
- data/lib/lithic/models/auth_rules/conditional_3ds_action_parameters.rb +2 -2
- data/lib/lithic/models/auth_rules/conditional_ach_action_parameters.rb +2 -2
- data/lib/lithic/models/auth_rules/conditional_authorization_action_parameters.rb +2 -2
- data/lib/lithic/models/auth_rules/conditional_operation.rb +5 -0
- data/lib/lithic/models/auth_rules/conditional_tokenization_action_parameters.rb +19 -2
- data/lib/lithic/models/auth_rules/conditional_value.rb +4 -1
- data/lib/lithic/models/auth_rules/event_stream.rb +21 -0
- data/lib/lithic/models/auth_rules/v2_create_params.rb +3 -17
- data/lib/lithic/models/auth_rules/v2_list_params.rb +16 -19
- data/lib/lithic/models/card_bulk_order.rb +106 -0
- data/lib/lithic/models/card_bulk_order_create_params.rb +52 -0
- data/lib/lithic/models/card_bulk_order_list_params.rb +61 -0
- data/lib/lithic/models/card_bulk_order_retrieve_params.rb +14 -0
- data/lib/lithic/models/card_bulk_order_update_params.rb +32 -0
- data/lib/lithic/models/card_convert_physical_params.rb +3 -0
- data/lib/lithic/models/card_create_params.rb +14 -1
- data/lib/lithic/models/card_program.rb +10 -10
- data/lib/lithic/models/card_reissue_params.rb +3 -0
- data/lib/lithic/models/card_renew_params.rb +3 -0
- data/lib/lithic/models/card_web_provision_params.rb +32 -1
- data/lib/lithic/models/card_web_provision_response.rb +98 -60
- data/lib/lithic/models/cardholder_authentication.rb +132 -0
- data/lib/lithic/models/device.rb +37 -0
- data/lib/lithic/models/digital_wallet_token_metadata.rb +141 -0
- data/lib/lithic/models/{external_bank_account_unpause_response.rb → external_bank_account.rb} +15 -16
- data/lib/lithic/models/external_payment.rb +12 -0
- data/lib/lithic/models/external_payment_create_params.rb +2 -0
- data/lib/lithic/models/external_payment_list_params.rb +2 -0
- data/lib/lithic/models/financial_account_balance.rb +112 -0
- data/lib/lithic/models/financial_accounts/statement.rb +9 -9
- data/lib/lithic/models/financial_accounts/statements/statement_line_items.rb +18 -0
- data/lib/lithic/models/financial_event.rb +16 -0
- data/lib/lithic/models/{funding_event_retrieve_response.rb → funding_event.rb} +9 -10
- data/lib/lithic/models/internal_transaction.rb +166 -0
- data/lib/lithic/models/management_operation_create_params.rb +6 -0
- data/lib/lithic/models/management_operation_transaction.rb +6 -0
- data/lib/lithic/models/network_total.rb +169 -0
- data/lib/lithic/models/non_pci_card.rb +10 -1
- data/lib/lithic/models/payment.rb +11 -1
- data/lib/lithic/models/payment_create_params.rb +10 -1
- data/lib/lithic/models/three_ds_authentication.rb +1259 -0
- data/lib/lithic/models/token_info.rb +42 -0
- data/lib/lithic/models/tokenization.rb +9 -111
- data/lib/lithic/models/tokenization_decline_reason.rb +27 -0
- data/lib/lithic/models/tokenization_rule_result.rb +61 -0
- data/lib/lithic/models/tokenization_tfa_reason.rb +29 -0
- data/lib/lithic/models/transaction.rb +6 -174
- data/lib/lithic/models/wallet_decisioning_info.rb +44 -0
- data/lib/lithic/models.rb +38 -0
- data/lib/lithic/resources/auth_rules/v2.rb +17 -15
- data/lib/lithic/resources/card_bulk_orders.rb +127 -0
- data/lib/lithic/resources/cards/balances.rb +2 -2
- data/lib/lithic/resources/cards.rb +14 -3
- data/lib/lithic/resources/external_bank_accounts.rb +4 -4
- data/lib/lithic/resources/financial_accounts/balances.rb +2 -2
- data/lib/lithic/resources/funding_events.rb +4 -4
- data/lib/lithic/resources/internal_transaction.rb +14 -0
- data/lib/lithic/resources/reports/settlement/network_totals.rb +4 -4
- data/lib/lithic/resources/three_ds/authentication.rb +2 -2
- data/lib/lithic/resources/tokenizations.rb +4 -4
- data/lib/lithic/version.rb +1 -1
- data/lib/lithic.rb +23 -17
- data/manifest.yaml +1 -0
- data/rbi/lithic/client.rbi +6 -0
- data/rbi/lithic/models/account_activity_list_params.rbi +10 -0
- data/rbi/lithic/models/account_activity_list_response.rbi +10 -0
- data/rbi/lithic/models/account_activity_retrieve_transaction_response.rbi +10 -0
- data/rbi/lithic/models/auth_rules/auth_rule.rbi +339 -80
- data/rbi/lithic/models/auth_rules/conditional_operation.rbi +25 -0
- data/rbi/lithic/models/auth_rules/conditional_tokenization_action_parameters.rbi +29 -0
- data/rbi/lithic/models/auth_rules/conditional_value.rbi +2 -1
- data/rbi/lithic/models/auth_rules/event_stream.rbi +44 -0
- data/rbi/lithic/models/auth_rules/v2_create_params.rbi +4 -60
- data/rbi/lithic/models/auth_rules/v2_list_params.rbi +27 -59
- data/rbi/lithic/models/card_bulk_order.rbi +141 -0
- data/rbi/lithic/models/card_bulk_order_create_params.rbi +92 -0
- data/rbi/lithic/models/card_bulk_order_list_params.rbi +98 -0
- data/rbi/lithic/models/card_bulk_order_retrieve_params.rbi +27 -0
- data/rbi/lithic/models/card_bulk_order_update_params.rbi +68 -0
- data/rbi/lithic/models/card_convert_physical_params.rbi +8 -0
- data/rbi/lithic/models/card_create_params.rbi +23 -0
- data/rbi/lithic/models/card_program.rbi +10 -13
- data/rbi/lithic/models/card_reissue_params.rbi +8 -0
- data/rbi/lithic/models/card_renew_params.rbi +8 -0
- data/rbi/lithic/models/card_web_provision_params.rbi +44 -0
- data/rbi/lithic/models/card_web_provision_response.rbi +182 -102
- data/rbi/lithic/models/cardholder_authentication.rbi +296 -0
- data/rbi/lithic/models/device.rbi +54 -0
- data/rbi/lithic/models/digital_wallet_token_metadata.rbi +290 -0
- data/rbi/lithic/models/{external_bank_account_unpause_response.rbi → external_bank_account.rbi} +26 -75
- data/rbi/lithic/models/external_payment.rbi +57 -0
- data/rbi/lithic/models/external_payment_create_params.rbi +10 -0
- data/rbi/lithic/models/external_payment_list_params.rbi +10 -0
- data/rbi/lithic/models/financial_account_balance.rbi +144 -0
- data/rbi/lithic/models/financial_accounts/statement.rbi +9 -9
- data/rbi/lithic/models/financial_accounts/statements/statement_line_items.rbi +90 -0
- data/rbi/lithic/models/financial_event.rbi +60 -0
- data/rbi/lithic/models/{funding_event_list_response.rbi → funding_event.rbi} +13 -35
- data/rbi/lithic/models/internal_transaction.rbi +277 -0
- data/rbi/lithic/models/management_operation_create_params.rbi +30 -0
- data/rbi/lithic/models/management_operation_transaction.rbi +30 -0
- data/rbi/lithic/models/network_total.rbi +226 -0
- data/rbi/lithic/models/non_pci_card.rbi +10 -0
- data/rbi/lithic/models/payment.rbi +12 -0
- data/rbi/lithic/models/payment_create_params.rbi +15 -1
- data/rbi/lithic/models/three_ds_authentication.rbi +2432 -0
- data/rbi/lithic/models/token_info.rbi +70 -0
- data/rbi/lithic/models/tokenization.rbi +12 -335
- data/rbi/lithic/models/tokenization_decline_reason.rbi +73 -0
- data/rbi/lithic/models/tokenization_rule_result.rbi +96 -0
- data/rbi/lithic/models/tokenization_tfa_reason.rbi +74 -0
- data/rbi/lithic/models/transaction.rbi +8 -410
- data/rbi/lithic/models/wallet_decisioning_info.rbi +63 -0
- data/rbi/lithic/models.rbi +38 -0
- data/rbi/lithic/resources/auth_rules/v2.rbi +15 -15
- data/rbi/lithic/resources/card_bulk_orders.rbi +101 -0
- data/rbi/lithic/resources/cards/balances.rbi +1 -3
- data/rbi/lithic/resources/cards.rbi +22 -1
- data/rbi/lithic/resources/external_bank_accounts.rbi +2 -2
- data/rbi/lithic/resources/financial_accounts/balances.rbi +1 -3
- data/rbi/lithic/resources/funding_events.rbi +2 -4
- data/rbi/lithic/resources/internal_transaction.rbi +12 -0
- data/rbi/lithic/resources/reports/settlement/network_totals.rbi +2 -8
- data/rbi/lithic/resources/three_ds/authentication.rbi +1 -1
- data/rbi/lithic/resources/tokenizations.rbi +2 -2
- data/sig/lithic/client.rbs +4 -0
- data/sig/lithic/models/account_activity_list_params.rbs +4 -0
- data/sig/lithic/models/account_activity_list_response.rbs +4 -0
- data/sig/lithic/models/account_activity_retrieve_transaction_response.rbs +4 -0
- data/sig/lithic/models/auth_rules/auth_rule.rbs +135 -36
- data/sig/lithic/models/auth_rules/conditional_operation.rbs +10 -0
- data/sig/lithic/models/auth_rules/conditional_tokenization_action_parameters.rbs +2 -0
- data/sig/lithic/models/auth_rules/conditional_value.rbs +1 -1
- data/sig/lithic/models/auth_rules/event_stream.rbs +24 -0
- data/sig/lithic/models/auth_rules/v2_create_params.rbs +6 -25
- data/sig/lithic/models/auth_rules/v2_list_params.rbs +15 -25
- data/sig/lithic/models/card_bulk_order.rbs +76 -0
- data/sig/lithic/models/card_bulk_order_create_params.rbs +46 -0
- data/sig/lithic/models/card_bulk_order_list_params.rbs +56 -0
- data/sig/lithic/models/card_bulk_order_retrieve_params.rbs +15 -0
- data/sig/lithic/models/card_bulk_order_update_params.rbs +34 -0
- data/sig/lithic/models/card_convert_physical_params.rbs +2 -0
- data/sig/lithic/models/card_create_params.rbs +9 -0
- data/sig/lithic/models/card_program.rbs +5 -7
- data/sig/lithic/models/card_reissue_params.rbs +2 -0
- data/sig/lithic/models/card_renew_params.rbs +2 -0
- data/sig/lithic/models/card_web_provision_params.rbs +26 -2
- data/sig/lithic/models/card_web_provision_response.rbs +81 -51
- data/sig/lithic/models/cardholder_authentication.rbs +98 -0
- data/sig/lithic/models/device.rbs +21 -0
- data/sig/lithic/models/digital_wallet_token_metadata.rbs +119 -0
- data/sig/lithic/models/{external_bank_account_unpause_response.rbs → external_bank_account.rbs} +17 -17
- data/sig/lithic/models/external_payment.rbs +28 -1
- data/sig/lithic/models/external_payment_create_params.rbs +8 -1
- data/sig/lithic/models/external_payment_list_params.rbs +8 -1
- data/sig/lithic/models/financial_account_balance.rbs +78 -0
- data/sig/lithic/models/financial_accounts/statement.rbs +12 -12
- data/sig/lithic/models/financial_accounts/statements/statement_line_items.rbs +36 -0
- data/sig/lithic/models/financial_event.rbs +32 -0
- data/sig/lithic/models/{funding_event_list_response.rbs → funding_event.rbs} +11 -11
- data/sig/lithic/models/internal_transaction.rbs +165 -0
- data/sig/lithic/models/management_operation_create_params.rbs +12 -0
- data/sig/lithic/models/management_operation_transaction.rbs +12 -0
- data/sig/lithic/models/network_total.rbs +125 -0
- data/sig/lithic/models/non_pci_card.rbs +5 -0
- data/sig/lithic/models/payment.rbs +9 -0
- data/sig/lithic/models/payment_create_params.rbs +7 -0
- data/sig/lithic/models/three_ds_authentication.rbs +911 -0
- data/sig/lithic/models/token_info.rbs +36 -0
- data/sig/lithic/models/tokenization.rbs +18 -137
- data/sig/lithic/models/tokenization_decline_reason.rbs +38 -0
- data/sig/lithic/models/tokenization_rule_result.rbs +48 -0
- data/sig/lithic/models/tokenization_tfa_reason.rbs +42 -0
- data/sig/lithic/models/transaction.rbs +8 -140
- data/sig/lithic/models/wallet_decisioning_info.rbs +35 -0
- data/sig/lithic/models.rbs +38 -0
- data/sig/lithic/resources/auth_rules/v2.rbs +9 -8
- data/sig/lithic/resources/card_bulk_orders.rbs +34 -0
- data/sig/lithic/resources/cards/balances.rbs +1 -1
- data/sig/lithic/resources/cards.rbs +5 -1
- data/sig/lithic/resources/external_bank_accounts.rbs +2 -2
- data/sig/lithic/resources/financial_accounts/balances.rbs +1 -1
- data/sig/lithic/resources/funding_events.rbs +2 -2
- data/sig/lithic/resources/internal_transaction.rbs +7 -0
- data/sig/lithic/resources/reports/settlement/network_totals.rbs +2 -2
- data/sig/lithic/resources/three_ds/authentication.rbs +1 -1
- data/sig/lithic/resources/tokenizations.rbs +2 -2
- metadata +70 -55
- data/lib/lithic/models/auth_rules/v2_create_response.rb +0 -280
- data/lib/lithic/models/auth_rules/v2_draft_response.rb +0 -279
- data/lib/lithic/models/auth_rules/v2_list_response.rb +0 -279
- data/lib/lithic/models/auth_rules/v2_promote_response.rb +0 -280
- data/lib/lithic/models/auth_rules/v2_retrieve_response.rb +0 -284
- data/lib/lithic/models/auth_rules/v2_update_response.rb +0 -280
- data/lib/lithic/models/cards/balance_list_response.rb +0 -115
- data/lib/lithic/models/external_bank_account_retry_prenote_response.rb +0 -242
- data/lib/lithic/models/financial_accounts/balance_list_response.rb +0 -115
- data/lib/lithic/models/funding_event_list_response.rb +0 -108
- data/lib/lithic/models/reports/settlement/network_total_list_response.rb +0 -176
- data/lib/lithic/models/reports/settlement/network_total_retrieve_response.rb +0 -176
- data/lib/lithic/models/three_ds/authentication_retrieve_response.rb +0 -1288
- data/lib/lithic/models/tokenization_simulate_response.rb +0 -16
- data/lib/lithic/models/tokenization_update_digital_card_art_response.rb +0 -16
- data/rbi/lithic/models/auth_rules/v2_create_response.rbi +0 -522
- data/rbi/lithic/models/auth_rules/v2_draft_response.rbi +0 -522
- data/rbi/lithic/models/auth_rules/v2_list_response.rbi +0 -518
- data/rbi/lithic/models/auth_rules/v2_promote_response.rbi +0 -525
- data/rbi/lithic/models/auth_rules/v2_retrieve_response.rbi +0 -528
- data/rbi/lithic/models/auth_rules/v2_update_response.rbi +0 -522
- data/rbi/lithic/models/cards/balance_list_response.rbi +0 -170
- data/rbi/lithic/models/external_bank_account_retry_prenote_response.rbi +0 -375
- data/rbi/lithic/models/financial_accounts/balance_list_response.rbi +0 -174
- data/rbi/lithic/models/funding_event_retrieve_response.rbi +0 -184
- data/rbi/lithic/models/reports/settlement/network_total_list_response.rbi +0 -280
- data/rbi/lithic/models/reports/settlement/network_total_retrieve_response.rbi +0 -280
- data/rbi/lithic/models/three_ds/authentication_retrieve_response.rbi +0 -2580
- data/rbi/lithic/models/tokenization_simulate_response.rbi +0 -33
- data/rbi/lithic/models/tokenization_update_digital_card_art_response.rbi +0 -31
- data/sig/lithic/models/auth_rules/v2_create_response.rbs +0 -205
- data/sig/lithic/models/auth_rules/v2_draft_response.rbs +0 -205
- data/sig/lithic/models/auth_rules/v2_list_response.rbs +0 -205
- data/sig/lithic/models/auth_rules/v2_promote_response.rbs +0 -205
- data/sig/lithic/models/auth_rules/v2_retrieve_response.rbs +0 -205
- data/sig/lithic/models/auth_rules/v2_update_response.rbs +0 -205
- data/sig/lithic/models/cards/balance_list_response.rbs +0 -80
- data/sig/lithic/models/external_bank_account_retry_prenote_response.rbs +0 -162
- data/sig/lithic/models/financial_accounts/balance_list_response.rbs +0 -80
- data/sig/lithic/models/funding_event_retrieve_response.rbs +0 -85
- data/sig/lithic/models/reports/settlement/network_total_list_response.rbs +0 -129
- data/sig/lithic/models/reports/settlement/network_total_retrieve_response.rbs +0 -129
- data/sig/lithic/models/three_ds/authentication_retrieve_response.rbs +0 -913
- data/sig/lithic/models/tokenization_simulate_response.rbs +0 -18
- data/sig/lithic/models/tokenization_update_digital_card_art_response.rbs +0 -16
|
@@ -0,0 +1,911 @@
|
|
|
1
|
+
module Lithic
|
|
2
|
+
module Models
|
|
3
|
+
type three_ds_authentication =
|
|
4
|
+
{
|
|
5
|
+
token: String,
|
|
6
|
+
account_type: Lithic::Models::ThreeDSAuthentication::account_type?,
|
|
7
|
+
authentication_result: Lithic::Models::ThreeDSAuthentication::authentication_result,
|
|
8
|
+
card_expiry_check: Lithic::Models::ThreeDSAuthentication::card_expiry_check,
|
|
9
|
+
card_token: String,
|
|
10
|
+
cardholder: Lithic::ThreeDSAuthentication::Cardholder,
|
|
11
|
+
channel: Lithic::Models::ThreeDSAuthentication::channel,
|
|
12
|
+
created: Time,
|
|
13
|
+
merchant: Lithic::ThreeDSAuthentication::Merchant,
|
|
14
|
+
message_category: Lithic::Models::ThreeDSAuthentication::message_category,
|
|
15
|
+
three_ds_requestor_challenge_indicator: Lithic::Models::ThreeDSAuthentication::three_ds_requestor_challenge_indicator,
|
|
16
|
+
additional_data: Lithic::ThreeDSAuthentication::AdditionalData?,
|
|
17
|
+
app: Lithic::ThreeDSAuthentication::App?,
|
|
18
|
+
authentication_request_type: Lithic::Models::ThreeDSAuthentication::authentication_request_type?,
|
|
19
|
+
browser: Lithic::ThreeDSAuthentication::Browser?,
|
|
20
|
+
challenge_metadata: Lithic::ThreeDSAuthentication::ChallengeMetadata?,
|
|
21
|
+
challenge_orchestrated_by: Lithic::Models::ThreeDSAuthentication::challenge_orchestrated_by?,
|
|
22
|
+
decision_made_by: Lithic::Models::ThreeDSAuthentication::decision_made_by?,
|
|
23
|
+
three_ri_request_type: Lithic::Models::ThreeDSAuthentication::three_ri_request_type?,
|
|
24
|
+
transaction: Lithic::ThreeDSAuthentication::Transaction?
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
class ThreeDSAuthentication < Lithic::Internal::Type::BaseModel
|
|
28
|
+
attr_accessor token: String
|
|
29
|
+
|
|
30
|
+
attr_accessor account_type: Lithic::Models::ThreeDSAuthentication::account_type?
|
|
31
|
+
|
|
32
|
+
attr_accessor authentication_result: Lithic::Models::ThreeDSAuthentication::authentication_result
|
|
33
|
+
|
|
34
|
+
attr_accessor card_expiry_check: Lithic::Models::ThreeDSAuthentication::card_expiry_check
|
|
35
|
+
|
|
36
|
+
attr_accessor card_token: String
|
|
37
|
+
|
|
38
|
+
attr_accessor cardholder: Lithic::ThreeDSAuthentication::Cardholder
|
|
39
|
+
|
|
40
|
+
attr_accessor channel: Lithic::Models::ThreeDSAuthentication::channel
|
|
41
|
+
|
|
42
|
+
attr_accessor created: Time
|
|
43
|
+
|
|
44
|
+
attr_accessor merchant: Lithic::ThreeDSAuthentication::Merchant
|
|
45
|
+
|
|
46
|
+
attr_accessor message_category: Lithic::Models::ThreeDSAuthentication::message_category
|
|
47
|
+
|
|
48
|
+
attr_accessor three_ds_requestor_challenge_indicator: Lithic::Models::ThreeDSAuthentication::three_ds_requestor_challenge_indicator
|
|
49
|
+
|
|
50
|
+
attr_accessor additional_data: Lithic::ThreeDSAuthentication::AdditionalData?
|
|
51
|
+
|
|
52
|
+
attr_accessor app: Lithic::ThreeDSAuthentication::App?
|
|
53
|
+
|
|
54
|
+
attr_accessor authentication_request_type: Lithic::Models::ThreeDSAuthentication::authentication_request_type?
|
|
55
|
+
|
|
56
|
+
attr_accessor browser: Lithic::ThreeDSAuthentication::Browser?
|
|
57
|
+
|
|
58
|
+
attr_accessor challenge_metadata: Lithic::ThreeDSAuthentication::ChallengeMetadata?
|
|
59
|
+
|
|
60
|
+
attr_accessor challenge_orchestrated_by: Lithic::Models::ThreeDSAuthentication::challenge_orchestrated_by?
|
|
61
|
+
|
|
62
|
+
attr_accessor decision_made_by: Lithic::Models::ThreeDSAuthentication::decision_made_by?
|
|
63
|
+
|
|
64
|
+
attr_accessor three_ri_request_type: Lithic::Models::ThreeDSAuthentication::three_ri_request_type?
|
|
65
|
+
|
|
66
|
+
attr_accessor transaction: Lithic::ThreeDSAuthentication::Transaction?
|
|
67
|
+
|
|
68
|
+
def initialize: (
|
|
69
|
+
token: String,
|
|
70
|
+
account_type: Lithic::Models::ThreeDSAuthentication::account_type?,
|
|
71
|
+
authentication_result: Lithic::Models::ThreeDSAuthentication::authentication_result,
|
|
72
|
+
card_expiry_check: Lithic::Models::ThreeDSAuthentication::card_expiry_check,
|
|
73
|
+
card_token: String,
|
|
74
|
+
cardholder: Lithic::ThreeDSAuthentication::Cardholder,
|
|
75
|
+
channel: Lithic::Models::ThreeDSAuthentication::channel,
|
|
76
|
+
created: Time,
|
|
77
|
+
merchant: Lithic::ThreeDSAuthentication::Merchant,
|
|
78
|
+
message_category: Lithic::Models::ThreeDSAuthentication::message_category,
|
|
79
|
+
three_ds_requestor_challenge_indicator: Lithic::Models::ThreeDSAuthentication::three_ds_requestor_challenge_indicator,
|
|
80
|
+
?additional_data: Lithic::ThreeDSAuthentication::AdditionalData?,
|
|
81
|
+
?app: Lithic::ThreeDSAuthentication::App?,
|
|
82
|
+
?authentication_request_type: Lithic::Models::ThreeDSAuthentication::authentication_request_type?,
|
|
83
|
+
?browser: Lithic::ThreeDSAuthentication::Browser?,
|
|
84
|
+
?challenge_metadata: Lithic::ThreeDSAuthentication::ChallengeMetadata?,
|
|
85
|
+
?challenge_orchestrated_by: Lithic::Models::ThreeDSAuthentication::challenge_orchestrated_by?,
|
|
86
|
+
?decision_made_by: Lithic::Models::ThreeDSAuthentication::decision_made_by?,
|
|
87
|
+
?three_ri_request_type: Lithic::Models::ThreeDSAuthentication::three_ri_request_type?,
|
|
88
|
+
?transaction: Lithic::ThreeDSAuthentication::Transaction?
|
|
89
|
+
) -> void
|
|
90
|
+
|
|
91
|
+
def to_hash: -> {
|
|
92
|
+
token: String,
|
|
93
|
+
account_type: Lithic::Models::ThreeDSAuthentication::account_type?,
|
|
94
|
+
authentication_result: Lithic::Models::ThreeDSAuthentication::authentication_result,
|
|
95
|
+
card_expiry_check: Lithic::Models::ThreeDSAuthentication::card_expiry_check,
|
|
96
|
+
card_token: String,
|
|
97
|
+
cardholder: Lithic::ThreeDSAuthentication::Cardholder,
|
|
98
|
+
channel: Lithic::Models::ThreeDSAuthentication::channel,
|
|
99
|
+
created: Time,
|
|
100
|
+
merchant: Lithic::ThreeDSAuthentication::Merchant,
|
|
101
|
+
message_category: Lithic::Models::ThreeDSAuthentication::message_category,
|
|
102
|
+
three_ds_requestor_challenge_indicator: Lithic::Models::ThreeDSAuthentication::three_ds_requestor_challenge_indicator,
|
|
103
|
+
additional_data: Lithic::ThreeDSAuthentication::AdditionalData?,
|
|
104
|
+
app: Lithic::ThreeDSAuthentication::App?,
|
|
105
|
+
authentication_request_type: Lithic::Models::ThreeDSAuthentication::authentication_request_type?,
|
|
106
|
+
browser: Lithic::ThreeDSAuthentication::Browser?,
|
|
107
|
+
challenge_metadata: Lithic::ThreeDSAuthentication::ChallengeMetadata?,
|
|
108
|
+
challenge_orchestrated_by: Lithic::Models::ThreeDSAuthentication::challenge_orchestrated_by?,
|
|
109
|
+
decision_made_by: Lithic::Models::ThreeDSAuthentication::decision_made_by?,
|
|
110
|
+
three_ri_request_type: Lithic::Models::ThreeDSAuthentication::three_ri_request_type?,
|
|
111
|
+
transaction: Lithic::ThreeDSAuthentication::Transaction?
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
type account_type = :CREDIT | :DEBIT | :NOT_APPLICABLE
|
|
115
|
+
|
|
116
|
+
module AccountType
|
|
117
|
+
extend Lithic::Internal::Type::Enum
|
|
118
|
+
|
|
119
|
+
CREDIT: :CREDIT
|
|
120
|
+
DEBIT: :DEBIT
|
|
121
|
+
NOT_APPLICABLE: :NOT_APPLICABLE
|
|
122
|
+
|
|
123
|
+
def self?.values: -> ::Array[Lithic::Models::ThreeDSAuthentication::account_type]
|
|
124
|
+
end
|
|
125
|
+
|
|
126
|
+
type authentication_result =
|
|
127
|
+
:DECLINE | :SUCCESS | :PENDING_CHALLENGE | :PENDING_DECISION
|
|
128
|
+
|
|
129
|
+
module AuthenticationResult
|
|
130
|
+
extend Lithic::Internal::Type::Enum
|
|
131
|
+
|
|
132
|
+
DECLINE: :DECLINE
|
|
133
|
+
SUCCESS: :SUCCESS
|
|
134
|
+
PENDING_CHALLENGE: :PENDING_CHALLENGE
|
|
135
|
+
PENDING_DECISION: :PENDING_DECISION
|
|
136
|
+
|
|
137
|
+
def self?.values: -> ::Array[Lithic::Models::ThreeDSAuthentication::authentication_result]
|
|
138
|
+
end
|
|
139
|
+
|
|
140
|
+
type card_expiry_check = :MATCH | :MISMATCH | :NOT_PRESENT
|
|
141
|
+
|
|
142
|
+
module CardExpiryCheck
|
|
143
|
+
extend Lithic::Internal::Type::Enum
|
|
144
|
+
|
|
145
|
+
MATCH: :MATCH
|
|
146
|
+
MISMATCH: :MISMATCH
|
|
147
|
+
NOT_PRESENT: :NOT_PRESENT
|
|
148
|
+
|
|
149
|
+
def self?.values: -> ::Array[Lithic::Models::ThreeDSAuthentication::card_expiry_check]
|
|
150
|
+
end
|
|
151
|
+
|
|
152
|
+
type cardholder =
|
|
153
|
+
{
|
|
154
|
+
address_match: bool?,
|
|
155
|
+
address_on_file_match: Lithic::Models::ThreeDSAuthentication::Cardholder::address_on_file_match,
|
|
156
|
+
billing_address: Lithic::ThreeDSAuthentication::Cardholder::BillingAddress,
|
|
157
|
+
email: String?,
|
|
158
|
+
name: String?,
|
|
159
|
+
phone_number_home: String?,
|
|
160
|
+
phone_number_mobile: String?,
|
|
161
|
+
phone_number_work: String?,
|
|
162
|
+
shipping_address: Lithic::ThreeDSAuthentication::Cardholder::ShippingAddress
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
class Cardholder < Lithic::Internal::Type::BaseModel
|
|
166
|
+
attr_accessor address_match: bool?
|
|
167
|
+
|
|
168
|
+
attr_reader address_on_file_match: Lithic::Models::ThreeDSAuthentication::Cardholder::address_on_file_match?
|
|
169
|
+
|
|
170
|
+
def address_on_file_match=: (
|
|
171
|
+
Lithic::Models::ThreeDSAuthentication::Cardholder::address_on_file_match
|
|
172
|
+
) -> Lithic::Models::ThreeDSAuthentication::Cardholder::address_on_file_match
|
|
173
|
+
|
|
174
|
+
attr_reader billing_address: Lithic::ThreeDSAuthentication::Cardholder::BillingAddress?
|
|
175
|
+
|
|
176
|
+
def billing_address=: (
|
|
177
|
+
Lithic::ThreeDSAuthentication::Cardholder::BillingAddress
|
|
178
|
+
) -> Lithic::ThreeDSAuthentication::Cardholder::BillingAddress
|
|
179
|
+
|
|
180
|
+
attr_accessor email: String?
|
|
181
|
+
|
|
182
|
+
attr_accessor name: String?
|
|
183
|
+
|
|
184
|
+
attr_accessor phone_number_home: String?
|
|
185
|
+
|
|
186
|
+
attr_accessor phone_number_mobile: String?
|
|
187
|
+
|
|
188
|
+
attr_accessor phone_number_work: String?
|
|
189
|
+
|
|
190
|
+
attr_reader shipping_address: Lithic::ThreeDSAuthentication::Cardholder::ShippingAddress?
|
|
191
|
+
|
|
192
|
+
def shipping_address=: (
|
|
193
|
+
Lithic::ThreeDSAuthentication::Cardholder::ShippingAddress
|
|
194
|
+
) -> Lithic::ThreeDSAuthentication::Cardholder::ShippingAddress
|
|
195
|
+
|
|
196
|
+
def initialize: (
|
|
197
|
+
?address_match: bool?,
|
|
198
|
+
?address_on_file_match: Lithic::Models::ThreeDSAuthentication::Cardholder::address_on_file_match,
|
|
199
|
+
?billing_address: Lithic::ThreeDSAuthentication::Cardholder::BillingAddress,
|
|
200
|
+
?email: String?,
|
|
201
|
+
?name: String?,
|
|
202
|
+
?phone_number_home: String?,
|
|
203
|
+
?phone_number_mobile: String?,
|
|
204
|
+
?phone_number_work: String?,
|
|
205
|
+
?shipping_address: Lithic::ThreeDSAuthentication::Cardholder::ShippingAddress
|
|
206
|
+
) -> void
|
|
207
|
+
|
|
208
|
+
def to_hash: -> {
|
|
209
|
+
address_match: bool?,
|
|
210
|
+
address_on_file_match: Lithic::Models::ThreeDSAuthentication::Cardholder::address_on_file_match,
|
|
211
|
+
billing_address: Lithic::ThreeDSAuthentication::Cardholder::BillingAddress,
|
|
212
|
+
email: String?,
|
|
213
|
+
name: String?,
|
|
214
|
+
phone_number_home: String?,
|
|
215
|
+
phone_number_mobile: String?,
|
|
216
|
+
phone_number_work: String?,
|
|
217
|
+
shipping_address: Lithic::ThreeDSAuthentication::Cardholder::ShippingAddress
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
type address_on_file_match =
|
|
221
|
+
:MATCH
|
|
222
|
+
| :MATCH_ADDRESS_ONLY
|
|
223
|
+
| :MATCH_ZIP_ONLY
|
|
224
|
+
| :MISMATCH
|
|
225
|
+
| :NOT_PRESENT
|
|
226
|
+
|
|
227
|
+
module AddressOnFileMatch
|
|
228
|
+
extend Lithic::Internal::Type::Enum
|
|
229
|
+
|
|
230
|
+
MATCH: :MATCH
|
|
231
|
+
MATCH_ADDRESS_ONLY: :MATCH_ADDRESS_ONLY
|
|
232
|
+
MATCH_ZIP_ONLY: :MATCH_ZIP_ONLY
|
|
233
|
+
MISMATCH: :MISMATCH
|
|
234
|
+
NOT_PRESENT: :NOT_PRESENT
|
|
235
|
+
|
|
236
|
+
def self?.values: -> ::Array[Lithic::Models::ThreeDSAuthentication::Cardholder::address_on_file_match]
|
|
237
|
+
end
|
|
238
|
+
|
|
239
|
+
type billing_address =
|
|
240
|
+
{
|
|
241
|
+
:address1 => String?,
|
|
242
|
+
:address2 => String?,
|
|
243
|
+
:address3 => String?,
|
|
244
|
+
city: String?,
|
|
245
|
+
country: String?,
|
|
246
|
+
postal_code: String?
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
class BillingAddress < Lithic::Internal::Type::BaseModel
|
|
250
|
+
attr_accessor address1: String?
|
|
251
|
+
|
|
252
|
+
attr_accessor address2: String?
|
|
253
|
+
|
|
254
|
+
attr_accessor address3: String?
|
|
255
|
+
|
|
256
|
+
attr_accessor city: String?
|
|
257
|
+
|
|
258
|
+
attr_accessor country: String?
|
|
259
|
+
|
|
260
|
+
attr_accessor postal_code: String?
|
|
261
|
+
|
|
262
|
+
def initialize: (
|
|
263
|
+
?address1: String?,
|
|
264
|
+
?address2: String?,
|
|
265
|
+
?address3: String?,
|
|
266
|
+
?city: String?,
|
|
267
|
+
?country: String?,
|
|
268
|
+
?postal_code: String?
|
|
269
|
+
) -> void
|
|
270
|
+
|
|
271
|
+
def to_hash: -> {
|
|
272
|
+
:address1 => String?,
|
|
273
|
+
:address2 => String?,
|
|
274
|
+
:address3 => String?,
|
|
275
|
+
city: String?,
|
|
276
|
+
country: String?,
|
|
277
|
+
postal_code: String?
|
|
278
|
+
}
|
|
279
|
+
end
|
|
280
|
+
|
|
281
|
+
type shipping_address =
|
|
282
|
+
{
|
|
283
|
+
:address1 => String?,
|
|
284
|
+
:address2 => String?,
|
|
285
|
+
:address3 => String?,
|
|
286
|
+
city: String?,
|
|
287
|
+
country: String?,
|
|
288
|
+
postal_code: String?
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
class ShippingAddress < Lithic::Internal::Type::BaseModel
|
|
292
|
+
attr_accessor address1: String?
|
|
293
|
+
|
|
294
|
+
attr_accessor address2: String?
|
|
295
|
+
|
|
296
|
+
attr_accessor address3: String?
|
|
297
|
+
|
|
298
|
+
attr_accessor city: String?
|
|
299
|
+
|
|
300
|
+
attr_accessor country: String?
|
|
301
|
+
|
|
302
|
+
attr_accessor postal_code: String?
|
|
303
|
+
|
|
304
|
+
def initialize: (
|
|
305
|
+
?address1: String?,
|
|
306
|
+
?address2: String?,
|
|
307
|
+
?address3: String?,
|
|
308
|
+
?city: String?,
|
|
309
|
+
?country: String?,
|
|
310
|
+
?postal_code: String?
|
|
311
|
+
) -> void
|
|
312
|
+
|
|
313
|
+
def to_hash: -> {
|
|
314
|
+
:address1 => String?,
|
|
315
|
+
:address2 => String?,
|
|
316
|
+
:address3 => String?,
|
|
317
|
+
city: String?,
|
|
318
|
+
country: String?,
|
|
319
|
+
postal_code: String?
|
|
320
|
+
}
|
|
321
|
+
end
|
|
322
|
+
end
|
|
323
|
+
|
|
324
|
+
type channel = :APP_BASED | :BROWSER | :THREE_DS_REQUESTOR_INITIATED
|
|
325
|
+
|
|
326
|
+
module Channel
|
|
327
|
+
extend Lithic::Internal::Type::Enum
|
|
328
|
+
|
|
329
|
+
APP_BASED: :APP_BASED
|
|
330
|
+
BROWSER: :BROWSER
|
|
331
|
+
THREE_DS_REQUESTOR_INITIATED: :THREE_DS_REQUESTOR_INITIATED
|
|
332
|
+
|
|
333
|
+
def self?.values: -> ::Array[Lithic::Models::ThreeDSAuthentication::channel]
|
|
334
|
+
end
|
|
335
|
+
|
|
336
|
+
type merchant =
|
|
337
|
+
{
|
|
338
|
+
risk_indicator: Lithic::ThreeDSAuthentication::Merchant::RiskIndicator,
|
|
339
|
+
id: String?,
|
|
340
|
+
country: String?,
|
|
341
|
+
mcc: String?,
|
|
342
|
+
name: String?
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
class Merchant < Lithic::Internal::Type::BaseModel
|
|
346
|
+
attr_accessor risk_indicator: Lithic::ThreeDSAuthentication::Merchant::RiskIndicator
|
|
347
|
+
|
|
348
|
+
attr_accessor id: String?
|
|
349
|
+
|
|
350
|
+
attr_accessor country: String?
|
|
351
|
+
|
|
352
|
+
attr_accessor mcc: String?
|
|
353
|
+
|
|
354
|
+
attr_accessor name: String?
|
|
355
|
+
|
|
356
|
+
def initialize: (
|
|
357
|
+
risk_indicator: Lithic::ThreeDSAuthentication::Merchant::RiskIndicator,
|
|
358
|
+
?id: String?,
|
|
359
|
+
?country: String?,
|
|
360
|
+
?mcc: String?,
|
|
361
|
+
?name: String?
|
|
362
|
+
) -> void
|
|
363
|
+
|
|
364
|
+
def to_hash: -> {
|
|
365
|
+
risk_indicator: Lithic::ThreeDSAuthentication::Merchant::RiskIndicator,
|
|
366
|
+
id: String?,
|
|
367
|
+
country: String?,
|
|
368
|
+
mcc: String?,
|
|
369
|
+
name: String?
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
type risk_indicator =
|
|
373
|
+
{
|
|
374
|
+
delivery_email_address: String?,
|
|
375
|
+
delivery_time_frame: Lithic::Models::ThreeDSAuthentication::Merchant::RiskIndicator::delivery_time_frame?,
|
|
376
|
+
gift_card_amount: Integer?,
|
|
377
|
+
gift_card_count: Integer?,
|
|
378
|
+
gift_card_currency: String?,
|
|
379
|
+
order_availability: Lithic::Models::ThreeDSAuthentication::Merchant::RiskIndicator::order_availability?,
|
|
380
|
+
pre_order_available_date: Time?,
|
|
381
|
+
reorder_items: Lithic::Models::ThreeDSAuthentication::Merchant::RiskIndicator::reorder_items?,
|
|
382
|
+
shipping_method: Lithic::Models::ThreeDSAuthentication::Merchant::RiskIndicator::shipping_method?
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
class RiskIndicator < Lithic::Internal::Type::BaseModel
|
|
386
|
+
attr_accessor delivery_email_address: String?
|
|
387
|
+
|
|
388
|
+
attr_accessor delivery_time_frame: Lithic::Models::ThreeDSAuthentication::Merchant::RiskIndicator::delivery_time_frame?
|
|
389
|
+
|
|
390
|
+
attr_accessor gift_card_amount: Integer?
|
|
391
|
+
|
|
392
|
+
attr_accessor gift_card_count: Integer?
|
|
393
|
+
|
|
394
|
+
attr_accessor gift_card_currency: String?
|
|
395
|
+
|
|
396
|
+
attr_accessor order_availability: Lithic::Models::ThreeDSAuthentication::Merchant::RiskIndicator::order_availability?
|
|
397
|
+
|
|
398
|
+
attr_accessor pre_order_available_date: Time?
|
|
399
|
+
|
|
400
|
+
attr_accessor reorder_items: Lithic::Models::ThreeDSAuthentication::Merchant::RiskIndicator::reorder_items?
|
|
401
|
+
|
|
402
|
+
attr_accessor shipping_method: Lithic::Models::ThreeDSAuthentication::Merchant::RiskIndicator::shipping_method?
|
|
403
|
+
|
|
404
|
+
def initialize: (
|
|
405
|
+
?delivery_email_address: String?,
|
|
406
|
+
?delivery_time_frame: Lithic::Models::ThreeDSAuthentication::Merchant::RiskIndicator::delivery_time_frame?,
|
|
407
|
+
?gift_card_amount: Integer?,
|
|
408
|
+
?gift_card_count: Integer?,
|
|
409
|
+
?gift_card_currency: String?,
|
|
410
|
+
?order_availability: Lithic::Models::ThreeDSAuthentication::Merchant::RiskIndicator::order_availability?,
|
|
411
|
+
?pre_order_available_date: Time?,
|
|
412
|
+
?reorder_items: Lithic::Models::ThreeDSAuthentication::Merchant::RiskIndicator::reorder_items?,
|
|
413
|
+
?shipping_method: Lithic::Models::ThreeDSAuthentication::Merchant::RiskIndicator::shipping_method?
|
|
414
|
+
) -> void
|
|
415
|
+
|
|
416
|
+
def to_hash: -> {
|
|
417
|
+
delivery_email_address: String?,
|
|
418
|
+
delivery_time_frame: Lithic::Models::ThreeDSAuthentication::Merchant::RiskIndicator::delivery_time_frame?,
|
|
419
|
+
gift_card_amount: Integer?,
|
|
420
|
+
gift_card_count: Integer?,
|
|
421
|
+
gift_card_currency: String?,
|
|
422
|
+
order_availability: Lithic::Models::ThreeDSAuthentication::Merchant::RiskIndicator::order_availability?,
|
|
423
|
+
pre_order_available_date: Time?,
|
|
424
|
+
reorder_items: Lithic::Models::ThreeDSAuthentication::Merchant::RiskIndicator::reorder_items?,
|
|
425
|
+
shipping_method: Lithic::Models::ThreeDSAuthentication::Merchant::RiskIndicator::shipping_method?
|
|
426
|
+
}
|
|
427
|
+
|
|
428
|
+
type delivery_time_frame =
|
|
429
|
+
:ELECTRONIC_DELIVERY
|
|
430
|
+
| :OVERNIGHT_SHIPPING
|
|
431
|
+
| :SAME_DAY_SHIPPING
|
|
432
|
+
| :TWO_DAY_OR_MORE_SHIPPING
|
|
433
|
+
|
|
434
|
+
module DeliveryTimeFrame
|
|
435
|
+
extend Lithic::Internal::Type::Enum
|
|
436
|
+
|
|
437
|
+
ELECTRONIC_DELIVERY: :ELECTRONIC_DELIVERY
|
|
438
|
+
OVERNIGHT_SHIPPING: :OVERNIGHT_SHIPPING
|
|
439
|
+
SAME_DAY_SHIPPING: :SAME_DAY_SHIPPING
|
|
440
|
+
TWO_DAY_OR_MORE_SHIPPING: :TWO_DAY_OR_MORE_SHIPPING
|
|
441
|
+
|
|
442
|
+
def self?.values: -> ::Array[Lithic::Models::ThreeDSAuthentication::Merchant::RiskIndicator::delivery_time_frame]
|
|
443
|
+
end
|
|
444
|
+
|
|
445
|
+
type order_availability =
|
|
446
|
+
:FUTURE_AVAILABILITY | :MERCHANDISE_AVAILABLE
|
|
447
|
+
|
|
448
|
+
module OrderAvailability
|
|
449
|
+
extend Lithic::Internal::Type::Enum
|
|
450
|
+
|
|
451
|
+
FUTURE_AVAILABILITY: :FUTURE_AVAILABILITY
|
|
452
|
+
MERCHANDISE_AVAILABLE: :MERCHANDISE_AVAILABLE
|
|
453
|
+
|
|
454
|
+
def self?.values: -> ::Array[Lithic::Models::ThreeDSAuthentication::Merchant::RiskIndicator::order_availability]
|
|
455
|
+
end
|
|
456
|
+
|
|
457
|
+
type reorder_items = :FIRST_TIME_ORDERED | :REORDERED
|
|
458
|
+
|
|
459
|
+
module ReorderItems
|
|
460
|
+
extend Lithic::Internal::Type::Enum
|
|
461
|
+
|
|
462
|
+
FIRST_TIME_ORDERED: :FIRST_TIME_ORDERED
|
|
463
|
+
REORDERED: :REORDERED
|
|
464
|
+
|
|
465
|
+
def self?.values: -> ::Array[Lithic::Models::ThreeDSAuthentication::Merchant::RiskIndicator::reorder_items]
|
|
466
|
+
end
|
|
467
|
+
|
|
468
|
+
type shipping_method =
|
|
469
|
+
:DIGITAL_GOODS
|
|
470
|
+
| :LOCKER_DELIVERY
|
|
471
|
+
| :OTHER
|
|
472
|
+
| :PICK_UP_AND_GO_DELIVERY
|
|
473
|
+
| :SHIP_TO_BILLING_ADDRESS
|
|
474
|
+
| :SHIP_TO_NON_BILLING_ADDRESS
|
|
475
|
+
| :SHIP_TO_OTHER_VERIFIED_ADDRESS
|
|
476
|
+
| :SHIP_TO_STORE
|
|
477
|
+
| :TRAVEL_AND_EVENT_TICKETS
|
|
478
|
+
|
|
479
|
+
module ShippingMethod
|
|
480
|
+
extend Lithic::Internal::Type::Enum
|
|
481
|
+
|
|
482
|
+
DIGITAL_GOODS: :DIGITAL_GOODS
|
|
483
|
+
LOCKER_DELIVERY: :LOCKER_DELIVERY
|
|
484
|
+
OTHER: :OTHER
|
|
485
|
+
PICK_UP_AND_GO_DELIVERY: :PICK_UP_AND_GO_DELIVERY
|
|
486
|
+
SHIP_TO_BILLING_ADDRESS: :SHIP_TO_BILLING_ADDRESS
|
|
487
|
+
SHIP_TO_NON_BILLING_ADDRESS: :SHIP_TO_NON_BILLING_ADDRESS
|
|
488
|
+
SHIP_TO_OTHER_VERIFIED_ADDRESS: :SHIP_TO_OTHER_VERIFIED_ADDRESS
|
|
489
|
+
SHIP_TO_STORE: :SHIP_TO_STORE
|
|
490
|
+
TRAVEL_AND_EVENT_TICKETS: :TRAVEL_AND_EVENT_TICKETS
|
|
491
|
+
|
|
492
|
+
def self?.values: -> ::Array[Lithic::Models::ThreeDSAuthentication::Merchant::RiskIndicator::shipping_method]
|
|
493
|
+
end
|
|
494
|
+
end
|
|
495
|
+
end
|
|
496
|
+
|
|
497
|
+
type message_category =
|
|
498
|
+
:NON_PAYMENT_AUTHENTICATION | :PAYMENT_AUTHENTICATION
|
|
499
|
+
|
|
500
|
+
module MessageCategory
|
|
501
|
+
extend Lithic::Internal::Type::Enum
|
|
502
|
+
|
|
503
|
+
NON_PAYMENT_AUTHENTICATION: :NON_PAYMENT_AUTHENTICATION
|
|
504
|
+
PAYMENT_AUTHENTICATION: :PAYMENT_AUTHENTICATION
|
|
505
|
+
|
|
506
|
+
def self?.values: -> ::Array[Lithic::Models::ThreeDSAuthentication::message_category]
|
|
507
|
+
end
|
|
508
|
+
|
|
509
|
+
type three_ds_requestor_challenge_indicator =
|
|
510
|
+
:NO_PREFERENCE
|
|
511
|
+
| :NO_CHALLENGE_REQUESTED
|
|
512
|
+
| :CHALLENGE_PREFERENCE
|
|
513
|
+
| :CHALLENGE_MANDATE
|
|
514
|
+
| :NO_CHALLENGE_RISK_ALREADY_ASSESSED
|
|
515
|
+
| :DATA_SHARE_ONLY
|
|
516
|
+
| :OTHER
|
|
517
|
+
|
|
518
|
+
module ThreeDSRequestorChallengeIndicator
|
|
519
|
+
extend Lithic::Internal::Type::Enum
|
|
520
|
+
|
|
521
|
+
NO_PREFERENCE: :NO_PREFERENCE
|
|
522
|
+
NO_CHALLENGE_REQUESTED: :NO_CHALLENGE_REQUESTED
|
|
523
|
+
CHALLENGE_PREFERENCE: :CHALLENGE_PREFERENCE
|
|
524
|
+
CHALLENGE_MANDATE: :CHALLENGE_MANDATE
|
|
525
|
+
NO_CHALLENGE_RISK_ALREADY_ASSESSED: :NO_CHALLENGE_RISK_ALREADY_ASSESSED
|
|
526
|
+
DATA_SHARE_ONLY: :DATA_SHARE_ONLY
|
|
527
|
+
OTHER: :OTHER
|
|
528
|
+
|
|
529
|
+
def self?.values: -> ::Array[Lithic::Models::ThreeDSAuthentication::three_ds_requestor_challenge_indicator]
|
|
530
|
+
end
|
|
531
|
+
|
|
532
|
+
type additional_data =
|
|
533
|
+
{
|
|
534
|
+
network_decision: Lithic::Models::ThreeDSAuthentication::AdditionalData::network_decision?,
|
|
535
|
+
network_risk_score: Integer?
|
|
536
|
+
}
|
|
537
|
+
|
|
538
|
+
class AdditionalData < Lithic::Internal::Type::BaseModel
|
|
539
|
+
attr_accessor network_decision: Lithic::Models::ThreeDSAuthentication::AdditionalData::network_decision?
|
|
540
|
+
|
|
541
|
+
attr_accessor network_risk_score: Integer?
|
|
542
|
+
|
|
543
|
+
def initialize: (
|
|
544
|
+
?network_decision: Lithic::Models::ThreeDSAuthentication::AdditionalData::network_decision?,
|
|
545
|
+
?network_risk_score: Integer?
|
|
546
|
+
) -> void
|
|
547
|
+
|
|
548
|
+
def to_hash: -> {
|
|
549
|
+
network_decision: Lithic::Models::ThreeDSAuthentication::AdditionalData::network_decision?,
|
|
550
|
+
network_risk_score: Integer?
|
|
551
|
+
}
|
|
552
|
+
|
|
553
|
+
type network_decision = :LOW_RISK | :NOT_LOW_RISK
|
|
554
|
+
|
|
555
|
+
module NetworkDecision
|
|
556
|
+
extend Lithic::Internal::Type::Enum
|
|
557
|
+
|
|
558
|
+
LOW_RISK: :LOW_RISK
|
|
559
|
+
NOT_LOW_RISK: :NOT_LOW_RISK
|
|
560
|
+
|
|
561
|
+
def self?.values: -> ::Array[Lithic::Models::ThreeDSAuthentication::AdditionalData::network_decision]
|
|
562
|
+
end
|
|
563
|
+
end
|
|
564
|
+
|
|
565
|
+
type app =
|
|
566
|
+
{
|
|
567
|
+
device: String?,
|
|
568
|
+
device_info: String?,
|
|
569
|
+
ip: String,
|
|
570
|
+
latitude: Float?,
|
|
571
|
+
locale: String?,
|
|
572
|
+
longitude: Float?,
|
|
573
|
+
os: String?,
|
|
574
|
+
platform: String?,
|
|
575
|
+
screen_height: Integer?,
|
|
576
|
+
screen_width: Integer?,
|
|
577
|
+
time_zone: String?
|
|
578
|
+
}
|
|
579
|
+
|
|
580
|
+
class App < Lithic::Internal::Type::BaseModel
|
|
581
|
+
attr_accessor device: String?
|
|
582
|
+
|
|
583
|
+
attr_accessor device_info: String?
|
|
584
|
+
|
|
585
|
+
attr_reader ip: String?
|
|
586
|
+
|
|
587
|
+
def ip=: (String) -> String
|
|
588
|
+
|
|
589
|
+
attr_accessor latitude: Float?
|
|
590
|
+
|
|
591
|
+
attr_accessor locale: String?
|
|
592
|
+
|
|
593
|
+
attr_accessor longitude: Float?
|
|
594
|
+
|
|
595
|
+
attr_accessor os: String?
|
|
596
|
+
|
|
597
|
+
attr_accessor platform: String?
|
|
598
|
+
|
|
599
|
+
attr_accessor screen_height: Integer?
|
|
600
|
+
|
|
601
|
+
attr_accessor screen_width: Integer?
|
|
602
|
+
|
|
603
|
+
attr_accessor time_zone: String?
|
|
604
|
+
|
|
605
|
+
def initialize: (
|
|
606
|
+
?device: String?,
|
|
607
|
+
?device_info: String?,
|
|
608
|
+
?ip: String,
|
|
609
|
+
?latitude: Float?,
|
|
610
|
+
?locale: String?,
|
|
611
|
+
?longitude: Float?,
|
|
612
|
+
?os: String?,
|
|
613
|
+
?platform: String?,
|
|
614
|
+
?screen_height: Integer?,
|
|
615
|
+
?screen_width: Integer?,
|
|
616
|
+
?time_zone: String?
|
|
617
|
+
) -> void
|
|
618
|
+
|
|
619
|
+
def to_hash: -> {
|
|
620
|
+
device: String?,
|
|
621
|
+
device_info: String?,
|
|
622
|
+
ip: String,
|
|
623
|
+
latitude: Float?,
|
|
624
|
+
locale: String?,
|
|
625
|
+
longitude: Float?,
|
|
626
|
+
os: String?,
|
|
627
|
+
platform: String?,
|
|
628
|
+
screen_height: Integer?,
|
|
629
|
+
screen_width: Integer?,
|
|
630
|
+
time_zone: String?
|
|
631
|
+
}
|
|
632
|
+
end
|
|
633
|
+
|
|
634
|
+
type authentication_request_type =
|
|
635
|
+
:ADD_CARD
|
|
636
|
+
| :BILLING_AGREEMENT
|
|
637
|
+
| :DELAYED_SHIPMENT
|
|
638
|
+
| :EMV_TOKEN_CARDHOLDER_VERIFICATION
|
|
639
|
+
| :INSTALLMENT_TRANSACTION
|
|
640
|
+
| :MAINTAIN_CARD
|
|
641
|
+
| :PAYMENT_TRANSACTION
|
|
642
|
+
| :RECURRING_TRANSACTION
|
|
643
|
+
| :SPLIT_PAYMENT
|
|
644
|
+
| :SPLIT_SHIPMENT
|
|
645
|
+
|
|
646
|
+
module AuthenticationRequestType
|
|
647
|
+
extend Lithic::Internal::Type::Enum
|
|
648
|
+
|
|
649
|
+
ADD_CARD: :ADD_CARD
|
|
650
|
+
BILLING_AGREEMENT: :BILLING_AGREEMENT
|
|
651
|
+
DELAYED_SHIPMENT: :DELAYED_SHIPMENT
|
|
652
|
+
EMV_TOKEN_CARDHOLDER_VERIFICATION: :EMV_TOKEN_CARDHOLDER_VERIFICATION
|
|
653
|
+
INSTALLMENT_TRANSACTION: :INSTALLMENT_TRANSACTION
|
|
654
|
+
MAINTAIN_CARD: :MAINTAIN_CARD
|
|
655
|
+
PAYMENT_TRANSACTION: :PAYMENT_TRANSACTION
|
|
656
|
+
RECURRING_TRANSACTION: :RECURRING_TRANSACTION
|
|
657
|
+
SPLIT_PAYMENT: :SPLIT_PAYMENT
|
|
658
|
+
SPLIT_SHIPMENT: :SPLIT_SHIPMENT
|
|
659
|
+
|
|
660
|
+
def self?.values: -> ::Array[Lithic::Models::ThreeDSAuthentication::authentication_request_type]
|
|
661
|
+
end
|
|
662
|
+
|
|
663
|
+
type browser =
|
|
664
|
+
{
|
|
665
|
+
accept_header: String?,
|
|
666
|
+
ip: String?,
|
|
667
|
+
java_enabled: bool?,
|
|
668
|
+
javascript_enabled: bool?,
|
|
669
|
+
language: String?,
|
|
670
|
+
time_zone: String?,
|
|
671
|
+
user_agent: String?
|
|
672
|
+
}
|
|
673
|
+
|
|
674
|
+
class Browser < Lithic::Internal::Type::BaseModel
|
|
675
|
+
attr_accessor accept_header: String?
|
|
676
|
+
|
|
677
|
+
attr_accessor ip: String?
|
|
678
|
+
|
|
679
|
+
attr_accessor java_enabled: bool?
|
|
680
|
+
|
|
681
|
+
attr_accessor javascript_enabled: bool?
|
|
682
|
+
|
|
683
|
+
attr_accessor language: String?
|
|
684
|
+
|
|
685
|
+
attr_accessor time_zone: String?
|
|
686
|
+
|
|
687
|
+
attr_accessor user_agent: String?
|
|
688
|
+
|
|
689
|
+
def initialize: (
|
|
690
|
+
?accept_header: String?,
|
|
691
|
+
?ip: String?,
|
|
692
|
+
?java_enabled: bool?,
|
|
693
|
+
?javascript_enabled: bool?,
|
|
694
|
+
?language: String?,
|
|
695
|
+
?time_zone: String?,
|
|
696
|
+
?user_agent: String?
|
|
697
|
+
) -> void
|
|
698
|
+
|
|
699
|
+
def to_hash: -> {
|
|
700
|
+
accept_header: String?,
|
|
701
|
+
ip: String?,
|
|
702
|
+
java_enabled: bool?,
|
|
703
|
+
javascript_enabled: bool?,
|
|
704
|
+
language: String?,
|
|
705
|
+
time_zone: String?,
|
|
706
|
+
user_agent: String?
|
|
707
|
+
}
|
|
708
|
+
end
|
|
709
|
+
|
|
710
|
+
type challenge_metadata =
|
|
711
|
+
{
|
|
712
|
+
method_type: Lithic::Models::ThreeDSAuthentication::ChallengeMetadata::method_type,
|
|
713
|
+
status: Lithic::Models::ThreeDSAuthentication::ChallengeMetadata::status,
|
|
714
|
+
phone_number: String?
|
|
715
|
+
}
|
|
716
|
+
|
|
717
|
+
class ChallengeMetadata < Lithic::Internal::Type::BaseModel
|
|
718
|
+
attr_accessor method_type: Lithic::Models::ThreeDSAuthentication::ChallengeMetadata::method_type
|
|
719
|
+
|
|
720
|
+
attr_accessor status: Lithic::Models::ThreeDSAuthentication::ChallengeMetadata::status
|
|
721
|
+
|
|
722
|
+
attr_accessor phone_number: String?
|
|
723
|
+
|
|
724
|
+
def initialize: (
|
|
725
|
+
method_type: Lithic::Models::ThreeDSAuthentication::ChallengeMetadata::method_type,
|
|
726
|
+
status: Lithic::Models::ThreeDSAuthentication::ChallengeMetadata::status,
|
|
727
|
+
?phone_number: String?
|
|
728
|
+
) -> void
|
|
729
|
+
|
|
730
|
+
def to_hash: -> {
|
|
731
|
+
method_type: Lithic::Models::ThreeDSAuthentication::ChallengeMetadata::method_type,
|
|
732
|
+
status: Lithic::Models::ThreeDSAuthentication::ChallengeMetadata::status,
|
|
733
|
+
phone_number: String?
|
|
734
|
+
}
|
|
735
|
+
|
|
736
|
+
type method_type = :SMS_OTP | :OUT_OF_BAND
|
|
737
|
+
|
|
738
|
+
module MethodType
|
|
739
|
+
extend Lithic::Internal::Type::Enum
|
|
740
|
+
|
|
741
|
+
SMS_OTP: :SMS_OTP
|
|
742
|
+
OUT_OF_BAND: :OUT_OF_BAND
|
|
743
|
+
|
|
744
|
+
def self?.values: -> ::Array[Lithic::Models::ThreeDSAuthentication::ChallengeMetadata::method_type]
|
|
745
|
+
end
|
|
746
|
+
|
|
747
|
+
type status =
|
|
748
|
+
:SUCCESS
|
|
749
|
+
| :PENDING
|
|
750
|
+
| :SMS_DELIVERY_FAILED
|
|
751
|
+
| :CARDHOLDER_TIMEOUT
|
|
752
|
+
| :CANCELED_VIA_CHALLENGE_UI
|
|
753
|
+
| :CANCELED_OOB
|
|
754
|
+
| :ATTEMPTS_EXCEEDED
|
|
755
|
+
| :ABORTED
|
|
756
|
+
| :ERROR
|
|
757
|
+
|
|
758
|
+
module Status
|
|
759
|
+
extend Lithic::Internal::Type::Enum
|
|
760
|
+
|
|
761
|
+
SUCCESS: :SUCCESS
|
|
762
|
+
PENDING: :PENDING
|
|
763
|
+
SMS_DELIVERY_FAILED: :SMS_DELIVERY_FAILED
|
|
764
|
+
CARDHOLDER_TIMEOUT: :CARDHOLDER_TIMEOUT
|
|
765
|
+
CANCELED_VIA_CHALLENGE_UI: :CANCELED_VIA_CHALLENGE_UI
|
|
766
|
+
CANCELED_OOB: :CANCELED_OOB
|
|
767
|
+
ATTEMPTS_EXCEEDED: :ATTEMPTS_EXCEEDED
|
|
768
|
+
ABORTED: :ABORTED
|
|
769
|
+
ERROR: :ERROR
|
|
770
|
+
|
|
771
|
+
def self?.values: -> ::Array[Lithic::Models::ThreeDSAuthentication::ChallengeMetadata::status]
|
|
772
|
+
end
|
|
773
|
+
end
|
|
774
|
+
|
|
775
|
+
type challenge_orchestrated_by = :LITHIC | :CUSTOMER | :NO_CHALLENGE
|
|
776
|
+
|
|
777
|
+
module ChallengeOrchestratedBy
|
|
778
|
+
extend Lithic::Internal::Type::Enum
|
|
779
|
+
|
|
780
|
+
LITHIC: :LITHIC
|
|
781
|
+
CUSTOMER: :CUSTOMER
|
|
782
|
+
NO_CHALLENGE: :NO_CHALLENGE
|
|
783
|
+
|
|
784
|
+
def self?.values: -> ::Array[Lithic::Models::ThreeDSAuthentication::challenge_orchestrated_by]
|
|
785
|
+
end
|
|
786
|
+
|
|
787
|
+
type decision_made_by =
|
|
788
|
+
:LITHIC_RULES
|
|
789
|
+
| :LITHIC_DEFAULT
|
|
790
|
+
| :CUSTOMER_RULES
|
|
791
|
+
| :CUSTOMER_ENDPOINT
|
|
792
|
+
| :NETWORK
|
|
793
|
+
| :UNKNOWN
|
|
794
|
+
|
|
795
|
+
module DecisionMadeBy
|
|
796
|
+
extend Lithic::Internal::Type::Enum
|
|
797
|
+
|
|
798
|
+
LITHIC_RULES: :LITHIC_RULES
|
|
799
|
+
LITHIC_DEFAULT: :LITHIC_DEFAULT
|
|
800
|
+
CUSTOMER_RULES: :CUSTOMER_RULES
|
|
801
|
+
CUSTOMER_ENDPOINT: :CUSTOMER_ENDPOINT
|
|
802
|
+
NETWORK: :NETWORK
|
|
803
|
+
UNKNOWN: :UNKNOWN
|
|
804
|
+
|
|
805
|
+
def self?.values: -> ::Array[Lithic::Models::ThreeDSAuthentication::decision_made_by]
|
|
806
|
+
end
|
|
807
|
+
|
|
808
|
+
type three_ri_request_type =
|
|
809
|
+
:ACCOUNT_VERIFICATION
|
|
810
|
+
| :ADD_CARD
|
|
811
|
+
| :BILLING_AGREEMENT
|
|
812
|
+
| :CARD_SECURITY_CODE_STATUS_CHECK
|
|
813
|
+
| :DELAYED_SHIPMENT
|
|
814
|
+
| :DEVICE_BINDING_STATUS_CHECK
|
|
815
|
+
| :INSTALLMENT_TRANSACTION
|
|
816
|
+
| :MAIL_ORDER
|
|
817
|
+
| :MAINTAIN_CARD_INFO
|
|
818
|
+
| :OTHER_PAYMENT
|
|
819
|
+
| :RECURRING_TRANSACTION
|
|
820
|
+
| :SPLIT_PAYMENT
|
|
821
|
+
| :SPLIT_SHIPMENT
|
|
822
|
+
| :TELEPHONE_ORDER
|
|
823
|
+
| :TOP_UP
|
|
824
|
+
| :TRUST_LIST_STATUS_CHECK
|
|
825
|
+
|
|
826
|
+
module ThreeRiRequestType
|
|
827
|
+
extend Lithic::Internal::Type::Enum
|
|
828
|
+
|
|
829
|
+
ACCOUNT_VERIFICATION: :ACCOUNT_VERIFICATION
|
|
830
|
+
ADD_CARD: :ADD_CARD
|
|
831
|
+
BILLING_AGREEMENT: :BILLING_AGREEMENT
|
|
832
|
+
CARD_SECURITY_CODE_STATUS_CHECK: :CARD_SECURITY_CODE_STATUS_CHECK
|
|
833
|
+
DELAYED_SHIPMENT: :DELAYED_SHIPMENT
|
|
834
|
+
DEVICE_BINDING_STATUS_CHECK: :DEVICE_BINDING_STATUS_CHECK
|
|
835
|
+
INSTALLMENT_TRANSACTION: :INSTALLMENT_TRANSACTION
|
|
836
|
+
MAIL_ORDER: :MAIL_ORDER
|
|
837
|
+
MAINTAIN_CARD_INFO: :MAINTAIN_CARD_INFO
|
|
838
|
+
OTHER_PAYMENT: :OTHER_PAYMENT
|
|
839
|
+
RECURRING_TRANSACTION: :RECURRING_TRANSACTION
|
|
840
|
+
SPLIT_PAYMENT: :SPLIT_PAYMENT
|
|
841
|
+
SPLIT_SHIPMENT: :SPLIT_SHIPMENT
|
|
842
|
+
TELEPHONE_ORDER: :TELEPHONE_ORDER
|
|
843
|
+
TOP_UP: :TOP_UP
|
|
844
|
+
TRUST_LIST_STATUS_CHECK: :TRUST_LIST_STATUS_CHECK
|
|
845
|
+
|
|
846
|
+
def self?.values: -> ::Array[Lithic::Models::ThreeDSAuthentication::three_ri_request_type]
|
|
847
|
+
end
|
|
848
|
+
|
|
849
|
+
type transaction =
|
|
850
|
+
{
|
|
851
|
+
amount: Float,
|
|
852
|
+
cardholder_amount: Float?,
|
|
853
|
+
currency: String,
|
|
854
|
+
currency_exponent: Float,
|
|
855
|
+
date_time: Time,
|
|
856
|
+
type: Lithic::Models::ThreeDSAuthentication::Transaction::type_?
|
|
857
|
+
}
|
|
858
|
+
|
|
859
|
+
class Transaction < Lithic::Internal::Type::BaseModel
|
|
860
|
+
attr_accessor amount: Float
|
|
861
|
+
|
|
862
|
+
attr_accessor cardholder_amount: Float?
|
|
863
|
+
|
|
864
|
+
attr_accessor currency: String
|
|
865
|
+
|
|
866
|
+
attr_accessor currency_exponent: Float
|
|
867
|
+
|
|
868
|
+
attr_accessor date_time: Time
|
|
869
|
+
|
|
870
|
+
attr_accessor type: Lithic::Models::ThreeDSAuthentication::Transaction::type_?
|
|
871
|
+
|
|
872
|
+
def initialize: (
|
|
873
|
+
amount: Float,
|
|
874
|
+
cardholder_amount: Float?,
|
|
875
|
+
currency: String,
|
|
876
|
+
currency_exponent: Float,
|
|
877
|
+
date_time: Time,
|
|
878
|
+
type: Lithic::Models::ThreeDSAuthentication::Transaction::type_?
|
|
879
|
+
) -> void
|
|
880
|
+
|
|
881
|
+
def to_hash: -> {
|
|
882
|
+
amount: Float,
|
|
883
|
+
cardholder_amount: Float?,
|
|
884
|
+
currency: String,
|
|
885
|
+
currency_exponent: Float,
|
|
886
|
+
date_time: Time,
|
|
887
|
+
type: Lithic::Models::ThreeDSAuthentication::Transaction::type_?
|
|
888
|
+
}
|
|
889
|
+
|
|
890
|
+
type type_ =
|
|
891
|
+
:ACCOUNT_FUNDING
|
|
892
|
+
| :CHECK_ACCEPTANCE
|
|
893
|
+
| :GOODS_SERVICE_PURCHASE
|
|
894
|
+
| :PREPAID_ACTIVATION_AND_LOAD
|
|
895
|
+
| :QUASI_CASH_TRANSACTION
|
|
896
|
+
|
|
897
|
+
module Type
|
|
898
|
+
extend Lithic::Internal::Type::Enum
|
|
899
|
+
|
|
900
|
+
ACCOUNT_FUNDING: :ACCOUNT_FUNDING
|
|
901
|
+
CHECK_ACCEPTANCE: :CHECK_ACCEPTANCE
|
|
902
|
+
GOODS_SERVICE_PURCHASE: :GOODS_SERVICE_PURCHASE
|
|
903
|
+
PREPAID_ACTIVATION_AND_LOAD: :PREPAID_ACTIVATION_AND_LOAD
|
|
904
|
+
QUASI_CASH_TRANSACTION: :QUASI_CASH_TRANSACTION
|
|
905
|
+
|
|
906
|
+
def self?.values: -> ::Array[Lithic::Models::ThreeDSAuthentication::Transaction::type_]
|
|
907
|
+
end
|
|
908
|
+
end
|
|
909
|
+
end
|
|
910
|
+
end
|
|
911
|
+
end
|