lithic 0.15.0 → 0.17.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 +35 -0
- data/README.md +1 -1
- data/lib/lithic/client.rb +4 -0
- data/lib/lithic/internal/transport/base_client.rb +4 -1
- data/lib/lithic/models/account.rb +2 -2
- data/lib/lithic/models/account_holders/account_holder_entity.rb +3 -16
- data/lib/lithic/models/account_holders/entity_create_params.rb +3 -14
- data/lib/lithic/models/auth_rules/ach_payment_update_action.rb +108 -0
- data/lib/lithic/models/auth_rules/auth_rule.rb +18 -12
- data/lib/lithic/models/auth_rules/auth_rule_version.rb +5 -3
- data/lib/lithic/models/auth_rules/conditional_ach_payment_update_action_parameters.rb +142 -0
- data/lib/lithic/models/auth_rules/conditional_authorization_adjustment_parameters.rb +18 -20
- data/lib/lithic/models/auth_rules/conditional_card_transaction_update_action_parameters.rb +195 -9
- data/lib/lithic/models/auth_rules/event_stream.rb +1 -0
- data/lib/lithic/models/auth_rules/rule_feature.rb +52 -7
- data/lib/lithic/models/auth_rules/typescript_code_parameters.rb +2 -2
- data/lib/lithic/models/auth_rules/v2_create_params.rb +39 -27
- data/lib/lithic/models/auth_rules/v2_draft_params.rb +5 -3
- data/lib/lithic/models/auth_rules/v2_list_results_response.rb +426 -1
- data/lib/lithic/models/card.rb +1 -1
- data/lib/lithic/models/card_authorization.rb +117 -11
- data/lib/lithic/models/financial_accounts/loan_tape.rb +9 -1
- data/lib/lithic/models/payment.rb +13 -1
- data/lib/lithic/models/transaction_monitoring/case_activity_entry.rb +74 -0
- data/lib/lithic/models/transaction_monitoring/case_activity_type.rb +35 -0
- data/lib/lithic/models/transaction_monitoring/case_card.rb +37 -0
- data/lib/lithic/models/transaction_monitoring/case_entity.rb +50 -0
- data/lib/lithic/models/transaction_monitoring/case_list_activity_params.rb +53 -0
- data/lib/lithic/models/transaction_monitoring/case_list_params.rb +136 -0
- data/lib/lithic/models/transaction_monitoring/case_list_transactions_params.rb +53 -0
- data/lib/lithic/models/transaction_monitoring/case_priority.rb +20 -0
- data/lib/lithic/models/transaction_monitoring/case_retrieve_cards_params.rb +22 -0
- data/lib/lithic/models/transaction_monitoring/case_retrieve_cards_response.rb +11 -0
- data/lib/lithic/models/transaction_monitoring/case_retrieve_params.rb +22 -0
- data/lib/lithic/models/transaction_monitoring/case_sort_order.rb +29 -0
- data/lib/lithic/models/transaction_monitoring/case_status.rb +31 -0
- data/lib/lithic/models/transaction_monitoring/case_transaction.rb +53 -0
- data/lib/lithic/models/transaction_monitoring/case_update_params.rb +116 -0
- data/lib/lithic/models/transaction_monitoring/cases/case_file.rb +141 -0
- data/lib/lithic/models/transaction_monitoring/cases/comment_create_params.rb +47 -0
- data/lib/lithic/models/transaction_monitoring/cases/comment_delete_params.rb +30 -0
- data/lib/lithic/models/transaction_monitoring/cases/comment_update_params.rb +54 -0
- data/lib/lithic/models/transaction_monitoring/cases/file_create_params.rb +33 -0
- data/lib/lithic/models/transaction_monitoring/cases/file_delete_params.rb +30 -0
- data/lib/lithic/models/transaction_monitoring/cases/file_list_params.rb +54 -0
- data/lib/lithic/models/transaction_monitoring/cases/file_retrieve_params.rb +30 -0
- data/lib/lithic/models/transaction_monitoring/cases/file_status.rb +26 -0
- data/lib/lithic/models/transaction_monitoring/cases/upload_constraints.rb +31 -0
- data/lib/lithic/models/transaction_monitoring/entity_type.rb +18 -0
- data/lib/lithic/models/transaction_monitoring/monitoring_case.rb +168 -0
- data/lib/lithic/models/transaction_monitoring/queue.rb +120 -0
- data/lib/lithic/models/transaction_monitoring/queue_create_params.rb +32 -0
- data/lib/lithic/models/transaction_monitoring/queue_delete_params.rb +22 -0
- data/lib/lithic/models/transaction_monitoring/queue_list_params.rb +45 -0
- data/lib/lithic/models/transaction_monitoring/queue_retrieve_params.rb +22 -0
- data/lib/lithic/models/transaction_monitoring/queue_update_params.rb +39 -0
- data/lib/lithic/models/transaction_monitoring/resolution_outcome.rb +28 -0
- data/lib/lithic/models/transaction_route_params.rb +29 -0
- data/lib/lithic/models.rb +4 -0
- data/lib/lithic/resources/account_holders/entities.rb +1 -1
- data/lib/lithic/resources/auth_rules/v2.rb +2 -2
- data/lib/lithic/resources/cards.rb +2 -2
- data/lib/lithic/resources/transaction_monitoring/cases/comments.rb +111 -0
- data/lib/lithic/resources/transaction_monitoring/cases/files.rb +131 -0
- data/lib/lithic/resources/transaction_monitoring/cases.rb +228 -0
- data/lib/lithic/resources/transaction_monitoring/queues.rb +137 -0
- data/lib/lithic/resources/transaction_monitoring.rb +22 -0
- data/lib/lithic/resources/transactions.rb +25 -0
- data/lib/lithic/version.rb +1 -1
- data/lib/lithic.rb +42 -0
- data/rbi/lithic/client.rbi +3 -0
- data/rbi/lithic/models/account.rbi +3 -3
- data/rbi/lithic/models/account_holders/account_holder_entity.rbi +3 -40
- data/rbi/lithic/models/account_holders/entity_create_params.rbi +3 -37
- data/rbi/lithic/models/auth_rules/ach_payment_update_action.rbi +237 -0
- data/rbi/lithic/models/auth_rules/auth_rule.rbi +16 -9
- data/rbi/lithic/models/auth_rules/auth_rule_version.rbi +2 -0
- data/rbi/lithic/models/auth_rules/conditional_ach_payment_update_action_parameters.rbi +298 -0
- data/rbi/lithic/models/auth_rules/conditional_authorization_adjustment_parameters.rbi +29 -29
- data/rbi/lithic/models/auth_rules/conditional_card_transaction_update_action_parameters.rbi +395 -12
- data/rbi/lithic/models/auth_rules/event_stream.rbi +5 -0
- data/rbi/lithic/models/auth_rules/rule_feature.rbi +77 -6
- data/rbi/lithic/models/auth_rules/typescript_code_parameters.rbi +6 -0
- data/rbi/lithic/models/auth_rules/v2_create_params.rbi +48 -27
- data/rbi/lithic/models/auth_rules/v2_draft_params.rbi +4 -0
- data/rbi/lithic/models/auth_rules/v2_list_results_response.rbi +826 -1
- data/rbi/lithic/models/card.rbi +2 -2
- data/rbi/lithic/models/card_authorization.rbi +246 -17
- data/rbi/lithic/models/financial_accounts/loan_tape.rbi +8 -0
- data/rbi/lithic/models/payment.rbi +13 -0
- data/rbi/lithic/models/transaction_monitoring/case_activity_entry.rbi +107 -0
- data/rbi/lithic/models/transaction_monitoring/case_activity_type.rbi +84 -0
- data/rbi/lithic/models/transaction_monitoring/case_card.rbi +60 -0
- data/rbi/lithic/models/transaction_monitoring/case_entity.rbi +101 -0
- data/rbi/lithic/models/transaction_monitoring/case_list_activity_params.rbi +83 -0
- data/rbi/lithic/models/transaction_monitoring/case_list_params.rbi +220 -0
- data/rbi/lithic/models/transaction_monitoring/case_list_transactions_params.rbi +83 -0
- data/rbi/lithic/models/transaction_monitoring/case_priority.rbi +44 -0
- data/rbi/lithic/models/transaction_monitoring/case_retrieve_cards_params.rbi +40 -0
- data/rbi/lithic/models/transaction_monitoring/case_retrieve_cards_response.rbi +15 -0
- data/rbi/lithic/models/transaction_monitoring/case_retrieve_params.rbi +40 -0
- data/rbi/lithic/models/transaction_monitoring/case_sort_order.rbi +64 -0
- data/rbi/lithic/models/transaction_monitoring/case_status.rbi +63 -0
- data/rbi/lithic/models/transaction_monitoring/case_transaction.rbi +75 -0
- data/rbi/lithic/models/transaction_monitoring/case_update_params.rbi +201 -0
- data/rbi/lithic/models/transaction_monitoring/cases/case_file.rbi +188 -0
- data/rbi/lithic/models/transaction_monitoring/cases/comment_create_params.rbi +71 -0
- data/rbi/lithic/models/transaction_monitoring/cases/comment_delete_params.rbi +50 -0
- data/rbi/lithic/models/transaction_monitoring/cases/comment_update_params.rbi +77 -0
- data/rbi/lithic/models/transaction_monitoring/cases/file_create_params.rbi +56 -0
- data/rbi/lithic/models/transaction_monitoring/cases/file_delete_params.rbi +50 -0
- data/rbi/lithic/models/transaction_monitoring/cases/file_list_params.rbi +85 -0
- data/rbi/lithic/models/transaction_monitoring/cases/file_retrieve_params.rbi +50 -0
- data/rbi/lithic/models/transaction_monitoring/cases/file_status.rbi +51 -0
- data/rbi/lithic/models/transaction_monitoring/cases/upload_constraints.rbi +51 -0
- data/rbi/lithic/models/transaction_monitoring/entity_type.rbi +37 -0
- data/rbi/lithic/models/transaction_monitoring/monitoring_case.rbi +226 -0
- data/rbi/lithic/models/transaction_monitoring/queue.rbi +189 -0
- data/rbi/lithic/models/transaction_monitoring/queue_create_params.rbi +56 -0
- data/rbi/lithic/models/transaction_monitoring/queue_delete_params.rbi +40 -0
- data/rbi/lithic/models/transaction_monitoring/queue_list_params.rbi +77 -0
- data/rbi/lithic/models/transaction_monitoring/queue_retrieve_params.rbi +40 -0
- data/rbi/lithic/models/transaction_monitoring/queue_update_params.rbi +65 -0
- data/rbi/lithic/models/transaction_monitoring/resolution_outcome.rbi +61 -0
- data/rbi/lithic/models/transaction_route_params.rbi +49 -0
- data/rbi/lithic/models.rbi +4 -0
- data/rbi/lithic/resources/account_holders/entities.rbi +1 -1
- data/rbi/lithic/resources/auth_rules/v2.rbi +1 -0
- data/rbi/lithic/resources/cards.rbi +2 -2
- data/rbi/lithic/resources/transaction_monitoring/cases/comments.rbi +81 -0
- data/rbi/lithic/resources/transaction_monitoring/cases/files.rbi +98 -0
- data/rbi/lithic/resources/transaction_monitoring/cases.rbi +230 -0
- data/rbi/lithic/resources/transaction_monitoring/queues.rbi +103 -0
- data/rbi/lithic/resources/transaction_monitoring.rbi +18 -0
- data/rbi/lithic/resources/transactions.rbi +18 -0
- data/sig/lithic/client.rbs +2 -0
- data/sig/lithic/models/account_holders/account_holder_entity.rbs +4 -15
- data/sig/lithic/models/account_holders/entity_create_params.rbs +4 -15
- data/sig/lithic/models/auth_rules/ach_payment_update_action.rbs +99 -0
- data/sig/lithic/models/auth_rules/auth_rule.rbs +2 -0
- data/sig/lithic/models/auth_rules/auth_rule_version.rbs +1 -0
- data/sig/lithic/models/auth_rules/conditional_ach_payment_update_action_parameters.rbs +81 -0
- data/sig/lithic/models/auth_rules/conditional_authorization_adjustment_parameters.rbs +16 -16
- data/sig/lithic/models/auth_rules/conditional_card_transaction_update_action_parameters.rbs +73 -3
- data/sig/lithic/models/auth_rules/event_stream.rbs +2 -0
- data/sig/lithic/models/auth_rules/rule_feature.rbs +31 -0
- data/sig/lithic/models/auth_rules/v2_create_params.rbs +3 -0
- data/sig/lithic/models/auth_rules/v2_draft_params.rbs +1 -0
- data/sig/lithic/models/auth_rules/v2_list_results_response.rbs +355 -0
- data/sig/lithic/models/card_authorization.rbs +84 -10
- data/sig/lithic/models/financial_accounts/loan_tape.rbs +5 -0
- data/sig/lithic/models/payment.rbs +7 -0
- data/sig/lithic/models/transaction_monitoring/case_activity_entry.rbs +47 -0
- data/sig/lithic/models/transaction_monitoring/case_activity_type.rbs +32 -0
- data/sig/lithic/models/transaction_monitoring/case_card.rbs +32 -0
- data/sig/lithic/models/transaction_monitoring/case_entity.rbs +38 -0
- data/sig/lithic/models/transaction_monitoring/case_list_activity_params.rbs +49 -0
- data/sig/lithic/models/transaction_monitoring/case_list_params.rbs +125 -0
- data/sig/lithic/models/transaction_monitoring/case_list_transactions_params.rbs +49 -0
- data/sig/lithic/models/transaction_monitoring/case_priority.rbs +18 -0
- data/sig/lithic/models/transaction_monitoring/case_retrieve_cards_params.rbs +25 -0
- data/sig/lithic/models/transaction_monitoring/case_retrieve_cards_response.rbs +10 -0
- data/sig/lithic/models/transaction_monitoring/case_retrieve_params.rbs +25 -0
- data/sig/lithic/models/transaction_monitoring/case_sort_order.rbs +26 -0
- data/sig/lithic/models/transaction_monitoring/case_status.rbs +21 -0
- data/sig/lithic/models/transaction_monitoring/case_transaction.rbs +42 -0
- data/sig/lithic/models/transaction_monitoring/case_update_params.rbs +91 -0
- data/sig/lithic/models/transaction_monitoring/cases/case_file.rbs +86 -0
- data/sig/lithic/models/transaction_monitoring/cases/comment_create_params.rbs +38 -0
- data/sig/lithic/models/transaction_monitoring/cases/comment_delete_params.rbs +32 -0
- data/sig/lithic/models/transaction_monitoring/cases/comment_update_params.rbs +47 -0
- data/sig/lithic/models/transaction_monitoring/cases/file_create_params.rbs +32 -0
- data/sig/lithic/models/transaction_monitoring/cases/file_delete_params.rbs +32 -0
- data/sig/lithic/models/transaction_monitoring/cases/file_list_params.rbs +51 -0
- data/sig/lithic/models/transaction_monitoring/cases/file_retrieve_params.rbs +32 -0
- data/sig/lithic/models/transaction_monitoring/cases/file_status.rbs +19 -0
- data/sig/lithic/models/transaction_monitoring/cases/upload_constraints.rbs +26 -0
- data/sig/lithic/models/transaction_monitoring/entity_type.rbs +16 -0
- data/sig/lithic/models/transaction_monitoring/monitoring_case.rbs +102 -0
- data/sig/lithic/models/transaction_monitoring/queue.rbs +101 -0
- data/sig/lithic/models/transaction_monitoring/queue_create_params.rbs +30 -0
- data/sig/lithic/models/transaction_monitoring/queue_delete_params.rbs +25 -0
- data/sig/lithic/models/transaction_monitoring/queue_list_params.rbs +40 -0
- data/sig/lithic/models/transaction_monitoring/queue_retrieve_params.rbs +25 -0
- data/sig/lithic/models/transaction_monitoring/queue_update_params.rbs +36 -0
- data/sig/lithic/models/transaction_monitoring/resolution_outcome.rbs +24 -0
- data/sig/lithic/models/transaction_route_params.rbs +28 -0
- data/sig/lithic/models.rbs +4 -0
- data/sig/lithic/resources/account_holders/entities.rbs +1 -1
- data/sig/lithic/resources/transaction_monitoring/cases/comments.rbs +32 -0
- data/sig/lithic/resources/transaction_monitoring/cases/files.rbs +37 -0
- data/sig/lithic/resources/transaction_monitoring/cases.rbs +71 -0
- data/sig/lithic/resources/transaction_monitoring/queues.rbs +39 -0
- data/sig/lithic/resources/transaction_monitoring.rbs +11 -0
- data/sig/lithic/resources/transactions.rbs +6 -0
- metadata +128 -2
|
@@ -6,6 +6,8 @@ module Lithic
|
|
|
6
6
|
| Lithic::Models::AuthRules::V2ListResultsResponse::Authentication3DSResult
|
|
7
7
|
| Lithic::Models::AuthRules::V2ListResultsResponse::TokenizationResult
|
|
8
8
|
| Lithic::Models::AuthRules::V2ListResultsResponse::ACHResult
|
|
9
|
+
| Lithic::Models::AuthRules::V2ListResultsResponse::CardTransactionUpdateResult
|
|
10
|
+
| Lithic::Models::AuthRules::V2ListResultsResponse::ACHPaymentUpdateResult
|
|
9
11
|
|
|
10
12
|
module V2ListResultsResponse
|
|
11
13
|
extend Lithic::Internal::Type::Union
|
|
@@ -936,6 +938,359 @@ module Lithic
|
|
|
936
938
|
end
|
|
937
939
|
end
|
|
938
940
|
|
|
941
|
+
type card_transaction_update_result =
|
|
942
|
+
{
|
|
943
|
+
token: String,
|
|
944
|
+
actions: ::Array[Lithic::Models::AuthRules::V2ListResultsResponse::CardTransactionUpdateResult::action],
|
|
945
|
+
auth_rule_token: String,
|
|
946
|
+
evaluation_time: Time,
|
|
947
|
+
event_stream: :CARD_TRANSACTION_UPDATE,
|
|
948
|
+
event_token: String,
|
|
949
|
+
mode: Lithic::Models::AuthRules::V2ListResultsResponse::CardTransactionUpdateResult::mode,
|
|
950
|
+
rule_version: Integer,
|
|
951
|
+
transaction_token: String?
|
|
952
|
+
}
|
|
953
|
+
|
|
954
|
+
class CardTransactionUpdateResult < Lithic::Internal::Type::BaseModel
|
|
955
|
+
attr_accessor token: String
|
|
956
|
+
|
|
957
|
+
attr_accessor actions: ::Array[Lithic::Models::AuthRules::V2ListResultsResponse::CardTransactionUpdateResult::action]
|
|
958
|
+
|
|
959
|
+
attr_accessor auth_rule_token: String
|
|
960
|
+
|
|
961
|
+
attr_accessor evaluation_time: Time
|
|
962
|
+
|
|
963
|
+
attr_accessor event_stream: :CARD_TRANSACTION_UPDATE
|
|
964
|
+
|
|
965
|
+
attr_accessor event_token: String
|
|
966
|
+
|
|
967
|
+
attr_accessor mode: Lithic::Models::AuthRules::V2ListResultsResponse::CardTransactionUpdateResult::mode
|
|
968
|
+
|
|
969
|
+
attr_accessor rule_version: Integer
|
|
970
|
+
|
|
971
|
+
attr_accessor transaction_token: String?
|
|
972
|
+
|
|
973
|
+
def initialize: (
|
|
974
|
+
token: String,
|
|
975
|
+
actions: ::Array[Lithic::Models::AuthRules::V2ListResultsResponse::CardTransactionUpdateResult::action],
|
|
976
|
+
auth_rule_token: String,
|
|
977
|
+
evaluation_time: Time,
|
|
978
|
+
event_token: String,
|
|
979
|
+
mode: Lithic::Models::AuthRules::V2ListResultsResponse::CardTransactionUpdateResult::mode,
|
|
980
|
+
rule_version: Integer,
|
|
981
|
+
transaction_token: String?,
|
|
982
|
+
?event_stream: :CARD_TRANSACTION_UPDATE
|
|
983
|
+
) -> void
|
|
984
|
+
|
|
985
|
+
def to_hash: -> {
|
|
986
|
+
token: String,
|
|
987
|
+
actions: ::Array[Lithic::Models::AuthRules::V2ListResultsResponse::CardTransactionUpdateResult::action],
|
|
988
|
+
auth_rule_token: String,
|
|
989
|
+
evaluation_time: Time,
|
|
990
|
+
event_stream: :CARD_TRANSACTION_UPDATE,
|
|
991
|
+
event_token: String,
|
|
992
|
+
mode: Lithic::Models::AuthRules::V2ListResultsResponse::CardTransactionUpdateResult::mode,
|
|
993
|
+
rule_version: Integer,
|
|
994
|
+
transaction_token: String?
|
|
995
|
+
}
|
|
996
|
+
|
|
997
|
+
type action =
|
|
998
|
+
Lithic::Models::AuthRules::V2ListResultsResponse::CardTransactionUpdateResult::Action::TagAction
|
|
999
|
+
| Lithic::Models::AuthRules::V2ListResultsResponse::CardTransactionUpdateResult::Action::CreateCaseAction
|
|
1000
|
+
|
|
1001
|
+
module Action
|
|
1002
|
+
extend Lithic::Internal::Type::Union
|
|
1003
|
+
|
|
1004
|
+
type tag_action =
|
|
1005
|
+
{
|
|
1006
|
+
key: String,
|
|
1007
|
+
type: Lithic::Models::AuthRules::V2ListResultsResponse::CardTransactionUpdateResult::Action::TagAction::type_,
|
|
1008
|
+
value: String,
|
|
1009
|
+
explanation: String
|
|
1010
|
+
}
|
|
1011
|
+
|
|
1012
|
+
class TagAction < Lithic::Internal::Type::BaseModel
|
|
1013
|
+
attr_accessor key: String
|
|
1014
|
+
|
|
1015
|
+
attr_accessor type: Lithic::Models::AuthRules::V2ListResultsResponse::CardTransactionUpdateResult::Action::TagAction::type_
|
|
1016
|
+
|
|
1017
|
+
attr_accessor value: String
|
|
1018
|
+
|
|
1019
|
+
attr_reader explanation: String?
|
|
1020
|
+
|
|
1021
|
+
def explanation=: (String) -> String
|
|
1022
|
+
|
|
1023
|
+
def initialize: (
|
|
1024
|
+
key: String,
|
|
1025
|
+
type: Lithic::Models::AuthRules::V2ListResultsResponse::CardTransactionUpdateResult::Action::TagAction::type_,
|
|
1026
|
+
value: String,
|
|
1027
|
+
?explanation: String
|
|
1028
|
+
) -> void
|
|
1029
|
+
|
|
1030
|
+
def to_hash: -> {
|
|
1031
|
+
key: String,
|
|
1032
|
+
type: Lithic::Models::AuthRules::V2ListResultsResponse::CardTransactionUpdateResult::Action::TagAction::type_,
|
|
1033
|
+
value: String,
|
|
1034
|
+
explanation: String
|
|
1035
|
+
}
|
|
1036
|
+
|
|
1037
|
+
type type_ = :TAG
|
|
1038
|
+
|
|
1039
|
+
module Type
|
|
1040
|
+
extend Lithic::Internal::Type::Enum
|
|
1041
|
+
|
|
1042
|
+
TAG: :TAG
|
|
1043
|
+
|
|
1044
|
+
def self?.values: -> ::Array[Lithic::Models::AuthRules::V2ListResultsResponse::CardTransactionUpdateResult::Action::TagAction::type_]
|
|
1045
|
+
end
|
|
1046
|
+
end
|
|
1047
|
+
|
|
1048
|
+
type create_case_action =
|
|
1049
|
+
{
|
|
1050
|
+
queue_token: String,
|
|
1051
|
+
scope: Lithic::Models::AuthRules::V2ListResultsResponse::CardTransactionUpdateResult::Action::CreateCaseAction::scope,
|
|
1052
|
+
type: Lithic::Models::AuthRules::V2ListResultsResponse::CardTransactionUpdateResult::Action::CreateCaseAction::type_,
|
|
1053
|
+
explanation: String
|
|
1054
|
+
}
|
|
1055
|
+
|
|
1056
|
+
class CreateCaseAction < Lithic::Internal::Type::BaseModel
|
|
1057
|
+
attr_accessor queue_token: String
|
|
1058
|
+
|
|
1059
|
+
attr_accessor scope: Lithic::Models::AuthRules::V2ListResultsResponse::CardTransactionUpdateResult::Action::CreateCaseAction::scope
|
|
1060
|
+
|
|
1061
|
+
attr_accessor type: Lithic::Models::AuthRules::V2ListResultsResponse::CardTransactionUpdateResult::Action::CreateCaseAction::type_
|
|
1062
|
+
|
|
1063
|
+
attr_reader explanation: String?
|
|
1064
|
+
|
|
1065
|
+
def explanation=: (String) -> String
|
|
1066
|
+
|
|
1067
|
+
def initialize: (
|
|
1068
|
+
queue_token: String,
|
|
1069
|
+
scope: Lithic::Models::AuthRules::V2ListResultsResponse::CardTransactionUpdateResult::Action::CreateCaseAction::scope,
|
|
1070
|
+
type: Lithic::Models::AuthRules::V2ListResultsResponse::CardTransactionUpdateResult::Action::CreateCaseAction::type_,
|
|
1071
|
+
?explanation: String
|
|
1072
|
+
) -> void
|
|
1073
|
+
|
|
1074
|
+
def to_hash: -> {
|
|
1075
|
+
queue_token: String,
|
|
1076
|
+
scope: Lithic::Models::AuthRules::V2ListResultsResponse::CardTransactionUpdateResult::Action::CreateCaseAction::scope,
|
|
1077
|
+
type: Lithic::Models::AuthRules::V2ListResultsResponse::CardTransactionUpdateResult::Action::CreateCaseAction::type_,
|
|
1078
|
+
explanation: String
|
|
1079
|
+
}
|
|
1080
|
+
|
|
1081
|
+
type scope = :CARD | :ACCOUNT
|
|
1082
|
+
|
|
1083
|
+
module Scope
|
|
1084
|
+
extend Lithic::Internal::Type::Enum
|
|
1085
|
+
|
|
1086
|
+
CARD: :CARD
|
|
1087
|
+
ACCOUNT: :ACCOUNT
|
|
1088
|
+
|
|
1089
|
+
def self?.values: -> ::Array[Lithic::Models::AuthRules::V2ListResultsResponse::CardTransactionUpdateResult::Action::CreateCaseAction::scope]
|
|
1090
|
+
end
|
|
1091
|
+
|
|
1092
|
+
type type_ = :CREATE_CASE
|
|
1093
|
+
|
|
1094
|
+
module Type
|
|
1095
|
+
extend Lithic::Internal::Type::Enum
|
|
1096
|
+
|
|
1097
|
+
CREATE_CASE: :CREATE_CASE
|
|
1098
|
+
|
|
1099
|
+
def self?.values: -> ::Array[Lithic::Models::AuthRules::V2ListResultsResponse::CardTransactionUpdateResult::Action::CreateCaseAction::type_]
|
|
1100
|
+
end
|
|
1101
|
+
end
|
|
1102
|
+
|
|
1103
|
+
def self?.variants: -> ::Array[Lithic::Models::AuthRules::V2ListResultsResponse::CardTransactionUpdateResult::action]
|
|
1104
|
+
end
|
|
1105
|
+
|
|
1106
|
+
type mode = :ACTIVE | :INACTIVE
|
|
1107
|
+
|
|
1108
|
+
module Mode
|
|
1109
|
+
extend Lithic::Internal::Type::Enum
|
|
1110
|
+
|
|
1111
|
+
ACTIVE: :ACTIVE
|
|
1112
|
+
INACTIVE: :INACTIVE
|
|
1113
|
+
|
|
1114
|
+
def self?.values: -> ::Array[Lithic::Models::AuthRules::V2ListResultsResponse::CardTransactionUpdateResult::mode]
|
|
1115
|
+
end
|
|
1116
|
+
end
|
|
1117
|
+
|
|
1118
|
+
type ach_payment_update_result =
|
|
1119
|
+
{
|
|
1120
|
+
token: String,
|
|
1121
|
+
actions: ::Array[Lithic::Models::AuthRules::V2ListResultsResponse::ACHPaymentUpdateResult::action],
|
|
1122
|
+
auth_rule_token: String,
|
|
1123
|
+
evaluation_time: Time,
|
|
1124
|
+
event_stream: :ACH_PAYMENT_UPDATE,
|
|
1125
|
+
event_token: String,
|
|
1126
|
+
mode: Lithic::Models::AuthRules::V2ListResultsResponse::ACHPaymentUpdateResult::mode,
|
|
1127
|
+
rule_version: Integer,
|
|
1128
|
+
transaction_token: String?
|
|
1129
|
+
}
|
|
1130
|
+
|
|
1131
|
+
class ACHPaymentUpdateResult < Lithic::Internal::Type::BaseModel
|
|
1132
|
+
attr_accessor token: String
|
|
1133
|
+
|
|
1134
|
+
attr_accessor actions: ::Array[Lithic::Models::AuthRules::V2ListResultsResponse::ACHPaymentUpdateResult::action]
|
|
1135
|
+
|
|
1136
|
+
attr_accessor auth_rule_token: String
|
|
1137
|
+
|
|
1138
|
+
attr_accessor evaluation_time: Time
|
|
1139
|
+
|
|
1140
|
+
attr_accessor event_stream: :ACH_PAYMENT_UPDATE
|
|
1141
|
+
|
|
1142
|
+
attr_accessor event_token: String
|
|
1143
|
+
|
|
1144
|
+
attr_accessor mode: Lithic::Models::AuthRules::V2ListResultsResponse::ACHPaymentUpdateResult::mode
|
|
1145
|
+
|
|
1146
|
+
attr_accessor rule_version: Integer
|
|
1147
|
+
|
|
1148
|
+
attr_accessor transaction_token: String?
|
|
1149
|
+
|
|
1150
|
+
def initialize: (
|
|
1151
|
+
token: String,
|
|
1152
|
+
actions: ::Array[Lithic::Models::AuthRules::V2ListResultsResponse::ACHPaymentUpdateResult::action],
|
|
1153
|
+
auth_rule_token: String,
|
|
1154
|
+
evaluation_time: Time,
|
|
1155
|
+
event_token: String,
|
|
1156
|
+
mode: Lithic::Models::AuthRules::V2ListResultsResponse::ACHPaymentUpdateResult::mode,
|
|
1157
|
+
rule_version: Integer,
|
|
1158
|
+
transaction_token: String?,
|
|
1159
|
+
?event_stream: :ACH_PAYMENT_UPDATE
|
|
1160
|
+
) -> void
|
|
1161
|
+
|
|
1162
|
+
def to_hash: -> {
|
|
1163
|
+
token: String,
|
|
1164
|
+
actions: ::Array[Lithic::Models::AuthRules::V2ListResultsResponse::ACHPaymentUpdateResult::action],
|
|
1165
|
+
auth_rule_token: String,
|
|
1166
|
+
evaluation_time: Time,
|
|
1167
|
+
event_stream: :ACH_PAYMENT_UPDATE,
|
|
1168
|
+
event_token: String,
|
|
1169
|
+
mode: Lithic::Models::AuthRules::V2ListResultsResponse::ACHPaymentUpdateResult::mode,
|
|
1170
|
+
rule_version: Integer,
|
|
1171
|
+
transaction_token: String?
|
|
1172
|
+
}
|
|
1173
|
+
|
|
1174
|
+
type action =
|
|
1175
|
+
Lithic::Models::AuthRules::V2ListResultsResponse::ACHPaymentUpdateResult::Action::TagAction
|
|
1176
|
+
| Lithic::Models::AuthRules::V2ListResultsResponse::ACHPaymentUpdateResult::Action::CreateCaseAction
|
|
1177
|
+
|
|
1178
|
+
module Action
|
|
1179
|
+
extend Lithic::Internal::Type::Union
|
|
1180
|
+
|
|
1181
|
+
type tag_action =
|
|
1182
|
+
{
|
|
1183
|
+
key: String,
|
|
1184
|
+
type: Lithic::Models::AuthRules::V2ListResultsResponse::ACHPaymentUpdateResult::Action::TagAction::type_,
|
|
1185
|
+
value: String,
|
|
1186
|
+
explanation: String
|
|
1187
|
+
}
|
|
1188
|
+
|
|
1189
|
+
class TagAction < Lithic::Internal::Type::BaseModel
|
|
1190
|
+
attr_accessor key: String
|
|
1191
|
+
|
|
1192
|
+
attr_accessor type: Lithic::Models::AuthRules::V2ListResultsResponse::ACHPaymentUpdateResult::Action::TagAction::type_
|
|
1193
|
+
|
|
1194
|
+
attr_accessor value: String
|
|
1195
|
+
|
|
1196
|
+
attr_reader explanation: String?
|
|
1197
|
+
|
|
1198
|
+
def explanation=: (String) -> String
|
|
1199
|
+
|
|
1200
|
+
def initialize: (
|
|
1201
|
+
key: String,
|
|
1202
|
+
type: Lithic::Models::AuthRules::V2ListResultsResponse::ACHPaymentUpdateResult::Action::TagAction::type_,
|
|
1203
|
+
value: String,
|
|
1204
|
+
?explanation: String
|
|
1205
|
+
) -> void
|
|
1206
|
+
|
|
1207
|
+
def to_hash: -> {
|
|
1208
|
+
key: String,
|
|
1209
|
+
type: Lithic::Models::AuthRules::V2ListResultsResponse::ACHPaymentUpdateResult::Action::TagAction::type_,
|
|
1210
|
+
value: String,
|
|
1211
|
+
explanation: String
|
|
1212
|
+
}
|
|
1213
|
+
|
|
1214
|
+
type type_ = :TAG
|
|
1215
|
+
|
|
1216
|
+
module Type
|
|
1217
|
+
extend Lithic::Internal::Type::Enum
|
|
1218
|
+
|
|
1219
|
+
TAG: :TAG
|
|
1220
|
+
|
|
1221
|
+
def self?.values: -> ::Array[Lithic::Models::AuthRules::V2ListResultsResponse::ACHPaymentUpdateResult::Action::TagAction::type_]
|
|
1222
|
+
end
|
|
1223
|
+
end
|
|
1224
|
+
|
|
1225
|
+
type create_case_action =
|
|
1226
|
+
{
|
|
1227
|
+
queue_token: String,
|
|
1228
|
+
scope: Lithic::Models::AuthRules::V2ListResultsResponse::ACHPaymentUpdateResult::Action::CreateCaseAction::scope,
|
|
1229
|
+
type: Lithic::Models::AuthRules::V2ListResultsResponse::ACHPaymentUpdateResult::Action::CreateCaseAction::type_,
|
|
1230
|
+
explanation: String
|
|
1231
|
+
}
|
|
1232
|
+
|
|
1233
|
+
class CreateCaseAction < Lithic::Internal::Type::BaseModel
|
|
1234
|
+
attr_accessor queue_token: String
|
|
1235
|
+
|
|
1236
|
+
attr_accessor scope: Lithic::Models::AuthRules::V2ListResultsResponse::ACHPaymentUpdateResult::Action::CreateCaseAction::scope
|
|
1237
|
+
|
|
1238
|
+
attr_accessor type: Lithic::Models::AuthRules::V2ListResultsResponse::ACHPaymentUpdateResult::Action::CreateCaseAction::type_
|
|
1239
|
+
|
|
1240
|
+
attr_reader explanation: String?
|
|
1241
|
+
|
|
1242
|
+
def explanation=: (String) -> String
|
|
1243
|
+
|
|
1244
|
+
def initialize: (
|
|
1245
|
+
queue_token: String,
|
|
1246
|
+
scope: Lithic::Models::AuthRules::V2ListResultsResponse::ACHPaymentUpdateResult::Action::CreateCaseAction::scope,
|
|
1247
|
+
type: Lithic::Models::AuthRules::V2ListResultsResponse::ACHPaymentUpdateResult::Action::CreateCaseAction::type_,
|
|
1248
|
+
?explanation: String
|
|
1249
|
+
) -> void
|
|
1250
|
+
|
|
1251
|
+
def to_hash: -> {
|
|
1252
|
+
queue_token: String,
|
|
1253
|
+
scope: Lithic::Models::AuthRules::V2ListResultsResponse::ACHPaymentUpdateResult::Action::CreateCaseAction::scope,
|
|
1254
|
+
type: Lithic::Models::AuthRules::V2ListResultsResponse::ACHPaymentUpdateResult::Action::CreateCaseAction::type_,
|
|
1255
|
+
explanation: String
|
|
1256
|
+
}
|
|
1257
|
+
|
|
1258
|
+
type scope = :FINANCIAL_ACCOUNT
|
|
1259
|
+
|
|
1260
|
+
module Scope
|
|
1261
|
+
extend Lithic::Internal::Type::Enum
|
|
1262
|
+
|
|
1263
|
+
FINANCIAL_ACCOUNT: :FINANCIAL_ACCOUNT
|
|
1264
|
+
|
|
1265
|
+
def self?.values: -> ::Array[Lithic::Models::AuthRules::V2ListResultsResponse::ACHPaymentUpdateResult::Action::CreateCaseAction::scope]
|
|
1266
|
+
end
|
|
1267
|
+
|
|
1268
|
+
type type_ = :CREATE_CASE
|
|
1269
|
+
|
|
1270
|
+
module Type
|
|
1271
|
+
extend Lithic::Internal::Type::Enum
|
|
1272
|
+
|
|
1273
|
+
CREATE_CASE: :CREATE_CASE
|
|
1274
|
+
|
|
1275
|
+
def self?.values: -> ::Array[Lithic::Models::AuthRules::V2ListResultsResponse::ACHPaymentUpdateResult::Action::CreateCaseAction::type_]
|
|
1276
|
+
end
|
|
1277
|
+
end
|
|
1278
|
+
|
|
1279
|
+
def self?.variants: -> ::Array[Lithic::Models::AuthRules::V2ListResultsResponse::ACHPaymentUpdateResult::action]
|
|
1280
|
+
end
|
|
1281
|
+
|
|
1282
|
+
type mode = :ACTIVE | :INACTIVE
|
|
1283
|
+
|
|
1284
|
+
module Mode
|
|
1285
|
+
extend Lithic::Internal::Type::Enum
|
|
1286
|
+
|
|
1287
|
+
ACTIVE: :ACTIVE
|
|
1288
|
+
INACTIVE: :INACTIVE
|
|
1289
|
+
|
|
1290
|
+
def self?.values: -> ::Array[Lithic::Models::AuthRules::V2ListResultsResponse::ACHPaymentUpdateResult::mode]
|
|
1291
|
+
end
|
|
1292
|
+
end
|
|
1293
|
+
|
|
939
1294
|
def self?.variants: -> ::Array[Lithic::Models::AuthRules::v2_list_results_response]
|
|
940
1295
|
end
|
|
941
1296
|
end
|
|
@@ -15,6 +15,7 @@ module Lithic
|
|
|
15
15
|
merchant: Lithic::CardAuthorization::Merchant,
|
|
16
16
|
merchant_amount: Integer,
|
|
17
17
|
merchant_currency: String,
|
|
18
|
+
name_validation: Lithic::CardAuthorization::NameValidation?,
|
|
18
19
|
service_location: Lithic::CardAuthorization::ServiceLocation?,
|
|
19
20
|
settled_amount: Integer,
|
|
20
21
|
status: Lithic::Models::CardAuthorization::status,
|
|
@@ -61,6 +62,8 @@ module Lithic
|
|
|
61
62
|
|
|
62
63
|
attr_accessor merchant_currency: String
|
|
63
64
|
|
|
65
|
+
attr_accessor name_validation: Lithic::CardAuthorization::NameValidation?
|
|
66
|
+
|
|
64
67
|
attr_accessor service_location: Lithic::CardAuthorization::ServiceLocation?
|
|
65
68
|
|
|
66
69
|
attr_accessor settled_amount: Integer
|
|
@@ -137,6 +140,7 @@ module Lithic
|
|
|
137
140
|
merchant: Lithic::CardAuthorization::Merchant,
|
|
138
141
|
merchant_amount: Integer,
|
|
139
142
|
merchant_currency: String,
|
|
143
|
+
name_validation: Lithic::CardAuthorization::NameValidation?,
|
|
140
144
|
service_location: Lithic::CardAuthorization::ServiceLocation?,
|
|
141
145
|
settled_amount: Integer,
|
|
142
146
|
status: Lithic::Models::CardAuthorization::status,
|
|
@@ -170,6 +174,7 @@ module Lithic
|
|
|
170
174
|
merchant: Lithic::CardAuthorization::Merchant,
|
|
171
175
|
merchant_amount: Integer,
|
|
172
176
|
merchant_currency: String,
|
|
177
|
+
name_validation: Lithic::CardAuthorization::NameValidation?,
|
|
173
178
|
service_location: Lithic::CardAuthorization::ServiceLocation?,
|
|
174
179
|
settled_amount: Integer,
|
|
175
180
|
status: Lithic::Models::CardAuthorization::status,
|
|
@@ -452,6 +457,72 @@ module Lithic
|
|
|
452
457
|
}
|
|
453
458
|
end
|
|
454
459
|
|
|
460
|
+
type name_validation =
|
|
461
|
+
{
|
|
462
|
+
name: Lithic::CardAuthorization::NameValidation::Name,
|
|
463
|
+
name_on_file_match: Lithic::CardAuthorization::NameValidation::NameOnFileMatch
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
class NameValidation < Lithic::Internal::Type::BaseModel
|
|
467
|
+
attr_accessor name: Lithic::CardAuthorization::NameValidation::Name
|
|
468
|
+
|
|
469
|
+
attr_accessor name_on_file_match: Lithic::CardAuthorization::NameValidation::NameOnFileMatch
|
|
470
|
+
|
|
471
|
+
def initialize: (
|
|
472
|
+
name: Lithic::CardAuthorization::NameValidation::Name,
|
|
473
|
+
name_on_file_match: Lithic::CardAuthorization::NameValidation::NameOnFileMatch
|
|
474
|
+
) -> void
|
|
475
|
+
|
|
476
|
+
def to_hash: -> {
|
|
477
|
+
name: Lithic::CardAuthorization::NameValidation::Name,
|
|
478
|
+
name_on_file_match: Lithic::CardAuthorization::NameValidation::NameOnFileMatch
|
|
479
|
+
}
|
|
480
|
+
|
|
481
|
+
type name_ = { first: String, last: String, middle: String? }
|
|
482
|
+
|
|
483
|
+
class Name < Lithic::Internal::Type::BaseModel
|
|
484
|
+
attr_accessor first: String
|
|
485
|
+
|
|
486
|
+
attr_accessor last: String
|
|
487
|
+
|
|
488
|
+
attr_accessor middle: String?
|
|
489
|
+
|
|
490
|
+
def initialize: (first: String, last: String, middle: String?) -> void
|
|
491
|
+
|
|
492
|
+
def to_hash: -> { first: String, last: String, middle: String? }
|
|
493
|
+
end
|
|
494
|
+
|
|
495
|
+
type name_on_file_match =
|
|
496
|
+
{
|
|
497
|
+
full_name: Lithic::Models::CardAuthorization::NameValidation::NameOnFileMatch::full_name
|
|
498
|
+
}
|
|
499
|
+
|
|
500
|
+
class NameOnFileMatch < Lithic::Internal::Type::BaseModel
|
|
501
|
+
attr_accessor full_name: Lithic::Models::CardAuthorization::NameValidation::NameOnFileMatch::full_name
|
|
502
|
+
|
|
503
|
+
def initialize: (
|
|
504
|
+
full_name: Lithic::Models::CardAuthorization::NameValidation::NameOnFileMatch::full_name
|
|
505
|
+
) -> void
|
|
506
|
+
|
|
507
|
+
def to_hash: -> {
|
|
508
|
+
full_name: Lithic::Models::CardAuthorization::NameValidation::NameOnFileMatch::full_name
|
|
509
|
+
}
|
|
510
|
+
|
|
511
|
+
type full_name = :MATCH | :PARTIAL_MATCH | :NO_MATCH | :UNVERIFIED
|
|
512
|
+
|
|
513
|
+
module FullName
|
|
514
|
+
extend Lithic::Internal::Type::Enum
|
|
515
|
+
|
|
516
|
+
MATCH: :MATCH
|
|
517
|
+
PARTIAL_MATCH: :PARTIAL_MATCH
|
|
518
|
+
NO_MATCH: :NO_MATCH
|
|
519
|
+
UNVERIFIED: :UNVERIFIED
|
|
520
|
+
|
|
521
|
+
def self?.values: -> ::Array[Lithic::Models::CardAuthorization::NameValidation::NameOnFileMatch::full_name]
|
|
522
|
+
end
|
|
523
|
+
end
|
|
524
|
+
end
|
|
525
|
+
|
|
455
526
|
type service_location =
|
|
456
527
|
{
|
|
457
528
|
city: String?,
|
|
@@ -588,35 +659,38 @@ module Lithic
|
|
|
588
659
|
|
|
589
660
|
type latest_challenge =
|
|
590
661
|
{
|
|
662
|
+
completed_at: Time?,
|
|
663
|
+
created: Time,
|
|
591
664
|
method_: Lithic::Models::CardAuthorization::LatestChallenge::method_,
|
|
592
665
|
phone_number: String?,
|
|
593
|
-
status: Lithic::Models::CardAuthorization::LatestChallenge::status
|
|
594
|
-
completed_at: Time
|
|
666
|
+
status: Lithic::Models::CardAuthorization::LatestChallenge::status
|
|
595
667
|
}
|
|
596
668
|
|
|
597
669
|
class LatestChallenge < Lithic::Internal::Type::BaseModel
|
|
670
|
+
attr_accessor completed_at: Time?
|
|
671
|
+
|
|
672
|
+
attr_accessor created: Time
|
|
673
|
+
|
|
598
674
|
attr_accessor method_: Lithic::Models::CardAuthorization::LatestChallenge::method_
|
|
599
675
|
|
|
600
676
|
attr_accessor phone_number: String?
|
|
601
677
|
|
|
602
678
|
attr_accessor status: Lithic::Models::CardAuthorization::LatestChallenge::status
|
|
603
679
|
|
|
604
|
-
attr_reader completed_at: Time?
|
|
605
|
-
|
|
606
|
-
def completed_at=: (Time) -> Time
|
|
607
|
-
|
|
608
680
|
def initialize: (
|
|
681
|
+
completed_at: Time?,
|
|
682
|
+
created: Time,
|
|
609
683
|
method_: Lithic::Models::CardAuthorization::LatestChallenge::method_,
|
|
610
684
|
phone_number: String?,
|
|
611
|
-
status: Lithic::Models::CardAuthorization::LatestChallenge::status
|
|
612
|
-
?completed_at: Time
|
|
685
|
+
status: Lithic::Models::CardAuthorization::LatestChallenge::status
|
|
613
686
|
) -> void
|
|
614
687
|
|
|
615
688
|
def to_hash: -> {
|
|
689
|
+
completed_at: Time?,
|
|
690
|
+
created: Time,
|
|
616
691
|
method_: Lithic::Models::CardAuthorization::LatestChallenge::method_,
|
|
617
692
|
phone_number: String?,
|
|
618
|
-
status: Lithic::Models::CardAuthorization::LatestChallenge::status
|
|
619
|
-
completed_at: Time
|
|
693
|
+
status: Lithic::Models::CardAuthorization::LatestChallenge::status
|
|
620
694
|
}
|
|
621
695
|
|
|
622
696
|
type method_ = :SMS | :OUT_OF_BAND
|
|
@@ -24,6 +24,7 @@ module Lithic
|
|
|
24
24
|
updated: Time,
|
|
25
25
|
version: Integer,
|
|
26
26
|
ytd_totals: Lithic::StatementTotals,
|
|
27
|
+
day_of_period: Integer?,
|
|
27
28
|
tier: String?
|
|
28
29
|
}
|
|
29
30
|
|
|
@@ -70,6 +71,8 @@ module Lithic
|
|
|
70
71
|
|
|
71
72
|
attr_accessor ytd_totals: Lithic::StatementTotals
|
|
72
73
|
|
|
74
|
+
attr_accessor day_of_period: Integer?
|
|
75
|
+
|
|
73
76
|
attr_accessor tier: String?
|
|
74
77
|
|
|
75
78
|
def initialize: (
|
|
@@ -94,6 +97,7 @@ module Lithic
|
|
|
94
97
|
updated: Time,
|
|
95
98
|
version: Integer,
|
|
96
99
|
ytd_totals: Lithic::StatementTotals,
|
|
100
|
+
?day_of_period: Integer?,
|
|
97
101
|
?tier: String?
|
|
98
102
|
) -> void
|
|
99
103
|
|
|
@@ -119,6 +123,7 @@ module Lithic
|
|
|
119
123
|
updated: Time,
|
|
120
124
|
version: Integer,
|
|
121
125
|
ytd_totals: Lithic::StatementTotals,
|
|
126
|
+
day_of_period: Integer?,
|
|
122
127
|
tier: String?
|
|
123
128
|
}
|
|
124
129
|
|
|
@@ -22,6 +22,7 @@ module Lithic
|
|
|
22
22
|
currency: String,
|
|
23
23
|
expected_release_date: Date?,
|
|
24
24
|
external_bank_account_token: String?,
|
|
25
|
+
tags: ::Hash[Symbol, String],
|
|
25
26
|
type: Lithic::Models::Payment::type_,
|
|
26
27
|
user_defined_id: String?
|
|
27
28
|
}
|
|
@@ -69,6 +70,10 @@ module Lithic
|
|
|
69
70
|
|
|
70
71
|
attr_accessor external_bank_account_token: String?
|
|
71
72
|
|
|
73
|
+
attr_reader tags: ::Hash[Symbol, String]?
|
|
74
|
+
|
|
75
|
+
def tags=: (::Hash[Symbol, String]) -> ::Hash[Symbol, String]
|
|
76
|
+
|
|
72
77
|
attr_reader type: Lithic::Models::Payment::type_?
|
|
73
78
|
|
|
74
79
|
def type=: (
|
|
@@ -97,6 +102,7 @@ module Lithic
|
|
|
97
102
|
?currency: String,
|
|
98
103
|
?expected_release_date: Date?,
|
|
99
104
|
?external_bank_account_token: String?,
|
|
105
|
+
?tags: ::Hash[Symbol, String],
|
|
100
106
|
?type: Lithic::Models::Payment::type_,
|
|
101
107
|
?user_defined_id: String?,
|
|
102
108
|
?family: :PAYMENT
|
|
@@ -123,6 +129,7 @@ module Lithic
|
|
|
123
129
|
currency: String,
|
|
124
130
|
expected_release_date: Date?,
|
|
125
131
|
external_bank_account_token: String?,
|
|
132
|
+
tags: ::Hash[Symbol, String],
|
|
126
133
|
type: Lithic::Models::Payment::type_,
|
|
127
134
|
user_defined_id: String?
|
|
128
135
|
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
module Lithic
|
|
2
|
+
module Models
|
|
3
|
+
module TransactionMonitoring
|
|
4
|
+
type case_activity_entry =
|
|
5
|
+
{
|
|
6
|
+
token: String,
|
|
7
|
+
actor_token: String?,
|
|
8
|
+
created: Time,
|
|
9
|
+
entry_type: Lithic::Models::TransactionMonitoring::case_activity_type,
|
|
10
|
+
new_value: String?,
|
|
11
|
+
previous_value: String?
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
class CaseActivityEntry < Lithic::Internal::Type::BaseModel
|
|
15
|
+
attr_accessor token: String
|
|
16
|
+
|
|
17
|
+
attr_accessor actor_token: String?
|
|
18
|
+
|
|
19
|
+
attr_accessor created: Time
|
|
20
|
+
|
|
21
|
+
attr_accessor entry_type: Lithic::Models::TransactionMonitoring::case_activity_type
|
|
22
|
+
|
|
23
|
+
attr_accessor new_value: String?
|
|
24
|
+
|
|
25
|
+
attr_accessor previous_value: String?
|
|
26
|
+
|
|
27
|
+
def initialize: (
|
|
28
|
+
token: String,
|
|
29
|
+
actor_token: String?,
|
|
30
|
+
created: Time,
|
|
31
|
+
entry_type: Lithic::Models::TransactionMonitoring::case_activity_type,
|
|
32
|
+
new_value: String?,
|
|
33
|
+
previous_value: String?
|
|
34
|
+
) -> void
|
|
35
|
+
|
|
36
|
+
def to_hash: -> {
|
|
37
|
+
token: String,
|
|
38
|
+
actor_token: String?,
|
|
39
|
+
created: Time,
|
|
40
|
+
entry_type: Lithic::Models::TransactionMonitoring::case_activity_type,
|
|
41
|
+
new_value: String?,
|
|
42
|
+
previous_value: String?
|
|
43
|
+
}
|
|
44
|
+
end
|
|
45
|
+
end
|
|
46
|
+
end
|
|
47
|
+
end
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
module Lithic
|
|
2
|
+
module Models
|
|
3
|
+
module TransactionMonitoring
|
|
4
|
+
type case_activity_type =
|
|
5
|
+
:STATUS
|
|
6
|
+
| :TITLE
|
|
7
|
+
| :ASSIGNED_TO
|
|
8
|
+
| :RESOLUTION_OUTCOME
|
|
9
|
+
| :RESOLUTION_NOTES
|
|
10
|
+
| :TAGS
|
|
11
|
+
| :PRIORITY
|
|
12
|
+
| :COMMENT
|
|
13
|
+
| :FILE
|
|
14
|
+
|
|
15
|
+
module CaseActivityType
|
|
16
|
+
extend Lithic::Internal::Type::Enum
|
|
17
|
+
|
|
18
|
+
STATUS: :STATUS
|
|
19
|
+
TITLE: :TITLE
|
|
20
|
+
ASSIGNED_TO: :ASSIGNED_TO
|
|
21
|
+
RESOLUTION_OUTCOME: :RESOLUTION_OUTCOME
|
|
22
|
+
RESOLUTION_NOTES: :RESOLUTION_NOTES
|
|
23
|
+
TAGS: :TAGS
|
|
24
|
+
PRIORITY: :PRIORITY
|
|
25
|
+
COMMENT: :COMMENT
|
|
26
|
+
FILE: :FILE
|
|
27
|
+
|
|
28
|
+
def self?.values: -> ::Array[Lithic::Models::TransactionMonitoring::case_activity_type]
|
|
29
|
+
end
|
|
30
|
+
end
|
|
31
|
+
end
|
|
32
|
+
end
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
module Lithic
|
|
2
|
+
module Models
|
|
3
|
+
module TransactionMonitoring
|
|
4
|
+
type case_card =
|
|
5
|
+
{
|
|
6
|
+
account_token: String,
|
|
7
|
+
card_token: String,
|
|
8
|
+
transaction_count: Integer
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
class CaseCard < Lithic::Internal::Type::BaseModel
|
|
12
|
+
attr_accessor account_token: String
|
|
13
|
+
|
|
14
|
+
attr_accessor card_token: String
|
|
15
|
+
|
|
16
|
+
attr_accessor transaction_count: Integer
|
|
17
|
+
|
|
18
|
+
def initialize: (
|
|
19
|
+
account_token: String,
|
|
20
|
+
card_token: String,
|
|
21
|
+
transaction_count: Integer
|
|
22
|
+
) -> void
|
|
23
|
+
|
|
24
|
+
def to_hash: -> {
|
|
25
|
+
account_token: String,
|
|
26
|
+
card_token: String,
|
|
27
|
+
transaction_count: Integer
|
|
28
|
+
}
|
|
29
|
+
end
|
|
30
|
+
end
|
|
31
|
+
end
|
|
32
|
+
end
|