lithic 0.1.0.pre.alpha.15 → 0.1.0.pre.alpha.17
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 +28 -0
- data/README.md +61 -52
- data/lib/lithic/client.rb +4 -4
- data/lib/lithic/internal/transport/pooled_net_requester.rb +1 -5
- data/lib/lithic/internal/type/array_of.rb +9 -0
- data/lib/lithic/internal/type/base_model.rb +29 -13
- data/lib/lithic/internal/type/base_page.rb +8 -0
- data/lib/lithic/internal/type/boolean.rb +4 -0
- data/lib/lithic/internal/type/enum.rb +9 -0
- data/lib/lithic/internal/type/hash_of.rb +9 -0
- data/lib/lithic/internal/type/io_like.rb +4 -0
- data/lib/lithic/internal/type/union.rb +10 -1
- data/lib/lithic/internal/type/unknown.rb +4 -0
- data/lib/lithic/internal.rb +0 -1
- data/lib/lithic/models/account.rb +3 -0
- data/lib/lithic/models/account_holder.rb +2 -0
- data/lib/lithic/models/account_holder_create_params.rb +2 -0
- data/lib/lithic/models/account_holder_update_params.rb +2 -0
- data/lib/lithic/models/account_update_params.rb +2 -0
- data/lib/lithic/models/card.rb +28 -0
- data/lib/lithic/models/kyb.rb +2 -0
- data/lib/lithic/models/{card_list_response.rb → non_pci_card.rb} +31 -29
- data/lib/lithic/models/settlement_report.rb +12 -0
- data/lib/lithic/models/transaction.rb +16 -0
- data/lib/lithic/resources/cards.rb +16 -16
- data/lib/lithic/version.rb +1 -1
- data/lib/lithic.rb +2 -17
- data/rbi/lib/lithic/client.rbi +4 -4
- data/rbi/lib/lithic/internal/type/array_of.rbi +3 -0
- data/rbi/lib/lithic/internal/type/base_model.rbi +6 -1
- data/rbi/lib/lithic/internal/type/base_page.rbi +2 -0
- data/rbi/lib/lithic/internal/type/enum.rbi +3 -0
- data/rbi/lib/lithic/internal/type/hash_of.rbi +3 -0
- data/rbi/lib/lithic/internal/type/union.rbi +3 -0
- data/rbi/lib/lithic/internal.rbi +0 -1
- data/rbi/lib/lithic/models/card.rbi +30 -0
- data/rbi/lib/lithic/models/{card_list_response.rbi → non_pci_card.rbi} +59 -60
- data/rbi/lib/lithic/resources/cards.rbi +8 -8
- data/sig/lithic/internal/type/array_of.rbs +2 -0
- data/sig/lithic/internal/type/base_model.rbs +4 -0
- data/sig/lithic/internal/type/enum.rbs +2 -0
- data/sig/lithic/internal/type/hash_of.rbs +2 -0
- data/sig/lithic/internal/type/union.rbs +2 -0
- data/sig/lithic/models/card.rbs +19 -0
- data/sig/lithic/models/{card_list_response.rbs → non_pci_card.rbs} +31 -31
- data/sig/lithic/resources/cards.rbs +8 -8
- metadata +8 -26
- data/lib/lithic/models/card_convert_physical_response.rb +0 -391
- data/lib/lithic/models/card_create_response.rb +0 -390
- data/lib/lithic/models/card_reissue_response.rb +0 -390
- data/lib/lithic/models/card_renew_response.rb +0 -390
- data/lib/lithic/models/card_retrieve_response.rb +0 -390
- data/lib/lithic/models/card_search_by_pan_response.rb +0 -390
- data/lib/lithic/models/card_update_response.rb +0 -390
- data/rbi/lib/lithic/models/card_convert_physical_response.rbi +0 -467
- data/rbi/lib/lithic/models/card_create_response.rbi +0 -458
- data/rbi/lib/lithic/models/card_reissue_response.rbi +0 -458
- data/rbi/lib/lithic/models/card_renew_response.rbi +0 -457
- data/rbi/lib/lithic/models/card_retrieve_response.rbi +0 -459
- data/rbi/lib/lithic/models/card_search_by_pan_response.rbi +0 -461
- data/rbi/lib/lithic/models/card_update_response.rbi +0 -458
- data/sig/lithic/models/card_convert_physical_response.rbs +0 -257
- data/sig/lithic/models/card_create_response.rbs +0 -257
- data/sig/lithic/models/card_reissue_response.rbs +0 -257
- data/sig/lithic/models/card_renew_response.rbs +0 -257
- data/sig/lithic/models/card_retrieve_response.rbs +0 -257
- data/sig/lithic/models/card_search_by_pan_response.rbs +0 -257
- data/sig/lithic/models/card_update_response.rbs +0 -257
@@ -1,257 +0,0 @@
|
|
1
|
-
module Lithic
|
2
|
-
module Models
|
3
|
-
type card_retrieve_response =
|
4
|
-
{
|
5
|
-
token: String,
|
6
|
-
account_token: String,
|
7
|
-
card_program_token: String,
|
8
|
-
created: Time,
|
9
|
-
funding: Lithic::Models::CardRetrieveResponse::Funding,
|
10
|
-
last_four: String,
|
11
|
-
pin_status: Lithic::Models::CardRetrieveResponse::pin_status,
|
12
|
-
spend_limit: Integer,
|
13
|
-
spend_limit_duration: Lithic::Models::CardRetrieveResponse::spend_limit_duration,
|
14
|
-
state: Lithic::Models::CardRetrieveResponse::state,
|
15
|
-
type: Lithic::Models::CardRetrieveResponse::type_,
|
16
|
-
auth_rule_tokens: ::Array[String],
|
17
|
-
cardholder_currency: String,
|
18
|
-
cvv: String,
|
19
|
-
digital_card_art_token: String,
|
20
|
-
exp_month: String,
|
21
|
-
exp_year: String,
|
22
|
-
hostname: String,
|
23
|
-
memo: String,
|
24
|
-
pan: String,
|
25
|
-
pending_commands: ::Array[String],
|
26
|
-
product_id: String,
|
27
|
-
replacement_for: String?
|
28
|
-
}
|
29
|
-
|
30
|
-
class CardRetrieveResponse < Lithic::Internal::Type::BaseModel
|
31
|
-
attr_accessor token: String
|
32
|
-
|
33
|
-
attr_accessor account_token: String
|
34
|
-
|
35
|
-
attr_accessor card_program_token: String
|
36
|
-
|
37
|
-
attr_accessor created: Time
|
38
|
-
|
39
|
-
attr_accessor funding: Lithic::Models::CardRetrieveResponse::Funding
|
40
|
-
|
41
|
-
attr_accessor last_four: String
|
42
|
-
|
43
|
-
attr_accessor pin_status: Lithic::Models::CardRetrieveResponse::pin_status
|
44
|
-
|
45
|
-
attr_accessor spend_limit: Integer
|
46
|
-
|
47
|
-
attr_accessor spend_limit_duration: Lithic::Models::CardRetrieveResponse::spend_limit_duration
|
48
|
-
|
49
|
-
attr_accessor state: Lithic::Models::CardRetrieveResponse::state
|
50
|
-
|
51
|
-
attr_accessor type: Lithic::Models::CardRetrieveResponse::type_
|
52
|
-
|
53
|
-
attr_reader auth_rule_tokens: ::Array[String]?
|
54
|
-
|
55
|
-
def auth_rule_tokens=: (::Array[String]) -> ::Array[String]
|
56
|
-
|
57
|
-
attr_reader cardholder_currency: String?
|
58
|
-
|
59
|
-
def cardholder_currency=: (String) -> String
|
60
|
-
|
61
|
-
attr_reader cvv: String?
|
62
|
-
|
63
|
-
def cvv=: (String) -> String
|
64
|
-
|
65
|
-
attr_reader digital_card_art_token: String?
|
66
|
-
|
67
|
-
def digital_card_art_token=: (String) -> String
|
68
|
-
|
69
|
-
attr_reader exp_month: String?
|
70
|
-
|
71
|
-
def exp_month=: (String) -> String
|
72
|
-
|
73
|
-
attr_reader exp_year: String?
|
74
|
-
|
75
|
-
def exp_year=: (String) -> String
|
76
|
-
|
77
|
-
attr_reader hostname: String?
|
78
|
-
|
79
|
-
def hostname=: (String) -> String
|
80
|
-
|
81
|
-
attr_reader memo: String?
|
82
|
-
|
83
|
-
def memo=: (String) -> String
|
84
|
-
|
85
|
-
attr_reader pan: String?
|
86
|
-
|
87
|
-
def pan=: (String) -> String
|
88
|
-
|
89
|
-
attr_reader pending_commands: ::Array[String]?
|
90
|
-
|
91
|
-
def pending_commands=: (::Array[String]) -> ::Array[String]
|
92
|
-
|
93
|
-
attr_reader product_id: String?
|
94
|
-
|
95
|
-
def product_id=: (String) -> String
|
96
|
-
|
97
|
-
attr_accessor replacement_for: String?
|
98
|
-
|
99
|
-
def initialize: (
|
100
|
-
token: String,
|
101
|
-
account_token: String,
|
102
|
-
card_program_token: String,
|
103
|
-
created: Time,
|
104
|
-
funding: Lithic::Models::CardRetrieveResponse::Funding,
|
105
|
-
last_four: String,
|
106
|
-
pin_status: Lithic::Models::CardRetrieveResponse::pin_status,
|
107
|
-
spend_limit: Integer,
|
108
|
-
spend_limit_duration: Lithic::Models::CardRetrieveResponse::spend_limit_duration,
|
109
|
-
state: Lithic::Models::CardRetrieveResponse::state,
|
110
|
-
type: Lithic::Models::CardRetrieveResponse::type_,
|
111
|
-
?auth_rule_tokens: ::Array[String],
|
112
|
-
?cardholder_currency: String,
|
113
|
-
?cvv: String,
|
114
|
-
?digital_card_art_token: String,
|
115
|
-
?exp_month: String,
|
116
|
-
?exp_year: String,
|
117
|
-
?hostname: String,
|
118
|
-
?memo: String,
|
119
|
-
?pan: String,
|
120
|
-
?pending_commands: ::Array[String],
|
121
|
-
?product_id: String,
|
122
|
-
?replacement_for: String?
|
123
|
-
) -> void
|
124
|
-
|
125
|
-
def to_hash: -> Lithic::Models::card_retrieve_response
|
126
|
-
|
127
|
-
type funding =
|
128
|
-
{
|
129
|
-
token: String,
|
130
|
-
created: Time,
|
131
|
-
last_four: String,
|
132
|
-
state: Lithic::Models::CardRetrieveResponse::Funding::state,
|
133
|
-
type: Lithic::Models::CardRetrieveResponse::Funding::type_,
|
134
|
-
account_name: String,
|
135
|
-
nickname: String
|
136
|
-
}
|
137
|
-
|
138
|
-
class Funding < Lithic::Internal::Type::BaseModel
|
139
|
-
attr_accessor token: String
|
140
|
-
|
141
|
-
attr_accessor created: Time
|
142
|
-
|
143
|
-
attr_accessor last_four: String
|
144
|
-
|
145
|
-
attr_accessor state: Lithic::Models::CardRetrieveResponse::Funding::state
|
146
|
-
|
147
|
-
attr_accessor type: Lithic::Models::CardRetrieveResponse::Funding::type_
|
148
|
-
|
149
|
-
attr_reader account_name: String?
|
150
|
-
|
151
|
-
def account_name=: (String) -> String
|
152
|
-
|
153
|
-
attr_reader nickname: String?
|
154
|
-
|
155
|
-
def nickname=: (String) -> String
|
156
|
-
|
157
|
-
def initialize: (
|
158
|
-
token: String,
|
159
|
-
created: Time,
|
160
|
-
last_four: String,
|
161
|
-
state: Lithic::Models::CardRetrieveResponse::Funding::state,
|
162
|
-
type: Lithic::Models::CardRetrieveResponse::Funding::type_,
|
163
|
-
?account_name: String,
|
164
|
-
?nickname: String
|
165
|
-
) -> void
|
166
|
-
|
167
|
-
def to_hash: -> Lithic::Models::CardRetrieveResponse::funding
|
168
|
-
|
169
|
-
type state = :DELETED | :ENABLED | :PENDING
|
170
|
-
|
171
|
-
module State
|
172
|
-
extend Lithic::Internal::Type::Enum
|
173
|
-
|
174
|
-
DELETED: :DELETED
|
175
|
-
ENABLED: :ENABLED
|
176
|
-
PENDING: :PENDING
|
177
|
-
|
178
|
-
def self?.values: -> ::Array[Lithic::Models::CardRetrieveResponse::Funding::state]
|
179
|
-
end
|
180
|
-
|
181
|
-
type type_ = :DEPOSITORY_CHECKING | :DEPOSITORY_SAVINGS
|
182
|
-
|
183
|
-
module Type
|
184
|
-
extend Lithic::Internal::Type::Enum
|
185
|
-
|
186
|
-
DEPOSITORY_CHECKING: :DEPOSITORY_CHECKING
|
187
|
-
DEPOSITORY_SAVINGS: :DEPOSITORY_SAVINGS
|
188
|
-
|
189
|
-
def self?.values: -> ::Array[Lithic::Models::CardRetrieveResponse::Funding::type_]
|
190
|
-
end
|
191
|
-
end
|
192
|
-
|
193
|
-
type pin_status = :OK | :BLOCKED | :NOT_SET
|
194
|
-
|
195
|
-
module PinStatus
|
196
|
-
extend Lithic::Internal::Type::Enum
|
197
|
-
|
198
|
-
OK: :OK
|
199
|
-
BLOCKED: :BLOCKED
|
200
|
-
NOT_SET: :NOT_SET
|
201
|
-
|
202
|
-
def self?.values: -> ::Array[Lithic::Models::CardRetrieveResponse::pin_status]
|
203
|
-
end
|
204
|
-
|
205
|
-
type spend_limit_duration =
|
206
|
-
:ANNUALLY | :FOREVER | :MONTHLY | :TRANSACTION | :DAILY
|
207
|
-
|
208
|
-
module SpendLimitDuration
|
209
|
-
extend Lithic::Internal::Type::Enum
|
210
|
-
|
211
|
-
ANNUALLY: :ANNUALLY
|
212
|
-
FOREVER: :FOREVER
|
213
|
-
MONTHLY: :MONTHLY
|
214
|
-
TRANSACTION: :TRANSACTION
|
215
|
-
DAILY: :DAILY
|
216
|
-
|
217
|
-
def self?.values: -> ::Array[Lithic::Models::CardRetrieveResponse::spend_limit_duration]
|
218
|
-
end
|
219
|
-
|
220
|
-
type state =
|
221
|
-
:CLOSED | :OPEN | :PAUSED | :PENDING_ACTIVATION | :PENDING_FULFILLMENT
|
222
|
-
|
223
|
-
module State
|
224
|
-
extend Lithic::Internal::Type::Enum
|
225
|
-
|
226
|
-
CLOSED: :CLOSED
|
227
|
-
OPEN: :OPEN
|
228
|
-
PAUSED: :PAUSED
|
229
|
-
PENDING_ACTIVATION: :PENDING_ACTIVATION
|
230
|
-
PENDING_FULFILLMENT: :PENDING_FULFILLMENT
|
231
|
-
|
232
|
-
def self?.values: -> ::Array[Lithic::Models::CardRetrieveResponse::state]
|
233
|
-
end
|
234
|
-
|
235
|
-
type type_ =
|
236
|
-
:MERCHANT_LOCKED
|
237
|
-
| :PHYSICAL
|
238
|
-
| :SINGLE_USE
|
239
|
-
| :VIRTUAL
|
240
|
-
| :UNLOCKED
|
241
|
-
| :DIGITAL_WALLET
|
242
|
-
|
243
|
-
module Type
|
244
|
-
extend Lithic::Internal::Type::Enum
|
245
|
-
|
246
|
-
MERCHANT_LOCKED: :MERCHANT_LOCKED
|
247
|
-
PHYSICAL: :PHYSICAL
|
248
|
-
SINGLE_USE: :SINGLE_USE
|
249
|
-
VIRTUAL: :VIRTUAL
|
250
|
-
UNLOCKED: :UNLOCKED
|
251
|
-
DIGITAL_WALLET: :DIGITAL_WALLET
|
252
|
-
|
253
|
-
def self?.values: -> ::Array[Lithic::Models::CardRetrieveResponse::type_]
|
254
|
-
end
|
255
|
-
end
|
256
|
-
end
|
257
|
-
end
|
@@ -1,257 +0,0 @@
|
|
1
|
-
module Lithic
|
2
|
-
module Models
|
3
|
-
type card_search_by_pan_response =
|
4
|
-
{
|
5
|
-
token: String,
|
6
|
-
account_token: String,
|
7
|
-
card_program_token: String,
|
8
|
-
created: Time,
|
9
|
-
funding: Lithic::Models::CardSearchByPanResponse::Funding,
|
10
|
-
last_four: String,
|
11
|
-
pin_status: Lithic::Models::CardSearchByPanResponse::pin_status,
|
12
|
-
spend_limit: Integer,
|
13
|
-
spend_limit_duration: Lithic::Models::CardSearchByPanResponse::spend_limit_duration,
|
14
|
-
state: Lithic::Models::CardSearchByPanResponse::state,
|
15
|
-
type: Lithic::Models::CardSearchByPanResponse::type_,
|
16
|
-
auth_rule_tokens: ::Array[String],
|
17
|
-
cardholder_currency: String,
|
18
|
-
cvv: String,
|
19
|
-
digital_card_art_token: String,
|
20
|
-
exp_month: String,
|
21
|
-
exp_year: String,
|
22
|
-
hostname: String,
|
23
|
-
memo: String,
|
24
|
-
pan: String,
|
25
|
-
pending_commands: ::Array[String],
|
26
|
-
product_id: String,
|
27
|
-
replacement_for: String?
|
28
|
-
}
|
29
|
-
|
30
|
-
class CardSearchByPanResponse < Lithic::Internal::Type::BaseModel
|
31
|
-
attr_accessor token: String
|
32
|
-
|
33
|
-
attr_accessor account_token: String
|
34
|
-
|
35
|
-
attr_accessor card_program_token: String
|
36
|
-
|
37
|
-
attr_accessor created: Time
|
38
|
-
|
39
|
-
attr_accessor funding: Lithic::Models::CardSearchByPanResponse::Funding
|
40
|
-
|
41
|
-
attr_accessor last_four: String
|
42
|
-
|
43
|
-
attr_accessor pin_status: Lithic::Models::CardSearchByPanResponse::pin_status
|
44
|
-
|
45
|
-
attr_accessor spend_limit: Integer
|
46
|
-
|
47
|
-
attr_accessor spend_limit_duration: Lithic::Models::CardSearchByPanResponse::spend_limit_duration
|
48
|
-
|
49
|
-
attr_accessor state: Lithic::Models::CardSearchByPanResponse::state
|
50
|
-
|
51
|
-
attr_accessor type: Lithic::Models::CardSearchByPanResponse::type_
|
52
|
-
|
53
|
-
attr_reader auth_rule_tokens: ::Array[String]?
|
54
|
-
|
55
|
-
def auth_rule_tokens=: (::Array[String]) -> ::Array[String]
|
56
|
-
|
57
|
-
attr_reader cardholder_currency: String?
|
58
|
-
|
59
|
-
def cardholder_currency=: (String) -> String
|
60
|
-
|
61
|
-
attr_reader cvv: String?
|
62
|
-
|
63
|
-
def cvv=: (String) -> String
|
64
|
-
|
65
|
-
attr_reader digital_card_art_token: String?
|
66
|
-
|
67
|
-
def digital_card_art_token=: (String) -> String
|
68
|
-
|
69
|
-
attr_reader exp_month: String?
|
70
|
-
|
71
|
-
def exp_month=: (String) -> String
|
72
|
-
|
73
|
-
attr_reader exp_year: String?
|
74
|
-
|
75
|
-
def exp_year=: (String) -> String
|
76
|
-
|
77
|
-
attr_reader hostname: String?
|
78
|
-
|
79
|
-
def hostname=: (String) -> String
|
80
|
-
|
81
|
-
attr_reader memo: String?
|
82
|
-
|
83
|
-
def memo=: (String) -> String
|
84
|
-
|
85
|
-
attr_reader pan: String?
|
86
|
-
|
87
|
-
def pan=: (String) -> String
|
88
|
-
|
89
|
-
attr_reader pending_commands: ::Array[String]?
|
90
|
-
|
91
|
-
def pending_commands=: (::Array[String]) -> ::Array[String]
|
92
|
-
|
93
|
-
attr_reader product_id: String?
|
94
|
-
|
95
|
-
def product_id=: (String) -> String
|
96
|
-
|
97
|
-
attr_accessor replacement_for: String?
|
98
|
-
|
99
|
-
def initialize: (
|
100
|
-
token: String,
|
101
|
-
account_token: String,
|
102
|
-
card_program_token: String,
|
103
|
-
created: Time,
|
104
|
-
funding: Lithic::Models::CardSearchByPanResponse::Funding,
|
105
|
-
last_four: String,
|
106
|
-
pin_status: Lithic::Models::CardSearchByPanResponse::pin_status,
|
107
|
-
spend_limit: Integer,
|
108
|
-
spend_limit_duration: Lithic::Models::CardSearchByPanResponse::spend_limit_duration,
|
109
|
-
state: Lithic::Models::CardSearchByPanResponse::state,
|
110
|
-
type: Lithic::Models::CardSearchByPanResponse::type_,
|
111
|
-
?auth_rule_tokens: ::Array[String],
|
112
|
-
?cardholder_currency: String,
|
113
|
-
?cvv: String,
|
114
|
-
?digital_card_art_token: String,
|
115
|
-
?exp_month: String,
|
116
|
-
?exp_year: String,
|
117
|
-
?hostname: String,
|
118
|
-
?memo: String,
|
119
|
-
?pan: String,
|
120
|
-
?pending_commands: ::Array[String],
|
121
|
-
?product_id: String,
|
122
|
-
?replacement_for: String?
|
123
|
-
) -> void
|
124
|
-
|
125
|
-
def to_hash: -> Lithic::Models::card_search_by_pan_response
|
126
|
-
|
127
|
-
type funding =
|
128
|
-
{
|
129
|
-
token: String,
|
130
|
-
created: Time,
|
131
|
-
last_four: String,
|
132
|
-
state: Lithic::Models::CardSearchByPanResponse::Funding::state,
|
133
|
-
type: Lithic::Models::CardSearchByPanResponse::Funding::type_,
|
134
|
-
account_name: String,
|
135
|
-
nickname: String
|
136
|
-
}
|
137
|
-
|
138
|
-
class Funding < Lithic::Internal::Type::BaseModel
|
139
|
-
attr_accessor token: String
|
140
|
-
|
141
|
-
attr_accessor created: Time
|
142
|
-
|
143
|
-
attr_accessor last_four: String
|
144
|
-
|
145
|
-
attr_accessor state: Lithic::Models::CardSearchByPanResponse::Funding::state
|
146
|
-
|
147
|
-
attr_accessor type: Lithic::Models::CardSearchByPanResponse::Funding::type_
|
148
|
-
|
149
|
-
attr_reader account_name: String?
|
150
|
-
|
151
|
-
def account_name=: (String) -> String
|
152
|
-
|
153
|
-
attr_reader nickname: String?
|
154
|
-
|
155
|
-
def nickname=: (String) -> String
|
156
|
-
|
157
|
-
def initialize: (
|
158
|
-
token: String,
|
159
|
-
created: Time,
|
160
|
-
last_four: String,
|
161
|
-
state: Lithic::Models::CardSearchByPanResponse::Funding::state,
|
162
|
-
type: Lithic::Models::CardSearchByPanResponse::Funding::type_,
|
163
|
-
?account_name: String,
|
164
|
-
?nickname: String
|
165
|
-
) -> void
|
166
|
-
|
167
|
-
def to_hash: -> Lithic::Models::CardSearchByPanResponse::funding
|
168
|
-
|
169
|
-
type state = :DELETED | :ENABLED | :PENDING
|
170
|
-
|
171
|
-
module State
|
172
|
-
extend Lithic::Internal::Type::Enum
|
173
|
-
|
174
|
-
DELETED: :DELETED
|
175
|
-
ENABLED: :ENABLED
|
176
|
-
PENDING: :PENDING
|
177
|
-
|
178
|
-
def self?.values: -> ::Array[Lithic::Models::CardSearchByPanResponse::Funding::state]
|
179
|
-
end
|
180
|
-
|
181
|
-
type type_ = :DEPOSITORY_CHECKING | :DEPOSITORY_SAVINGS
|
182
|
-
|
183
|
-
module Type
|
184
|
-
extend Lithic::Internal::Type::Enum
|
185
|
-
|
186
|
-
DEPOSITORY_CHECKING: :DEPOSITORY_CHECKING
|
187
|
-
DEPOSITORY_SAVINGS: :DEPOSITORY_SAVINGS
|
188
|
-
|
189
|
-
def self?.values: -> ::Array[Lithic::Models::CardSearchByPanResponse::Funding::type_]
|
190
|
-
end
|
191
|
-
end
|
192
|
-
|
193
|
-
type pin_status = :OK | :BLOCKED | :NOT_SET
|
194
|
-
|
195
|
-
module PinStatus
|
196
|
-
extend Lithic::Internal::Type::Enum
|
197
|
-
|
198
|
-
OK: :OK
|
199
|
-
BLOCKED: :BLOCKED
|
200
|
-
NOT_SET: :NOT_SET
|
201
|
-
|
202
|
-
def self?.values: -> ::Array[Lithic::Models::CardSearchByPanResponse::pin_status]
|
203
|
-
end
|
204
|
-
|
205
|
-
type spend_limit_duration =
|
206
|
-
:ANNUALLY | :FOREVER | :MONTHLY | :TRANSACTION | :DAILY
|
207
|
-
|
208
|
-
module SpendLimitDuration
|
209
|
-
extend Lithic::Internal::Type::Enum
|
210
|
-
|
211
|
-
ANNUALLY: :ANNUALLY
|
212
|
-
FOREVER: :FOREVER
|
213
|
-
MONTHLY: :MONTHLY
|
214
|
-
TRANSACTION: :TRANSACTION
|
215
|
-
DAILY: :DAILY
|
216
|
-
|
217
|
-
def self?.values: -> ::Array[Lithic::Models::CardSearchByPanResponse::spend_limit_duration]
|
218
|
-
end
|
219
|
-
|
220
|
-
type state =
|
221
|
-
:CLOSED | :OPEN | :PAUSED | :PENDING_ACTIVATION | :PENDING_FULFILLMENT
|
222
|
-
|
223
|
-
module State
|
224
|
-
extend Lithic::Internal::Type::Enum
|
225
|
-
|
226
|
-
CLOSED: :CLOSED
|
227
|
-
OPEN: :OPEN
|
228
|
-
PAUSED: :PAUSED
|
229
|
-
PENDING_ACTIVATION: :PENDING_ACTIVATION
|
230
|
-
PENDING_FULFILLMENT: :PENDING_FULFILLMENT
|
231
|
-
|
232
|
-
def self?.values: -> ::Array[Lithic::Models::CardSearchByPanResponse::state]
|
233
|
-
end
|
234
|
-
|
235
|
-
type type_ =
|
236
|
-
:MERCHANT_LOCKED
|
237
|
-
| :PHYSICAL
|
238
|
-
| :SINGLE_USE
|
239
|
-
| :VIRTUAL
|
240
|
-
| :UNLOCKED
|
241
|
-
| :DIGITAL_WALLET
|
242
|
-
|
243
|
-
module Type
|
244
|
-
extend Lithic::Internal::Type::Enum
|
245
|
-
|
246
|
-
MERCHANT_LOCKED: :MERCHANT_LOCKED
|
247
|
-
PHYSICAL: :PHYSICAL
|
248
|
-
SINGLE_USE: :SINGLE_USE
|
249
|
-
VIRTUAL: :VIRTUAL
|
250
|
-
UNLOCKED: :UNLOCKED
|
251
|
-
DIGITAL_WALLET: :DIGITAL_WALLET
|
252
|
-
|
253
|
-
def self?.values: -> ::Array[Lithic::Models::CardSearchByPanResponse::type_]
|
254
|
-
end
|
255
|
-
end
|
256
|
-
end
|
257
|
-
end
|