lithic 0.10.0 → 0.11.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 +39 -0
- data/README.md +1 -1
- data/lib/lithic/internal/util.rb +22 -7
- data/lib/lithic/models/auth_rules/backtest_stats.rb +9 -1
- data/lib/lithic/models/auth_rules/conditional_authorization_action_parameters.rb +15 -0
- data/lib/lithic/models/auth_rules/report_stats.rb +46 -81
- data/lib/lithic/models/auth_rules/v2_list_results_response.rb +36 -4
- data/lib/lithic/models/auth_rules/v2_retrieve_report_response.rb +4 -531
- data/lib/lithic/models/card_authorization_approval_request_webhook_event.rb +17 -26
- data/lib/lithic/models/card_bulk_order.rb +8 -3
- data/lib/lithic/models/card_bulk_order_create_params.rb +8 -3
- data/lib/lithic/models/card_convert_physical_params.rb +5 -3
- data/lib/lithic/models/card_create_params.rb +5 -3
- data/lib/lithic/models/card_reissue_params.rb +5 -3
- data/lib/lithic/models/card_renew_params.rb +5 -3
- data/lib/lithic/models/financial_account.rb +1 -0
- data/lib/lithic/models/financial_account_update_status_params.rb +1 -0
- data/lib/lithic/models/financial_accounts/statement.rb +11 -4
- data/lib/lithic/models/instance_financial_account_type.rb +1 -0
- data/lib/lithic/models/payment_create_params.rb +13 -1
- data/lib/lithic/resources/card_bulk_orders.rb +10 -11
- data/lib/lithic/version.rb +1 -1
- data/rbi/lithic/internal/util.rbi +8 -0
- data/rbi/lithic/models/auth_rules/backtest_stats.rbi +11 -3
- data/rbi/lithic/models/auth_rules/conditional_authorization_action_parameters.rbi +33 -0
- data/rbi/lithic/models/auth_rules/report_stats.rbi +73 -177
- data/rbi/lithic/models/auth_rules/v2_list_results_response.rbi +38 -6
- data/rbi/lithic/models/auth_rules/v2_retrieve_report_response.rbi +3 -1721
- data/rbi/lithic/models/card_authorization_approval_request_webhook_event.rbi +23 -78
- data/rbi/lithic/models/card_bulk_order.rbi +21 -3
- data/rbi/lithic/models/card_bulk_order_create_params.rbi +21 -3
- data/rbi/lithic/models/card_convert_physical_params.rbi +8 -5
- data/rbi/lithic/models/card_create_params.rbi +8 -8
- data/rbi/lithic/models/card_reissue_params.rbi +8 -8
- data/rbi/lithic/models/card_renew_params.rbi +8 -8
- data/rbi/lithic/models/financial_account.rbi +5 -0
- data/rbi/lithic/models/financial_account_update_status_params.rbi +5 -0
- data/rbi/lithic/models/financial_accounts/statement.rbi +15 -6
- data/rbi/lithic/models/instance_financial_account_type.rbi +5 -0
- data/rbi/lithic/models/payment_create_params.rbi +13 -3
- data/rbi/lithic/resources/card_bulk_orders.rbi +11 -11
- data/rbi/lithic/resources/cards.rbi +8 -4
- data/sig/lithic/internal/util.rbs +4 -0
- data/sig/lithic/models/auth_rules/backtest_stats.rbs +8 -3
- data/sig/lithic/models/auth_rules/conditional_authorization_action_parameters.rbs +6 -0
- data/sig/lithic/models/auth_rules/report_stats.rbs +34 -70
- data/sig/lithic/models/auth_rules/v2_list_results_response.rbs +29 -9
- data/sig/lithic/models/auth_rules/v2_retrieve_report_response.rbs +4 -667
- data/sig/lithic/models/card_authorization_approval_request_webhook_event.rbs +14 -41
- data/sig/lithic/models/card_bulk_order.rbs +5 -1
- data/sig/lithic/models/card_bulk_order_create_params.rbs +5 -1
- data/sig/lithic/models/card_convert_physical_params.rbs +2 -2
- data/sig/lithic/models/card_create_params.rbs +2 -2
- data/sig/lithic/models/card_reissue_params.rbs +2 -2
- data/sig/lithic/models/card_renew_params.rbs +2 -2
- data/sig/lithic/models/financial_account.rbs +2 -0
- data/sig/lithic/models/financial_account_update_status_params.rbs +2 -0
- data/sig/lithic/models/financial_accounts/statement.rbs +16 -7
- data/sig/lithic/models/instance_financial_account_type.rbs +2 -0
- data/sig/lithic/models/payment_create_params.rbs +8 -3
- metadata +2 -2
|
@@ -33,685 +33,22 @@ module Lithic
|
|
|
33
33
|
}
|
|
34
34
|
|
|
35
35
|
type daily_statistic =
|
|
36
|
-
{
|
|
37
|
-
current_version_statistics: Lithic::AuthRules::ReportStats?,
|
|
38
|
-
date: Date,
|
|
39
|
-
draft_version_statistics: Lithic::AuthRules::ReportStats?,
|
|
40
|
-
versions: ::Array[Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version]
|
|
41
|
-
}
|
|
36
|
+
{ date: Date, versions: ::Array[Lithic::AuthRules::ReportStats] }
|
|
42
37
|
|
|
43
38
|
class DailyStatistic < Lithic::Internal::Type::BaseModel
|
|
44
|
-
attr_accessor current_version_statistics: Lithic::AuthRules::ReportStats?
|
|
45
|
-
|
|
46
39
|
attr_accessor date: Date
|
|
47
40
|
|
|
48
|
-
attr_accessor
|
|
49
|
-
|
|
50
|
-
attr_accessor versions: ::Array[Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version]
|
|
41
|
+
attr_accessor versions: ::Array[Lithic::AuthRules::ReportStats]
|
|
51
42
|
|
|
52
43
|
def initialize: (
|
|
53
|
-
current_version_statistics: Lithic::AuthRules::ReportStats?,
|
|
54
44
|
date: Date,
|
|
55
|
-
|
|
56
|
-
versions: ::Array[Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version]
|
|
45
|
+
versions: ::Array[Lithic::AuthRules::ReportStats]
|
|
57
46
|
) -> void
|
|
58
47
|
|
|
59
48
|
def to_hash: -> {
|
|
60
|
-
current_version_statistics: Lithic::AuthRules::ReportStats?,
|
|
61
49
|
date: Date,
|
|
62
|
-
|
|
63
|
-
versions: ::Array[Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version]
|
|
50
|
+
versions: ::Array[Lithic::AuthRules::ReportStats]
|
|
64
51
|
}
|
|
65
|
-
|
|
66
|
-
type version =
|
|
67
|
-
{
|
|
68
|
-
action_counts: ::Hash[Symbol, Integer],
|
|
69
|
-
examples: ::Array[Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example],
|
|
70
|
-
state: Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::state,
|
|
71
|
-
version: Integer
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
class Version < Lithic::Internal::Type::BaseModel
|
|
75
|
-
attr_accessor action_counts: ::Hash[Symbol, Integer]
|
|
76
|
-
|
|
77
|
-
attr_accessor examples: ::Array[Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example]
|
|
78
|
-
|
|
79
|
-
attr_accessor state: Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::state
|
|
80
|
-
|
|
81
|
-
attr_accessor version: Integer
|
|
82
|
-
|
|
83
|
-
def initialize: (
|
|
84
|
-
action_counts: ::Hash[Symbol, Integer],
|
|
85
|
-
examples: ::Array[Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example],
|
|
86
|
-
state: Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::state,
|
|
87
|
-
version: Integer
|
|
88
|
-
) -> void
|
|
89
|
-
|
|
90
|
-
def to_hash: -> {
|
|
91
|
-
action_counts: ::Hash[Symbol, Integer],
|
|
92
|
-
examples: ::Array[Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example],
|
|
93
|
-
state: Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::state,
|
|
94
|
-
version: Integer
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
type example =
|
|
98
|
-
{
|
|
99
|
-
actions: ::Array[Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::action],
|
|
100
|
-
event_token: String,
|
|
101
|
-
timestamp: Time
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
class Example < Lithic::Internal::Type::BaseModel
|
|
105
|
-
attr_accessor actions: ::Array[Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::action]
|
|
106
|
-
|
|
107
|
-
attr_accessor event_token: String
|
|
108
|
-
|
|
109
|
-
attr_accessor timestamp: Time
|
|
110
|
-
|
|
111
|
-
def initialize: (
|
|
112
|
-
actions: ::Array[Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::action],
|
|
113
|
-
event_token: String,
|
|
114
|
-
timestamp: Time
|
|
115
|
-
) -> void
|
|
116
|
-
|
|
117
|
-
def to_hash: -> {
|
|
118
|
-
actions: ::Array[Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::action],
|
|
119
|
-
event_token: String,
|
|
120
|
-
timestamp: Time
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
type action =
|
|
124
|
-
Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::DeclineActionAuthorization
|
|
125
|
-
| Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::ChallengeActionAuthorization
|
|
126
|
-
| Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::ResultAuthentication3DSAction
|
|
127
|
-
| Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::DeclineActionTokenization
|
|
128
|
-
| Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::RequireTfaAction
|
|
129
|
-
| Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::ApproveActionACH
|
|
130
|
-
| Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::ReturnAction
|
|
131
|
-
|
|
132
|
-
module Action
|
|
133
|
-
extend Lithic::Internal::Type::Union
|
|
134
|
-
|
|
135
|
-
type decline_action_authorization =
|
|
136
|
-
{
|
|
137
|
-
code: Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::DeclineActionAuthorization::code,
|
|
138
|
-
type: Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::DeclineActionAuthorization::type_
|
|
139
|
-
}
|
|
140
|
-
|
|
141
|
-
class DeclineActionAuthorization < Lithic::Internal::Type::BaseModel
|
|
142
|
-
attr_accessor code: Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::DeclineActionAuthorization::code
|
|
143
|
-
|
|
144
|
-
attr_accessor type: Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::DeclineActionAuthorization::type_
|
|
145
|
-
|
|
146
|
-
def initialize: (
|
|
147
|
-
code: Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::DeclineActionAuthorization::code,
|
|
148
|
-
type: Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::DeclineActionAuthorization::type_
|
|
149
|
-
) -> void
|
|
150
|
-
|
|
151
|
-
def to_hash: -> {
|
|
152
|
-
code: Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::DeclineActionAuthorization::code,
|
|
153
|
-
type: Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::DeclineActionAuthorization::type_
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
type code =
|
|
157
|
-
:ACCOUNT_DAILY_SPEND_LIMIT_EXCEEDED
|
|
158
|
-
| :ACCOUNT_DELINQUENT
|
|
159
|
-
| :ACCOUNT_INACTIVE
|
|
160
|
-
| :ACCOUNT_LIFETIME_SPEND_LIMIT_EXCEEDED
|
|
161
|
-
| :ACCOUNT_MONTHLY_SPEND_LIMIT_EXCEEDED
|
|
162
|
-
| :ACCOUNT_PAUSED
|
|
163
|
-
| :ACCOUNT_UNDER_REVIEW
|
|
164
|
-
| :ADDRESS_INCORRECT
|
|
165
|
-
| :APPROVED
|
|
166
|
-
| :AUTH_RULE_ALLOWED_COUNTRY
|
|
167
|
-
| :AUTH_RULE_ALLOWED_MCC
|
|
168
|
-
| :AUTH_RULE_BLOCKED_COUNTRY
|
|
169
|
-
| :AUTH_RULE_BLOCKED_MCC
|
|
170
|
-
| :AUTH_RULE
|
|
171
|
-
| :CARD_CLOSED
|
|
172
|
-
| :CARD_CRYPTOGRAM_VALIDATION_FAILURE
|
|
173
|
-
| :CARD_EXPIRED
|
|
174
|
-
| :CARD_EXPIRY_DATE_INCORRECT
|
|
175
|
-
| :CARD_INVALID
|
|
176
|
-
| :CARD_NOT_ACTIVATED
|
|
177
|
-
| :CARD_PAUSED
|
|
178
|
-
| :CARD_PIN_INCORRECT
|
|
179
|
-
| :CARD_RESTRICTED
|
|
180
|
-
| :CARD_SECURITY_CODE_INCORRECT
|
|
181
|
-
| :CARD_SPEND_LIMIT_EXCEEDED
|
|
182
|
-
| :CONTACT_CARD_ISSUER
|
|
183
|
-
| :CUSTOMER_ASA_TIMEOUT
|
|
184
|
-
| :CUSTOM_ASA_RESULT
|
|
185
|
-
| :DECLINED
|
|
186
|
-
| :DO_NOT_HONOR
|
|
187
|
-
| :DRIVER_NUMBER_INVALID
|
|
188
|
-
| :FORMAT_ERROR
|
|
189
|
-
| :INSUFFICIENT_FUNDING_SOURCE_BALANCE
|
|
190
|
-
| :INSUFFICIENT_FUNDS
|
|
191
|
-
| :LITHIC_SYSTEM_ERROR
|
|
192
|
-
| :LITHIC_SYSTEM_RATE_LIMIT
|
|
193
|
-
| :MALFORMED_ASA_RESPONSE
|
|
194
|
-
| :MERCHANT_INVALID
|
|
195
|
-
| :MERCHANT_LOCKED_CARD_ATTEMPTED_ELSEWHERE
|
|
196
|
-
| :MERCHANT_NOT_PERMITTED
|
|
197
|
-
| :OVER_REVERSAL_ATTEMPTED
|
|
198
|
-
| :PIN_BLOCKED
|
|
199
|
-
| :PROGRAM_CARD_SPEND_LIMIT_EXCEEDED
|
|
200
|
-
| :PROGRAM_SUSPENDED
|
|
201
|
-
| :PROGRAM_USAGE_RESTRICTION
|
|
202
|
-
| :REVERSAL_UNMATCHED
|
|
203
|
-
| :SECURITY_VIOLATION
|
|
204
|
-
| :SINGLE_USE_CARD_REATTEMPTED
|
|
205
|
-
| :SUSPECTED_FRAUD
|
|
206
|
-
| :TRANSACTION_INVALID
|
|
207
|
-
| :TRANSACTION_NOT_PERMITTED_TO_ACQUIRER_OR_TERMINAL
|
|
208
|
-
| :TRANSACTION_NOT_PERMITTED_TO_ISSUER_OR_CARDHOLDER
|
|
209
|
-
| :TRANSACTION_PREVIOUSLY_COMPLETED
|
|
210
|
-
| :UNAUTHORIZED_MERCHANT
|
|
211
|
-
| :VEHICLE_NUMBER_INVALID
|
|
212
|
-
| :CARDHOLDER_CHALLENGED
|
|
213
|
-
| :CARDHOLDER_CHALLENGE_FAILED
|
|
214
|
-
|
|
215
|
-
module Code
|
|
216
|
-
extend Lithic::Internal::Type::Enum
|
|
217
|
-
|
|
218
|
-
ACCOUNT_DAILY_SPEND_LIMIT_EXCEEDED: :ACCOUNT_DAILY_SPEND_LIMIT_EXCEEDED
|
|
219
|
-
ACCOUNT_DELINQUENT: :ACCOUNT_DELINQUENT
|
|
220
|
-
ACCOUNT_INACTIVE: :ACCOUNT_INACTIVE
|
|
221
|
-
ACCOUNT_LIFETIME_SPEND_LIMIT_EXCEEDED: :ACCOUNT_LIFETIME_SPEND_LIMIT_EXCEEDED
|
|
222
|
-
ACCOUNT_MONTHLY_SPEND_LIMIT_EXCEEDED: :ACCOUNT_MONTHLY_SPEND_LIMIT_EXCEEDED
|
|
223
|
-
ACCOUNT_PAUSED: :ACCOUNT_PAUSED
|
|
224
|
-
ACCOUNT_UNDER_REVIEW: :ACCOUNT_UNDER_REVIEW
|
|
225
|
-
ADDRESS_INCORRECT: :ADDRESS_INCORRECT
|
|
226
|
-
APPROVED: :APPROVED
|
|
227
|
-
AUTH_RULE_ALLOWED_COUNTRY: :AUTH_RULE_ALLOWED_COUNTRY
|
|
228
|
-
AUTH_RULE_ALLOWED_MCC: :AUTH_RULE_ALLOWED_MCC
|
|
229
|
-
AUTH_RULE_BLOCKED_COUNTRY: :AUTH_RULE_BLOCKED_COUNTRY
|
|
230
|
-
AUTH_RULE_BLOCKED_MCC: :AUTH_RULE_BLOCKED_MCC
|
|
231
|
-
AUTH_RULE: :AUTH_RULE
|
|
232
|
-
CARD_CLOSED: :CARD_CLOSED
|
|
233
|
-
CARD_CRYPTOGRAM_VALIDATION_FAILURE: :CARD_CRYPTOGRAM_VALIDATION_FAILURE
|
|
234
|
-
CARD_EXPIRED: :CARD_EXPIRED
|
|
235
|
-
CARD_EXPIRY_DATE_INCORRECT: :CARD_EXPIRY_DATE_INCORRECT
|
|
236
|
-
CARD_INVALID: :CARD_INVALID
|
|
237
|
-
CARD_NOT_ACTIVATED: :CARD_NOT_ACTIVATED
|
|
238
|
-
CARD_PAUSED: :CARD_PAUSED
|
|
239
|
-
CARD_PIN_INCORRECT: :CARD_PIN_INCORRECT
|
|
240
|
-
CARD_RESTRICTED: :CARD_RESTRICTED
|
|
241
|
-
CARD_SECURITY_CODE_INCORRECT: :CARD_SECURITY_CODE_INCORRECT
|
|
242
|
-
CARD_SPEND_LIMIT_EXCEEDED: :CARD_SPEND_LIMIT_EXCEEDED
|
|
243
|
-
CONTACT_CARD_ISSUER: :CONTACT_CARD_ISSUER
|
|
244
|
-
CUSTOMER_ASA_TIMEOUT: :CUSTOMER_ASA_TIMEOUT
|
|
245
|
-
CUSTOM_ASA_RESULT: :CUSTOM_ASA_RESULT
|
|
246
|
-
DECLINED: :DECLINED
|
|
247
|
-
DO_NOT_HONOR: :DO_NOT_HONOR
|
|
248
|
-
DRIVER_NUMBER_INVALID: :DRIVER_NUMBER_INVALID
|
|
249
|
-
FORMAT_ERROR: :FORMAT_ERROR
|
|
250
|
-
INSUFFICIENT_FUNDING_SOURCE_BALANCE: :INSUFFICIENT_FUNDING_SOURCE_BALANCE
|
|
251
|
-
INSUFFICIENT_FUNDS: :INSUFFICIENT_FUNDS
|
|
252
|
-
LITHIC_SYSTEM_ERROR: :LITHIC_SYSTEM_ERROR
|
|
253
|
-
LITHIC_SYSTEM_RATE_LIMIT: :LITHIC_SYSTEM_RATE_LIMIT
|
|
254
|
-
MALFORMED_ASA_RESPONSE: :MALFORMED_ASA_RESPONSE
|
|
255
|
-
MERCHANT_INVALID: :MERCHANT_INVALID
|
|
256
|
-
MERCHANT_LOCKED_CARD_ATTEMPTED_ELSEWHERE: :MERCHANT_LOCKED_CARD_ATTEMPTED_ELSEWHERE
|
|
257
|
-
MERCHANT_NOT_PERMITTED: :MERCHANT_NOT_PERMITTED
|
|
258
|
-
OVER_REVERSAL_ATTEMPTED: :OVER_REVERSAL_ATTEMPTED
|
|
259
|
-
PIN_BLOCKED: :PIN_BLOCKED
|
|
260
|
-
PROGRAM_CARD_SPEND_LIMIT_EXCEEDED: :PROGRAM_CARD_SPEND_LIMIT_EXCEEDED
|
|
261
|
-
PROGRAM_SUSPENDED: :PROGRAM_SUSPENDED
|
|
262
|
-
PROGRAM_USAGE_RESTRICTION: :PROGRAM_USAGE_RESTRICTION
|
|
263
|
-
REVERSAL_UNMATCHED: :REVERSAL_UNMATCHED
|
|
264
|
-
SECURITY_VIOLATION: :SECURITY_VIOLATION
|
|
265
|
-
SINGLE_USE_CARD_REATTEMPTED: :SINGLE_USE_CARD_REATTEMPTED
|
|
266
|
-
SUSPECTED_FRAUD: :SUSPECTED_FRAUD
|
|
267
|
-
TRANSACTION_INVALID: :TRANSACTION_INVALID
|
|
268
|
-
TRANSACTION_NOT_PERMITTED_TO_ACQUIRER_OR_TERMINAL: :TRANSACTION_NOT_PERMITTED_TO_ACQUIRER_OR_TERMINAL
|
|
269
|
-
TRANSACTION_NOT_PERMITTED_TO_ISSUER_OR_CARDHOLDER: :TRANSACTION_NOT_PERMITTED_TO_ISSUER_OR_CARDHOLDER
|
|
270
|
-
TRANSACTION_PREVIOUSLY_COMPLETED: :TRANSACTION_PREVIOUSLY_COMPLETED
|
|
271
|
-
UNAUTHORIZED_MERCHANT: :UNAUTHORIZED_MERCHANT
|
|
272
|
-
VEHICLE_NUMBER_INVALID: :VEHICLE_NUMBER_INVALID
|
|
273
|
-
CARDHOLDER_CHALLENGED: :CARDHOLDER_CHALLENGED
|
|
274
|
-
CARDHOLDER_CHALLENGE_FAILED: :CARDHOLDER_CHALLENGE_FAILED
|
|
275
|
-
|
|
276
|
-
def self?.values: -> ::Array[Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::DeclineActionAuthorization::code]
|
|
277
|
-
end
|
|
278
|
-
|
|
279
|
-
type type_ = :DECLINE
|
|
280
|
-
|
|
281
|
-
module Type
|
|
282
|
-
extend Lithic::Internal::Type::Enum
|
|
283
|
-
|
|
284
|
-
DECLINE: :DECLINE
|
|
285
|
-
|
|
286
|
-
def self?.values: -> ::Array[Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::DeclineActionAuthorization::type_]
|
|
287
|
-
end
|
|
288
|
-
end
|
|
289
|
-
|
|
290
|
-
type challenge_action_authorization =
|
|
291
|
-
{
|
|
292
|
-
type: Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::ChallengeActionAuthorization::type_
|
|
293
|
-
}
|
|
294
|
-
|
|
295
|
-
class ChallengeActionAuthorization < Lithic::Internal::Type::BaseModel
|
|
296
|
-
attr_accessor type: Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::ChallengeActionAuthorization::type_
|
|
297
|
-
|
|
298
|
-
def initialize: (
|
|
299
|
-
type: Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::ChallengeActionAuthorization::type_
|
|
300
|
-
) -> void
|
|
301
|
-
|
|
302
|
-
def to_hash: -> {
|
|
303
|
-
type: Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::ChallengeActionAuthorization::type_
|
|
304
|
-
}
|
|
305
|
-
|
|
306
|
-
type type_ = :CHALLENGE
|
|
307
|
-
|
|
308
|
-
module Type
|
|
309
|
-
extend Lithic::Internal::Type::Enum
|
|
310
|
-
|
|
311
|
-
CHALLENGE: :CHALLENGE
|
|
312
|
-
|
|
313
|
-
def self?.values: -> ::Array[Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::ChallengeActionAuthorization::type_]
|
|
314
|
-
end
|
|
315
|
-
end
|
|
316
|
-
|
|
317
|
-
type result_authentication3_ds_action =
|
|
318
|
-
{
|
|
319
|
-
type: Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::ResultAuthentication3DSAction::type_
|
|
320
|
-
}
|
|
321
|
-
|
|
322
|
-
class ResultAuthentication3DSAction < Lithic::Internal::Type::BaseModel
|
|
323
|
-
attr_accessor type: Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::ResultAuthentication3DSAction::type_
|
|
324
|
-
|
|
325
|
-
def initialize: (
|
|
326
|
-
type: Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::ResultAuthentication3DSAction::type_
|
|
327
|
-
) -> void
|
|
328
|
-
|
|
329
|
-
def to_hash: -> {
|
|
330
|
-
type: Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::ResultAuthentication3DSAction::type_
|
|
331
|
-
}
|
|
332
|
-
|
|
333
|
-
type type_ = :DECLINE | :CHALLENGE
|
|
334
|
-
|
|
335
|
-
module Type
|
|
336
|
-
extend Lithic::Internal::Type::Enum
|
|
337
|
-
|
|
338
|
-
DECLINE: :DECLINE
|
|
339
|
-
CHALLENGE: :CHALLENGE
|
|
340
|
-
|
|
341
|
-
def self?.values: -> ::Array[Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::ResultAuthentication3DSAction::type_]
|
|
342
|
-
end
|
|
343
|
-
end
|
|
344
|
-
|
|
345
|
-
type decline_action_tokenization =
|
|
346
|
-
{
|
|
347
|
-
type: Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::DeclineActionTokenization::type_,
|
|
348
|
-
reason: Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::DeclineActionTokenization::reason
|
|
349
|
-
}
|
|
350
|
-
|
|
351
|
-
class DeclineActionTokenization < Lithic::Internal::Type::BaseModel
|
|
352
|
-
attr_accessor type: Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::DeclineActionTokenization::type_
|
|
353
|
-
|
|
354
|
-
attr_reader reason: Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::DeclineActionTokenization::reason?
|
|
355
|
-
|
|
356
|
-
def reason=: (
|
|
357
|
-
Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::DeclineActionTokenization::reason
|
|
358
|
-
) -> Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::DeclineActionTokenization::reason
|
|
359
|
-
|
|
360
|
-
def initialize: (
|
|
361
|
-
type: Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::DeclineActionTokenization::type_,
|
|
362
|
-
?reason: Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::DeclineActionTokenization::reason
|
|
363
|
-
) -> void
|
|
364
|
-
|
|
365
|
-
def to_hash: -> {
|
|
366
|
-
type: Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::DeclineActionTokenization::type_,
|
|
367
|
-
reason: Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::DeclineActionTokenization::reason
|
|
368
|
-
}
|
|
369
|
-
|
|
370
|
-
type type_ = :DECLINE
|
|
371
|
-
|
|
372
|
-
module Type
|
|
373
|
-
extend Lithic::Internal::Type::Enum
|
|
374
|
-
|
|
375
|
-
DECLINE: :DECLINE
|
|
376
|
-
|
|
377
|
-
def self?.values: -> ::Array[Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::DeclineActionTokenization::type_]
|
|
378
|
-
end
|
|
379
|
-
|
|
380
|
-
type reason =
|
|
381
|
-
:ACCOUNT_SCORE_1
|
|
382
|
-
| :DEVICE_SCORE_1
|
|
383
|
-
| :ALL_WALLET_DECLINE_REASONS_PRESENT
|
|
384
|
-
| :WALLET_RECOMMENDED_DECISION_RED
|
|
385
|
-
| :CVC_MISMATCH
|
|
386
|
-
| :CARD_EXPIRY_MONTH_MISMATCH
|
|
387
|
-
| :CARD_EXPIRY_YEAR_MISMATCH
|
|
388
|
-
| :CARD_INVALID_STATE
|
|
389
|
-
| :CUSTOMER_RED_PATH
|
|
390
|
-
| :INVALID_CUSTOMER_RESPONSE
|
|
391
|
-
| :NETWORK_FAILURE
|
|
392
|
-
| :GENERIC_DECLINE
|
|
393
|
-
| :DIGITAL_CARD_ART_REQUIRED
|
|
394
|
-
|
|
395
|
-
module Reason
|
|
396
|
-
extend Lithic::Internal::Type::Enum
|
|
397
|
-
|
|
398
|
-
ACCOUNT_SCORE_1: :ACCOUNT_SCORE_1
|
|
399
|
-
DEVICE_SCORE_1: :DEVICE_SCORE_1
|
|
400
|
-
ALL_WALLET_DECLINE_REASONS_PRESENT: :ALL_WALLET_DECLINE_REASONS_PRESENT
|
|
401
|
-
WALLET_RECOMMENDED_DECISION_RED: :WALLET_RECOMMENDED_DECISION_RED
|
|
402
|
-
CVC_MISMATCH: :CVC_MISMATCH
|
|
403
|
-
CARD_EXPIRY_MONTH_MISMATCH: :CARD_EXPIRY_MONTH_MISMATCH
|
|
404
|
-
CARD_EXPIRY_YEAR_MISMATCH: :CARD_EXPIRY_YEAR_MISMATCH
|
|
405
|
-
CARD_INVALID_STATE: :CARD_INVALID_STATE
|
|
406
|
-
CUSTOMER_RED_PATH: :CUSTOMER_RED_PATH
|
|
407
|
-
INVALID_CUSTOMER_RESPONSE: :INVALID_CUSTOMER_RESPONSE
|
|
408
|
-
NETWORK_FAILURE: :NETWORK_FAILURE
|
|
409
|
-
GENERIC_DECLINE: :GENERIC_DECLINE
|
|
410
|
-
DIGITAL_CARD_ART_REQUIRED: :DIGITAL_CARD_ART_REQUIRED
|
|
411
|
-
|
|
412
|
-
def self?.values: -> ::Array[Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::DeclineActionTokenization::reason]
|
|
413
|
-
end
|
|
414
|
-
end
|
|
415
|
-
|
|
416
|
-
type require_tfa_action =
|
|
417
|
-
{
|
|
418
|
-
type: Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::RequireTfaAction::type_,
|
|
419
|
-
reason: Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::RequireTfaAction::reason
|
|
420
|
-
}
|
|
421
|
-
|
|
422
|
-
class RequireTfaAction < Lithic::Internal::Type::BaseModel
|
|
423
|
-
attr_accessor type: Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::RequireTfaAction::type_
|
|
424
|
-
|
|
425
|
-
attr_reader reason: Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::RequireTfaAction::reason?
|
|
426
|
-
|
|
427
|
-
def reason=: (
|
|
428
|
-
Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::RequireTfaAction::reason
|
|
429
|
-
) -> Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::RequireTfaAction::reason
|
|
430
|
-
|
|
431
|
-
def initialize: (
|
|
432
|
-
type: Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::RequireTfaAction::type_,
|
|
433
|
-
?reason: Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::RequireTfaAction::reason
|
|
434
|
-
) -> void
|
|
435
|
-
|
|
436
|
-
def to_hash: -> {
|
|
437
|
-
type: Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::RequireTfaAction::type_,
|
|
438
|
-
reason: Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::RequireTfaAction::reason
|
|
439
|
-
}
|
|
440
|
-
|
|
441
|
-
type type_ = :REQUIRE_TFA
|
|
442
|
-
|
|
443
|
-
module Type
|
|
444
|
-
extend Lithic::Internal::Type::Enum
|
|
445
|
-
|
|
446
|
-
REQUIRE_TFA: :REQUIRE_TFA
|
|
447
|
-
|
|
448
|
-
def self?.values: -> ::Array[Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::RequireTfaAction::type_]
|
|
449
|
-
end
|
|
450
|
-
|
|
451
|
-
type reason =
|
|
452
|
-
:WALLET_RECOMMENDED_TFA
|
|
453
|
-
| :SUSPICIOUS_ACTIVITY
|
|
454
|
-
| :DEVICE_RECENTLY_LOST
|
|
455
|
-
| :TOO_MANY_RECENT_ATTEMPTS
|
|
456
|
-
| :TOO_MANY_RECENT_TOKENS
|
|
457
|
-
| :TOO_MANY_DIFFERENT_CARDHOLDERS
|
|
458
|
-
| :OUTSIDE_HOME_TERRITORY
|
|
459
|
-
| :HAS_SUSPENDED_TOKENS
|
|
460
|
-
| :HIGH_RISK
|
|
461
|
-
| :ACCOUNT_SCORE_LOW
|
|
462
|
-
| :DEVICE_SCORE_LOW
|
|
463
|
-
| :CARD_STATE_TFA
|
|
464
|
-
| :HARDCODED_TFA
|
|
465
|
-
| :CUSTOMER_RULE_TFA
|
|
466
|
-
| :DEVICE_HOST_CARD_EMULATION
|
|
467
|
-
|
|
468
|
-
module Reason
|
|
469
|
-
extend Lithic::Internal::Type::Enum
|
|
470
|
-
|
|
471
|
-
WALLET_RECOMMENDED_TFA: :WALLET_RECOMMENDED_TFA
|
|
472
|
-
SUSPICIOUS_ACTIVITY: :SUSPICIOUS_ACTIVITY
|
|
473
|
-
DEVICE_RECENTLY_LOST: :DEVICE_RECENTLY_LOST
|
|
474
|
-
TOO_MANY_RECENT_ATTEMPTS: :TOO_MANY_RECENT_ATTEMPTS
|
|
475
|
-
TOO_MANY_RECENT_TOKENS: :TOO_MANY_RECENT_TOKENS
|
|
476
|
-
TOO_MANY_DIFFERENT_CARDHOLDERS: :TOO_MANY_DIFFERENT_CARDHOLDERS
|
|
477
|
-
OUTSIDE_HOME_TERRITORY: :OUTSIDE_HOME_TERRITORY
|
|
478
|
-
HAS_SUSPENDED_TOKENS: :HAS_SUSPENDED_TOKENS
|
|
479
|
-
HIGH_RISK: :HIGH_RISK
|
|
480
|
-
ACCOUNT_SCORE_LOW: :ACCOUNT_SCORE_LOW
|
|
481
|
-
DEVICE_SCORE_LOW: :DEVICE_SCORE_LOW
|
|
482
|
-
CARD_STATE_TFA: :CARD_STATE_TFA
|
|
483
|
-
HARDCODED_TFA: :HARDCODED_TFA
|
|
484
|
-
CUSTOMER_RULE_TFA: :CUSTOMER_RULE_TFA
|
|
485
|
-
DEVICE_HOST_CARD_EMULATION: :DEVICE_HOST_CARD_EMULATION
|
|
486
|
-
|
|
487
|
-
def self?.values: -> ::Array[Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::RequireTfaAction::reason]
|
|
488
|
-
end
|
|
489
|
-
end
|
|
490
|
-
|
|
491
|
-
type approve_action_ach =
|
|
492
|
-
{
|
|
493
|
-
type: Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::ApproveActionACH::type_
|
|
494
|
-
}
|
|
495
|
-
|
|
496
|
-
class ApproveActionACH < Lithic::Internal::Type::BaseModel
|
|
497
|
-
attr_accessor type: Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::ApproveActionACH::type_
|
|
498
|
-
|
|
499
|
-
def initialize: (
|
|
500
|
-
type: Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::ApproveActionACH::type_
|
|
501
|
-
) -> void
|
|
502
|
-
|
|
503
|
-
def to_hash: -> {
|
|
504
|
-
type: Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::ApproveActionACH::type_
|
|
505
|
-
}
|
|
506
|
-
|
|
507
|
-
type type_ = :APPROVE
|
|
508
|
-
|
|
509
|
-
module Type
|
|
510
|
-
extend Lithic::Internal::Type::Enum
|
|
511
|
-
|
|
512
|
-
APPROVE: :APPROVE
|
|
513
|
-
|
|
514
|
-
def self?.values: -> ::Array[Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::ApproveActionACH::type_]
|
|
515
|
-
end
|
|
516
|
-
end
|
|
517
|
-
|
|
518
|
-
type return_action =
|
|
519
|
-
{
|
|
520
|
-
code: Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::ReturnAction::code,
|
|
521
|
-
type: Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::ReturnAction::type_
|
|
522
|
-
}
|
|
523
|
-
|
|
524
|
-
class ReturnAction < Lithic::Internal::Type::BaseModel
|
|
525
|
-
attr_accessor code: Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::ReturnAction::code
|
|
526
|
-
|
|
527
|
-
attr_accessor type: Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::ReturnAction::type_
|
|
528
|
-
|
|
529
|
-
def initialize: (
|
|
530
|
-
code: Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::ReturnAction::code,
|
|
531
|
-
type: Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::ReturnAction::type_
|
|
532
|
-
) -> void
|
|
533
|
-
|
|
534
|
-
def to_hash: -> {
|
|
535
|
-
code: Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::ReturnAction::code,
|
|
536
|
-
type: Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::ReturnAction::type_
|
|
537
|
-
}
|
|
538
|
-
|
|
539
|
-
type code =
|
|
540
|
-
:R01
|
|
541
|
-
| :R02
|
|
542
|
-
| :R03
|
|
543
|
-
| :R04
|
|
544
|
-
| :R05
|
|
545
|
-
| :R06
|
|
546
|
-
| :R07
|
|
547
|
-
| :R08
|
|
548
|
-
| :R09
|
|
549
|
-
| :R10
|
|
550
|
-
| :R11
|
|
551
|
-
| :R12
|
|
552
|
-
| :R13
|
|
553
|
-
| :R14
|
|
554
|
-
| :R15
|
|
555
|
-
| :R16
|
|
556
|
-
| :R17
|
|
557
|
-
| :R18
|
|
558
|
-
| :R19
|
|
559
|
-
| :R20
|
|
560
|
-
| :R21
|
|
561
|
-
| :R22
|
|
562
|
-
| :R23
|
|
563
|
-
| :R24
|
|
564
|
-
| :R25
|
|
565
|
-
| :R26
|
|
566
|
-
| :R27
|
|
567
|
-
| :R28
|
|
568
|
-
| :R29
|
|
569
|
-
| :R30
|
|
570
|
-
| :R31
|
|
571
|
-
| :R32
|
|
572
|
-
| :R33
|
|
573
|
-
| :R34
|
|
574
|
-
| :R35
|
|
575
|
-
| :R36
|
|
576
|
-
| :R37
|
|
577
|
-
| :R38
|
|
578
|
-
| :R39
|
|
579
|
-
| :R40
|
|
580
|
-
| :R41
|
|
581
|
-
| :R42
|
|
582
|
-
| :R43
|
|
583
|
-
| :R44
|
|
584
|
-
| :R45
|
|
585
|
-
| :R46
|
|
586
|
-
| :R47
|
|
587
|
-
| :R50
|
|
588
|
-
| :R51
|
|
589
|
-
| :R52
|
|
590
|
-
| :R53
|
|
591
|
-
| :R61
|
|
592
|
-
| :R62
|
|
593
|
-
| :R67
|
|
594
|
-
| :R68
|
|
595
|
-
| :R69
|
|
596
|
-
| :R70
|
|
597
|
-
| :R71
|
|
598
|
-
| :R72
|
|
599
|
-
| :R73
|
|
600
|
-
| :R74
|
|
601
|
-
| :R75
|
|
602
|
-
| :R76
|
|
603
|
-
| :R77
|
|
604
|
-
| :R80
|
|
605
|
-
| :R81
|
|
606
|
-
| :R82
|
|
607
|
-
| :R83
|
|
608
|
-
| :R84
|
|
609
|
-
| :R85
|
|
610
|
-
|
|
611
|
-
module Code
|
|
612
|
-
extend Lithic::Internal::Type::Enum
|
|
613
|
-
|
|
614
|
-
R01: :R01
|
|
615
|
-
R02: :R02
|
|
616
|
-
R03: :R03
|
|
617
|
-
R04: :R04
|
|
618
|
-
R05: :R05
|
|
619
|
-
R06: :R06
|
|
620
|
-
R07: :R07
|
|
621
|
-
R08: :R08
|
|
622
|
-
R09: :R09
|
|
623
|
-
R10: :R10
|
|
624
|
-
R11: :R11
|
|
625
|
-
R12: :R12
|
|
626
|
-
R13: :R13
|
|
627
|
-
R14: :R14
|
|
628
|
-
R15: :R15
|
|
629
|
-
R16: :R16
|
|
630
|
-
R17: :R17
|
|
631
|
-
R18: :R18
|
|
632
|
-
R19: :R19
|
|
633
|
-
R20: :R20
|
|
634
|
-
R21: :R21
|
|
635
|
-
R22: :R22
|
|
636
|
-
R23: :R23
|
|
637
|
-
R24: :R24
|
|
638
|
-
R25: :R25
|
|
639
|
-
R26: :R26
|
|
640
|
-
R27: :R27
|
|
641
|
-
R28: :R28
|
|
642
|
-
R29: :R29
|
|
643
|
-
R30: :R30
|
|
644
|
-
R31: :R31
|
|
645
|
-
R32: :R32
|
|
646
|
-
R33: :R33
|
|
647
|
-
R34: :R34
|
|
648
|
-
R35: :R35
|
|
649
|
-
R36: :R36
|
|
650
|
-
R37: :R37
|
|
651
|
-
R38: :R38
|
|
652
|
-
R39: :R39
|
|
653
|
-
R40: :R40
|
|
654
|
-
R41: :R41
|
|
655
|
-
R42: :R42
|
|
656
|
-
R43: :R43
|
|
657
|
-
R44: :R44
|
|
658
|
-
R45: :R45
|
|
659
|
-
R46: :R46
|
|
660
|
-
R47: :R47
|
|
661
|
-
R50: :R50
|
|
662
|
-
R51: :R51
|
|
663
|
-
R52: :R52
|
|
664
|
-
R53: :R53
|
|
665
|
-
R61: :R61
|
|
666
|
-
R62: :R62
|
|
667
|
-
R67: :R67
|
|
668
|
-
R68: :R68
|
|
669
|
-
R69: :R69
|
|
670
|
-
R70: :R70
|
|
671
|
-
R71: :R71
|
|
672
|
-
R72: :R72
|
|
673
|
-
R73: :R73
|
|
674
|
-
R74: :R74
|
|
675
|
-
R75: :R75
|
|
676
|
-
R76: :R76
|
|
677
|
-
R77: :R77
|
|
678
|
-
R80: :R80
|
|
679
|
-
R81: :R81
|
|
680
|
-
R82: :R82
|
|
681
|
-
R83: :R83
|
|
682
|
-
R84: :R84
|
|
683
|
-
R85: :R85
|
|
684
|
-
|
|
685
|
-
def self?.values: -> ::Array[Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::ReturnAction::code]
|
|
686
|
-
end
|
|
687
|
-
|
|
688
|
-
type type_ = :RETURN
|
|
689
|
-
|
|
690
|
-
module Type
|
|
691
|
-
extend Lithic::Internal::Type::Enum
|
|
692
|
-
|
|
693
|
-
RETURN: :RETURN
|
|
694
|
-
|
|
695
|
-
def self?.values: -> ::Array[Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::Action::ReturnAction::type_]
|
|
696
|
-
end
|
|
697
|
-
end
|
|
698
|
-
|
|
699
|
-
def self?.variants: -> ::Array[Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::Example::action]
|
|
700
|
-
end
|
|
701
|
-
end
|
|
702
|
-
|
|
703
|
-
type state = :ACTIVE | :SHADOW | :INACTIVE
|
|
704
|
-
|
|
705
|
-
module State
|
|
706
|
-
extend Lithic::Internal::Type::Enum
|
|
707
|
-
|
|
708
|
-
ACTIVE: :ACTIVE
|
|
709
|
-
SHADOW: :SHADOW
|
|
710
|
-
INACTIVE: :INACTIVE
|
|
711
|
-
|
|
712
|
-
def self?.values: -> ::Array[Lithic::Models::AuthRules::V2RetrieveReportResponse::DailyStatistic::Version::state]
|
|
713
|
-
end
|
|
714
|
-
end
|
|
715
52
|
end
|
|
716
53
|
end
|
|
717
54
|
end
|