modern_treasury 0.10.0 → 0.12.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 +40 -0
- data/README.md +10 -1
- data/lib/modern_treasury/client.rb +12 -0
- data/lib/modern_treasury/internal/transport/pooled_net_requester.rb +12 -10
- data/lib/modern_treasury/internal/util.rb +7 -2
- data/lib/modern_treasury/models/bulk_request_create_params.rb +146 -2
- data/lib/modern_treasury/models/child_legal_entity.rb +609 -0
- data/lib/modern_treasury/models/child_legal_entity_create.rb +63 -1
- data/lib/modern_treasury/models/connection_legal_entity.rb +2 -0
- data/lib/modern_treasury/models/connection_legal_entity_create_params.rb +54 -63
- data/lib/modern_treasury/models/connection_legal_entity_list_params.rb +2 -0
- data/lib/modern_treasury/models/counterparty_create_params.rb +54 -59
- data/lib/modern_treasury/models/expected_payment.rb +69 -1
- data/lib/modern_treasury/models/expected_payment_create_params.rb +65 -1
- data/lib/modern_treasury/models/expected_payment_update_params.rb +65 -1
- data/lib/modern_treasury/models/hold_create_params.rb +74 -0
- data/lib/modern_treasury/models/hold_create_response.rb +143 -0
- data/lib/modern_treasury/models/hold_list_params.rb +89 -0
- data/lib/modern_treasury/models/hold_list_response.rb +143 -0
- data/lib/modern_treasury/models/hold_retrieve_params.rb +14 -0
- data/lib/modern_treasury/models/hold_retrieve_response.rb +143 -0
- data/lib/modern_treasury/models/hold_update_params.rb +40 -0
- data/lib/modern_treasury/models/hold_update_response.rb +143 -0
- data/lib/modern_treasury/models/incoming_payment_detail.rb +5 -0
- data/lib/modern_treasury/models/incoming_payment_detail_create_async_params.rb +5 -0
- data/lib/modern_treasury/models/incoming_payment_detail_list_params.rb +5 -0
- data/lib/modern_treasury/models/internal_account.rb +10 -1
- data/lib/modern_treasury/models/internal_account_request_closure_params.rb +14 -0
- data/lib/modern_treasury/models/internal_account_update_params.rb +9 -1
- data/lib/modern_treasury/models/invoice.rb +2 -0
- data/lib/modern_treasury/models/invoice_create_params.rb +1 -19
- data/lib/modern_treasury/models/invoice_update_params.rb +1 -19
- data/lib/modern_treasury/models/journal_entry_list_params.rb +38 -0
- data/lib/modern_treasury/models/journal_entry_retrieve_params.rb +14 -0
- data/lib/modern_treasury/models/journal_report_list_params.rb +14 -0
- data/lib/modern_treasury/models/journal_report_retrieve_params.rb +14 -0
- data/lib/modern_treasury/models/journal_report_update_params.rb +26 -0
- data/lib/modern_treasury/models/ledger_entry.rb +10 -1
- data/lib/modern_treasury/models/ledger_entry_create_request.rb +10 -1
- data/lib/modern_treasury/models/ledger_transactions/ledger_transaction_version.rb +10 -1
- data/lib/modern_treasury/models/legal_entity.rb +61 -11
- data/lib/modern_treasury/models/legal_entity_association.rb +3 -559
- data/lib/modern_treasury/models/legal_entity_association_inline_create.rb +60 -0
- data/lib/modern_treasury/models/legal_entity_create_params.rb +54 -59
- data/lib/modern_treasury/models/legal_entity_update_params.rb +51 -1
- data/lib/modern_treasury/models/payment_order.rb +5 -1
- data/lib/modern_treasury/models/payment_order_subtype.rb +0 -1
- data/lib/modern_treasury/models/payment_reference.rb +5 -1
- data/lib/modern_treasury/models/return_object.rb +6 -1
- data/lib/modern_treasury/models/transaction.rb +2 -1
- data/lib/modern_treasury/models.rb +24 -0
- data/lib/modern_treasury/resources/expected_payments.rb +18 -2
- data/lib/modern_treasury/resources/holds.rb +126 -0
- data/lib/modern_treasury/resources/internal_accounts.rb +23 -1
- data/lib/modern_treasury/resources/invoices.rb +2 -10
- data/lib/modern_treasury/resources/journal_entries.rb +60 -0
- data/lib/modern_treasury/resources/journal_reports.rb +78 -0
- data/lib/modern_treasury/resources/ledger_accounts.rb +3 -3
- data/lib/modern_treasury/resources/ledger_transactions.rb +5 -2
- data/lib/modern_treasury/resources/legal_entities.rb +27 -3
- data/lib/modern_treasury/version.rb +1 -1
- data/lib/modern_treasury.rb +20 -0
- data/manifest.yaml +1 -0
- data/rbi/modern_treasury/client.rbi +9 -0
- data/rbi/modern_treasury/models/bulk_request_create_params.rbi +272 -0
- data/rbi/modern_treasury/models/child_legal_entity.rbi +969 -0
- data/rbi/modern_treasury/models/child_legal_entity_create.rbi +78 -0
- data/rbi/modern_treasury/models/connection_legal_entity.rbi +10 -0
- data/rbi/modern_treasury/models/connection_legal_entity_create_params.rbi +61 -135
- data/rbi/modern_treasury/models/connection_legal_entity_list_params.rbi +10 -0
- data/rbi/modern_treasury/models/counterparty_create_params.rbi +61 -135
- data/rbi/modern_treasury/models/expected_payment.rbi +136 -0
- data/rbi/modern_treasury/models/expected_payment_create_params.rbi +136 -0
- data/rbi/modern_treasury/models/expected_payment_update_params.rbi +136 -0
- data/rbi/modern_treasury/models/hold_create_params.rbi +125 -0
- data/rbi/modern_treasury/models/hold_create_response.rbi +232 -0
- data/rbi/modern_treasury/models/hold_list_params.rbi +150 -0
- data/rbi/modern_treasury/models/hold_list_response.rbi +225 -0
- data/rbi/modern_treasury/models/hold_retrieve_params.rbi +32 -0
- data/rbi/modern_treasury/models/hold_retrieve_response.rbi +234 -0
- data/rbi/modern_treasury/models/hold_update_params.rbi +79 -0
- data/rbi/modern_treasury/models/hold_update_response.rbi +232 -0
- data/rbi/modern_treasury/models/incoming_payment_detail.rbi +25 -0
- data/rbi/modern_treasury/models/incoming_payment_detail_create_async_params.rbi +25 -0
- data/rbi/modern_treasury/models/incoming_payment_detail_list_params.rbi +25 -0
- data/rbi/modern_treasury/models/internal_account.rbi +10 -0
- data/rbi/modern_treasury/models/internal_account_request_closure_params.rbi +32 -0
- data/rbi/modern_treasury/models/internal_account_update_params.rbi +11 -0
- data/rbi/modern_treasury/models/invoice_create_params.rbi +0 -20
- data/rbi/modern_treasury/models/invoice_update_params.rbi +0 -20
- data/rbi/modern_treasury/models/journal_entry_list_params.rbi +68 -0
- data/rbi/modern_treasury/models/journal_entry_retrieve_params.rbi +32 -0
- data/rbi/modern_treasury/models/journal_report_list_params.rbi +32 -0
- data/rbi/modern_treasury/models/journal_report_retrieve_params.rbi +32 -0
- data/rbi/modern_treasury/models/journal_report_update_params.rbi +52 -0
- data/rbi/modern_treasury/models/ledger_entry.rbi +10 -0
- data/rbi/modern_treasury/models/ledger_entry_create_request.rbi +13 -0
- data/rbi/modern_treasury/models/ledger_transactions/ledger_transaction_version.rbi +10 -0
- data/rbi/modern_treasury/models/legal_entity.rbi +67 -15
- data/rbi/modern_treasury/models/legal_entity_association.rbi +4 -962
- data/rbi/modern_treasury/models/legal_entity_association_inline_create.rbi +130 -0
- data/rbi/modern_treasury/models/legal_entity_create_params.rbi +61 -134
- data/rbi/modern_treasury/models/legal_entity_update_params.rbi +58 -0
- data/rbi/modern_treasury/models/payment_order.rbi +22 -2
- data/rbi/modern_treasury/models/payment_order_subtype.rbi +0 -1
- data/rbi/modern_treasury/models/payment_reference.rbi +22 -2
- data/rbi/modern_treasury/models/return_object.rbi +24 -2
- data/rbi/modern_treasury/models/transaction.rbi +7 -2
- data/rbi/modern_treasury/models.rbi +28 -0
- data/rbi/modern_treasury/resources/expected_payments.rbi +44 -0
- data/rbi/modern_treasury/resources/holds.rbi +108 -0
- data/rbi/modern_treasury/resources/internal_accounts.rbi +17 -0
- data/rbi/modern_treasury/resources/invoices.rbi +0 -16
- data/rbi/modern_treasury/resources/journal_entries.rbi +46 -0
- data/rbi/modern_treasury/resources/journal_reports.rbi +51 -0
- data/rbi/modern_treasury/resources/ledger_accounts.rbi +3 -3
- data/rbi/modern_treasury/resources/ledger_transactions.rbi +3 -2
- data/rbi/modern_treasury/resources/legal_entities.rbi +41 -1
- data/sig/modern_treasury/client.rbs +6 -0
- data/sig/modern_treasury/models/bulk_request_create_params.rbs +84 -0
- data/sig/modern_treasury/models/child_legal_entity.rbs +469 -0
- data/sig/modern_treasury/models/child_legal_entity_create.rbs +39 -0
- data/sig/modern_treasury/models/connection_legal_entity.rbs +4 -1
- data/sig/modern_treasury/models/connection_legal_entity_create_params.rbs +38 -60
- data/sig/modern_treasury/models/connection_legal_entity_list_params.rbs +4 -1
- data/sig/modern_treasury/models/counterparty_create_params.rbs +38 -60
- data/sig/modern_treasury/models/expected_payment.rbs +42 -0
- data/sig/modern_treasury/models/expected_payment_create_params.rbs +42 -0
- data/sig/modern_treasury/models/expected_payment_update_params.rbs +42 -0
- data/sig/modern_treasury/models/hold_create_params.rbs +66 -0
- data/sig/modern_treasury/models/hold_create_response.rbs +108 -0
- data/sig/modern_treasury/models/hold_list_params.rbs +76 -0
- data/sig/modern_treasury/models/hold_list_response.rbs +108 -0
- data/sig/modern_treasury/models/hold_retrieve_params.rbs +15 -0
- data/sig/modern_treasury/models/hold_retrieve_response.rbs +108 -0
- data/sig/modern_treasury/models/hold_update_params.rbs +41 -0
- data/sig/modern_treasury/models/hold_update_response.rbs +108 -0
- data/sig/modern_treasury/models/incoming_payment_detail.rbs +10 -0
- data/sig/modern_treasury/models/incoming_payment_detail_create_async_params.rbs +10 -0
- data/sig/modern_treasury/models/incoming_payment_detail_list_params.rbs +10 -0
- data/sig/modern_treasury/models/internal_account.rbs +5 -0
- data/sig/modern_treasury/models/internal_account_request_closure_params.rbs +15 -0
- data/sig/modern_treasury/models/internal_account_update_params.rbs +7 -0
- data/sig/modern_treasury/models/invoice_create_params.rbs +0 -10
- data/sig/modern_treasury/models/invoice_update_params.rbs +0 -10
- data/sig/modern_treasury/models/journal_entry_list_params.rbs +36 -0
- data/sig/modern_treasury/models/journal_entry_retrieve_params.rbs +15 -0
- data/sig/modern_treasury/models/journal_report_list_params.rbs +15 -0
- data/sig/modern_treasury/models/journal_report_retrieve_params.rbs +15 -0
- data/sig/modern_treasury/models/journal_report_update_params.rbs +32 -0
- data/sig/modern_treasury/models/ledger_entry.rbs +5 -0
- data/sig/modern_treasury/models/ledger_entry_create_request.rbs +7 -0
- data/sig/modern_treasury/models/ledger_transactions/ledger_transaction_version.rbs +5 -0
- data/sig/modern_treasury/models/legal_entity.rbs +38 -8
- data/sig/modern_treasury/models/legal_entity_association.rbs +4 -435
- data/sig/modern_treasury/models/legal_entity_association_inline_create.rbs +59 -0
- data/sig/modern_treasury/models/legal_entity_create_params.rbs +38 -60
- data/sig/modern_treasury/models/legal_entity_update_params.rbs +34 -0
- data/sig/modern_treasury/models/payment_order.rbs +10 -2
- data/sig/modern_treasury/models/payment_order_subtype.rbs +0 -2
- data/sig/modern_treasury/models/payment_reference.rbs +10 -2
- data/sig/modern_treasury/models/return_object.rbs +12 -2
- data/sig/modern_treasury/models/transaction.rbs +4 -2
- data/sig/modern_treasury/models.rbs +24 -0
- data/sig/modern_treasury/resources/expected_payments.rbs +8 -0
- data/sig/modern_treasury/resources/holds.rbs +38 -0
- data/sig/modern_treasury/resources/internal_accounts.rbs +6 -0
- data/sig/modern_treasury/resources/invoices.rbs +0 -4
- data/sig/modern_treasury/resources/journal_entries.rbs +19 -0
- data/sig/modern_treasury/resources/journal_reports.rbs +21 -0
- data/sig/modern_treasury/resources/legal_entities.rbs +13 -1
- metadata +59 -2
|
@@ -38,6 +38,10 @@ module ModernTreasury
|
|
|
38
38
|
end
|
|
39
39
|
attr_writer :bank_settings
|
|
40
40
|
|
|
41
|
+
# A description of the business.
|
|
42
|
+
sig { returns(T.nilable(String)) }
|
|
43
|
+
attr_accessor :business_description
|
|
44
|
+
|
|
41
45
|
# The business's legal business name.
|
|
42
46
|
sig { returns(T.nilable(String)) }
|
|
43
47
|
attr_accessor :business_name
|
|
@@ -57,6 +61,11 @@ module ModernTreasury
|
|
|
57
61
|
end
|
|
58
62
|
attr_writer :compliance_details
|
|
59
63
|
|
|
64
|
+
# The country code where the business is incorporated in the ISO 3166-1 alpha-2 or
|
|
65
|
+
# alpha-3 formats.
|
|
66
|
+
sig { returns(T.nilable(String)) }
|
|
67
|
+
attr_accessor :country_of_incorporation
|
|
68
|
+
|
|
60
69
|
# A business's formation date (YYYY-MM-DD).
|
|
61
70
|
sig { returns(T.nilable(Date)) }
|
|
62
71
|
attr_accessor :date_formed
|
|
@@ -75,6 +84,10 @@ module ModernTreasury
|
|
|
75
84
|
sig { returns(T.nilable(String)) }
|
|
76
85
|
attr_accessor :email
|
|
77
86
|
|
|
87
|
+
# Monthly expected transaction volume in entity's local currency.
|
|
88
|
+
sig { returns(T.nilable(Integer)) }
|
|
89
|
+
attr_accessor :expected_activity_volume
|
|
90
|
+
|
|
78
91
|
# An individual's first name.
|
|
79
92
|
sig { returns(T.nilable(String)) }
|
|
80
93
|
attr_accessor :first_name
|
|
@@ -111,10 +124,24 @@ module ModernTreasury
|
|
|
111
124
|
end
|
|
112
125
|
attr_writer :industry_classifications
|
|
113
126
|
|
|
127
|
+
# A description of the intended use of the legal entity.
|
|
128
|
+
sig { returns(T.nilable(String)) }
|
|
129
|
+
attr_accessor :intended_use
|
|
130
|
+
|
|
114
131
|
# An individual's last name.
|
|
115
132
|
sig { returns(T.nilable(String)) }
|
|
116
133
|
attr_accessor :last_name
|
|
117
134
|
|
|
135
|
+
# The legal entity associations and its child legal entities.
|
|
136
|
+
sig do
|
|
137
|
+
returns(
|
|
138
|
+
T.nilable(
|
|
139
|
+
T::Array[ModernTreasury::LegalEntityAssociationInlineCreate]
|
|
140
|
+
)
|
|
141
|
+
)
|
|
142
|
+
end
|
|
143
|
+
attr_accessor :legal_entity_associations
|
|
144
|
+
|
|
118
145
|
# The type of legal entity.
|
|
119
146
|
sig do
|
|
120
147
|
returns(
|
|
@@ -155,6 +182,14 @@ module ModernTreasury
|
|
|
155
182
|
sig { returns(T.nilable(String)) }
|
|
156
183
|
attr_accessor :middle_name
|
|
157
184
|
|
|
185
|
+
# A list of countries where the business operates (ISO 3166-1 alpha-2 or alpha-3
|
|
186
|
+
# codes).
|
|
187
|
+
sig { returns(T.nilable(T::Array[String])) }
|
|
188
|
+
attr_reader :operating_jurisdictions
|
|
189
|
+
|
|
190
|
+
sig { params(operating_jurisdictions: T::Array[String]).void }
|
|
191
|
+
attr_writer :operating_jurisdictions
|
|
192
|
+
|
|
158
193
|
sig do
|
|
159
194
|
returns(
|
|
160
195
|
T.nilable(
|
|
@@ -186,6 +221,13 @@ module ModernTreasury
|
|
|
186
221
|
sig { returns(T.nilable(String)) }
|
|
187
222
|
attr_accessor :prefix
|
|
188
223
|
|
|
224
|
+
# A list of primary social media URLs for the business.
|
|
225
|
+
sig { returns(T.nilable(T::Array[String])) }
|
|
226
|
+
attr_reader :primary_social_media_sites
|
|
227
|
+
|
|
228
|
+
sig { params(primary_social_media_sites: T::Array[String]).void }
|
|
229
|
+
attr_writer :primary_social_media_sites
|
|
230
|
+
|
|
189
231
|
# The risk rating of the legal entity. One of low, medium, high.
|
|
190
232
|
sig do
|
|
191
233
|
returns(
|
|
@@ -223,20 +265,28 @@ module ModernTreasury
|
|
|
223
265
|
T::Array[ModernTreasury::LegalEntityAddressCreateRequest::OrHash],
|
|
224
266
|
bank_settings:
|
|
225
267
|
T.nilable(ModernTreasury::LegalEntityBankSettings::OrHash),
|
|
268
|
+
business_description: T.nilable(String),
|
|
226
269
|
business_name: T.nilable(String),
|
|
227
270
|
citizenship_country: T.nilable(String),
|
|
228
271
|
compliance_details:
|
|
229
272
|
T.nilable(ModernTreasury::LegalEntityComplianceDetail::OrHash),
|
|
273
|
+
country_of_incorporation: T.nilable(String),
|
|
230
274
|
date_formed: T.nilable(Date),
|
|
231
275
|
date_of_birth: T.nilable(Date),
|
|
232
276
|
doing_business_as_names: T::Array[String],
|
|
233
277
|
email: T.nilable(String),
|
|
278
|
+
expected_activity_volume: T.nilable(Integer),
|
|
234
279
|
first_name: T.nilable(String),
|
|
235
280
|
identifications:
|
|
236
281
|
T::Array[ModernTreasury::IdentificationCreateRequest::OrHash],
|
|
237
282
|
industry_classifications:
|
|
238
283
|
T::Array[ModernTreasury::LegalEntityIndustryClassification::OrHash],
|
|
284
|
+
intended_use: T.nilable(String),
|
|
239
285
|
last_name: T.nilable(String),
|
|
286
|
+
legal_entity_associations:
|
|
287
|
+
T.nilable(
|
|
288
|
+
T::Array[ModernTreasury::LegalEntityAssociationInlineCreate]
|
|
289
|
+
),
|
|
240
290
|
legal_entity_type:
|
|
241
291
|
ModernTreasury::ChildLegalEntityCreate::LegalEntityType::OrSymbol,
|
|
242
292
|
legal_structure:
|
|
@@ -245,6 +295,7 @@ module ModernTreasury
|
|
|
245
295
|
),
|
|
246
296
|
metadata: T::Hash[Symbol, String],
|
|
247
297
|
middle_name: T.nilable(String),
|
|
298
|
+
operating_jurisdictions: T::Array[String],
|
|
248
299
|
phone_numbers:
|
|
249
300
|
T::Array[
|
|
250
301
|
ModernTreasury::ChildLegalEntityCreate::PhoneNumber::OrHash
|
|
@@ -252,6 +303,7 @@ module ModernTreasury
|
|
|
252
303
|
politically_exposed_person: T.nilable(T::Boolean),
|
|
253
304
|
preferred_name: T.nilable(String),
|
|
254
305
|
prefix: T.nilable(String),
|
|
306
|
+
primary_social_media_sites: T::Array[String],
|
|
255
307
|
risk_rating:
|
|
256
308
|
T.nilable(
|
|
257
309
|
ModernTreasury::ChildLegalEntityCreate::RiskRating::OrSymbol
|
|
@@ -268,11 +320,16 @@ module ModernTreasury
|
|
|
268
320
|
# A list of addresses for the entity.
|
|
269
321
|
addresses: nil,
|
|
270
322
|
bank_settings: nil,
|
|
323
|
+
# A description of the business.
|
|
324
|
+
business_description: nil,
|
|
271
325
|
# The business's legal business name.
|
|
272
326
|
business_name: nil,
|
|
273
327
|
# The country of citizenship for an individual.
|
|
274
328
|
citizenship_country: nil,
|
|
275
329
|
compliance_details: nil,
|
|
330
|
+
# The country code where the business is incorporated in the ISO 3166-1 alpha-2 or
|
|
331
|
+
# alpha-3 formats.
|
|
332
|
+
country_of_incorporation: nil,
|
|
276
333
|
# A business's formation date (YYYY-MM-DD).
|
|
277
334
|
date_formed: nil,
|
|
278
335
|
# An individual's date of birth (YYYY-MM-DD).
|
|
@@ -280,14 +337,20 @@ module ModernTreasury
|
|
|
280
337
|
doing_business_as_names: nil,
|
|
281
338
|
# The entity's primary email.
|
|
282
339
|
email: nil,
|
|
340
|
+
# Monthly expected transaction volume in entity's local currency.
|
|
341
|
+
expected_activity_volume: nil,
|
|
283
342
|
# An individual's first name.
|
|
284
343
|
first_name: nil,
|
|
285
344
|
# A list of identifications for the legal entity.
|
|
286
345
|
identifications: nil,
|
|
287
346
|
# A list of industry classifications for the legal entity.
|
|
288
347
|
industry_classifications: nil,
|
|
348
|
+
# A description of the intended use of the legal entity.
|
|
349
|
+
intended_use: nil,
|
|
289
350
|
# An individual's last name.
|
|
290
351
|
last_name: nil,
|
|
352
|
+
# The legal entity associations and its child legal entities.
|
|
353
|
+
legal_entity_associations: nil,
|
|
291
354
|
# The type of legal entity.
|
|
292
355
|
legal_entity_type: nil,
|
|
293
356
|
# The business's legal structure.
|
|
@@ -297,6 +360,9 @@ module ModernTreasury
|
|
|
297
360
|
metadata: nil,
|
|
298
361
|
# An individual's middle name.
|
|
299
362
|
middle_name: nil,
|
|
363
|
+
# A list of countries where the business operates (ISO 3166-1 alpha-2 or alpha-3
|
|
364
|
+
# codes).
|
|
365
|
+
operating_jurisdictions: nil,
|
|
300
366
|
phone_numbers: nil,
|
|
301
367
|
# Whether the individual is a politically exposed person.
|
|
302
368
|
politically_exposed_person: nil,
|
|
@@ -304,6 +370,8 @@ module ModernTreasury
|
|
|
304
370
|
preferred_name: nil,
|
|
305
371
|
# An individual's prefix.
|
|
306
372
|
prefix: nil,
|
|
373
|
+
# A list of primary social media URLs for the business.
|
|
374
|
+
primary_social_media_sites: nil,
|
|
307
375
|
# The risk rating of the legal entity. One of low, medium, high.
|
|
308
376
|
risk_rating: nil,
|
|
309
377
|
# An individual's suffix.
|
|
@@ -320,20 +388,28 @@ module ModernTreasury
|
|
|
320
388
|
addresses:
|
|
321
389
|
T::Array[ModernTreasury::LegalEntityAddressCreateRequest],
|
|
322
390
|
bank_settings: T.nilable(ModernTreasury::LegalEntityBankSettings),
|
|
391
|
+
business_description: T.nilable(String),
|
|
323
392
|
business_name: T.nilable(String),
|
|
324
393
|
citizenship_country: T.nilable(String),
|
|
325
394
|
compliance_details:
|
|
326
395
|
T.nilable(ModernTreasury::LegalEntityComplianceDetail),
|
|
396
|
+
country_of_incorporation: T.nilable(String),
|
|
327
397
|
date_formed: T.nilable(Date),
|
|
328
398
|
date_of_birth: T.nilable(Date),
|
|
329
399
|
doing_business_as_names: T::Array[String],
|
|
330
400
|
email: T.nilable(String),
|
|
401
|
+
expected_activity_volume: T.nilable(Integer),
|
|
331
402
|
first_name: T.nilable(String),
|
|
332
403
|
identifications:
|
|
333
404
|
T::Array[ModernTreasury::IdentificationCreateRequest],
|
|
334
405
|
industry_classifications:
|
|
335
406
|
T::Array[ModernTreasury::LegalEntityIndustryClassification],
|
|
407
|
+
intended_use: T.nilable(String),
|
|
336
408
|
last_name: T.nilable(String),
|
|
409
|
+
legal_entity_associations:
|
|
410
|
+
T.nilable(
|
|
411
|
+
T::Array[ModernTreasury::LegalEntityAssociationInlineCreate]
|
|
412
|
+
),
|
|
337
413
|
legal_entity_type:
|
|
338
414
|
ModernTreasury::ChildLegalEntityCreate::LegalEntityType::OrSymbol,
|
|
339
415
|
legal_structure:
|
|
@@ -342,11 +418,13 @@ module ModernTreasury
|
|
|
342
418
|
),
|
|
343
419
|
metadata: T::Hash[Symbol, String],
|
|
344
420
|
middle_name: T.nilable(String),
|
|
421
|
+
operating_jurisdictions: T::Array[String],
|
|
345
422
|
phone_numbers:
|
|
346
423
|
T::Array[ModernTreasury::ChildLegalEntityCreate::PhoneNumber],
|
|
347
424
|
politically_exposed_person: T.nilable(T::Boolean),
|
|
348
425
|
preferred_name: T.nilable(String),
|
|
349
426
|
prefix: T.nilable(String),
|
|
427
|
+
primary_social_media_sites: T::Array[String],
|
|
350
428
|
risk_rating:
|
|
351
429
|
T.nilable(
|
|
352
430
|
ModernTreasury::ChildLegalEntityCreate::RiskRating::OrSymbol
|
|
@@ -112,6 +112,11 @@ module ModernTreasury
|
|
|
112
112
|
end
|
|
113
113
|
OrSymbol = T.type_alias { T.any(Symbol, String) }
|
|
114
114
|
|
|
115
|
+
CLOSED =
|
|
116
|
+
T.let(
|
|
117
|
+
:closed,
|
|
118
|
+
ModernTreasury::ConnectionLegalEntity::Status::TaggedSymbol
|
|
119
|
+
)
|
|
115
120
|
COMPLETED =
|
|
116
121
|
T.let(
|
|
117
122
|
:completed,
|
|
@@ -132,6 +137,11 @@ module ModernTreasury
|
|
|
132
137
|
:processing,
|
|
133
138
|
ModernTreasury::ConnectionLegalEntity::Status::TaggedSymbol
|
|
134
139
|
)
|
|
140
|
+
SUSPENDED =
|
|
141
|
+
T.let(
|
|
142
|
+
:suspended,
|
|
143
|
+
ModernTreasury::ConnectionLegalEntity::Status::TaggedSymbol
|
|
144
|
+
)
|
|
135
145
|
|
|
136
146
|
sig do
|
|
137
147
|
override.returns(
|
|
@@ -113,6 +113,10 @@ module ModernTreasury
|
|
|
113
113
|
end
|
|
114
114
|
attr_writer :bank_settings
|
|
115
115
|
|
|
116
|
+
# A description of the business.
|
|
117
|
+
sig { returns(T.nilable(String)) }
|
|
118
|
+
attr_accessor :business_description
|
|
119
|
+
|
|
116
120
|
# The business's legal business name.
|
|
117
121
|
sig { returns(T.nilable(String)) }
|
|
118
122
|
attr_accessor :business_name
|
|
@@ -132,6 +136,11 @@ module ModernTreasury
|
|
|
132
136
|
end
|
|
133
137
|
attr_writer :compliance_details
|
|
134
138
|
|
|
139
|
+
# The country code where the business is incorporated in the ISO 3166-1 alpha-2 or
|
|
140
|
+
# alpha-3 formats.
|
|
141
|
+
sig { returns(T.nilable(String)) }
|
|
142
|
+
attr_accessor :country_of_incorporation
|
|
143
|
+
|
|
135
144
|
# A business's formation date (YYYY-MM-DD).
|
|
136
145
|
sig { returns(T.nilable(Date)) }
|
|
137
146
|
attr_accessor :date_formed
|
|
@@ -150,6 +159,10 @@ module ModernTreasury
|
|
|
150
159
|
sig { returns(T.nilable(String)) }
|
|
151
160
|
attr_accessor :email
|
|
152
161
|
|
|
162
|
+
# Monthly expected transaction volume in entity's local currency.
|
|
163
|
+
sig { returns(T.nilable(Integer)) }
|
|
164
|
+
attr_accessor :expected_activity_volume
|
|
165
|
+
|
|
153
166
|
# An individual's first name.
|
|
154
167
|
sig { returns(T.nilable(String)) }
|
|
155
168
|
attr_accessor :first_name
|
|
@@ -190,6 +203,10 @@ module ModernTreasury
|
|
|
190
203
|
end
|
|
191
204
|
attr_writer :industry_classifications
|
|
192
205
|
|
|
206
|
+
# A description of the intended use of the legal entity.
|
|
207
|
+
sig { returns(T.nilable(String)) }
|
|
208
|
+
attr_accessor :intended_use
|
|
209
|
+
|
|
193
210
|
# An individual's last name.
|
|
194
211
|
sig { returns(T.nilable(String)) }
|
|
195
212
|
attr_accessor :last_name
|
|
@@ -198,9 +215,7 @@ module ModernTreasury
|
|
|
198
215
|
sig do
|
|
199
216
|
returns(
|
|
200
217
|
T.nilable(
|
|
201
|
-
T::Array[
|
|
202
|
-
ModernTreasury::ConnectionLegalEntityCreateParams::LegalEntity::LegalEntityAssociation
|
|
203
|
-
]
|
|
218
|
+
T::Array[ModernTreasury::LegalEntityAssociationInlineCreate]
|
|
204
219
|
)
|
|
205
220
|
)
|
|
206
221
|
end
|
|
@@ -246,6 +261,14 @@ module ModernTreasury
|
|
|
246
261
|
sig { returns(T.nilable(String)) }
|
|
247
262
|
attr_accessor :middle_name
|
|
248
263
|
|
|
264
|
+
# A list of countries where the business operates (ISO 3166-1 alpha-2 or alpha-3
|
|
265
|
+
# codes).
|
|
266
|
+
sig { returns(T.nilable(T::Array[String])) }
|
|
267
|
+
attr_reader :operating_jurisdictions
|
|
268
|
+
|
|
269
|
+
sig { params(operating_jurisdictions: T::Array[String]).void }
|
|
270
|
+
attr_writer :operating_jurisdictions
|
|
271
|
+
|
|
249
272
|
sig do
|
|
250
273
|
returns(
|
|
251
274
|
T.nilable(
|
|
@@ -279,6 +302,13 @@ module ModernTreasury
|
|
|
279
302
|
sig { returns(T.nilable(String)) }
|
|
280
303
|
attr_accessor :prefix
|
|
281
304
|
|
|
305
|
+
# A list of primary social media URLs for the business.
|
|
306
|
+
sig { returns(T.nilable(T::Array[String])) }
|
|
307
|
+
attr_reader :primary_social_media_sites
|
|
308
|
+
|
|
309
|
+
sig { params(primary_social_media_sites: T::Array[String]).void }
|
|
310
|
+
attr_writer :primary_social_media_sites
|
|
311
|
+
|
|
282
312
|
# The risk rating of the legal entity. One of low, medium, high.
|
|
283
313
|
sig do
|
|
284
314
|
returns(
|
|
@@ -319,14 +349,17 @@ module ModernTreasury
|
|
|
319
349
|
T::Array[ModernTreasury::LegalEntityAddressCreateRequest::OrHash],
|
|
320
350
|
bank_settings:
|
|
321
351
|
T.nilable(ModernTreasury::LegalEntityBankSettings::OrHash),
|
|
352
|
+
business_description: T.nilable(String),
|
|
322
353
|
business_name: T.nilable(String),
|
|
323
354
|
citizenship_country: T.nilable(String),
|
|
324
355
|
compliance_details:
|
|
325
356
|
T.nilable(ModernTreasury::LegalEntityComplianceDetail::OrHash),
|
|
357
|
+
country_of_incorporation: T.nilable(String),
|
|
326
358
|
date_formed: T.nilable(Date),
|
|
327
359
|
date_of_birth: T.nilable(Date),
|
|
328
360
|
doing_business_as_names: T::Array[String],
|
|
329
361
|
email: T.nilable(String),
|
|
362
|
+
expected_activity_volume: T.nilable(Integer),
|
|
330
363
|
first_name: T.nilable(String),
|
|
331
364
|
identifications:
|
|
332
365
|
T::Array[ModernTreasury::IdentificationCreateRequest::OrHash],
|
|
@@ -334,11 +367,12 @@ module ModernTreasury
|
|
|
334
367
|
T::Array[
|
|
335
368
|
ModernTreasury::LegalEntityIndustryClassification::OrHash
|
|
336
369
|
],
|
|
370
|
+
intended_use: T.nilable(String),
|
|
337
371
|
last_name: T.nilable(String),
|
|
338
372
|
legal_entity_associations:
|
|
339
373
|
T.nilable(
|
|
340
374
|
T::Array[
|
|
341
|
-
ModernTreasury::
|
|
375
|
+
ModernTreasury::LegalEntityAssociationInlineCreate::OrHash
|
|
342
376
|
]
|
|
343
377
|
),
|
|
344
378
|
legal_entity_type:
|
|
@@ -349,6 +383,7 @@ module ModernTreasury
|
|
|
349
383
|
),
|
|
350
384
|
metadata: T::Hash[Symbol, String],
|
|
351
385
|
middle_name: T.nilable(String),
|
|
386
|
+
operating_jurisdictions: T::Array[String],
|
|
352
387
|
phone_numbers:
|
|
353
388
|
T::Array[
|
|
354
389
|
ModernTreasury::ConnectionLegalEntityCreateParams::LegalEntity::PhoneNumber::OrHash
|
|
@@ -356,6 +391,7 @@ module ModernTreasury
|
|
|
356
391
|
politically_exposed_person: T.nilable(T::Boolean),
|
|
357
392
|
preferred_name: T.nilable(String),
|
|
358
393
|
prefix: T.nilable(String),
|
|
394
|
+
primary_social_media_sites: T::Array[String],
|
|
359
395
|
risk_rating:
|
|
360
396
|
T.nilable(
|
|
361
397
|
ModernTreasury::ConnectionLegalEntityCreateParams::LegalEntity::RiskRating::OrSymbol
|
|
@@ -372,11 +408,16 @@ module ModernTreasury
|
|
|
372
408
|
# A list of addresses for the entity.
|
|
373
409
|
addresses: nil,
|
|
374
410
|
bank_settings: nil,
|
|
411
|
+
# A description of the business.
|
|
412
|
+
business_description: nil,
|
|
375
413
|
# The business's legal business name.
|
|
376
414
|
business_name: nil,
|
|
377
415
|
# The country of citizenship for an individual.
|
|
378
416
|
citizenship_country: nil,
|
|
379
417
|
compliance_details: nil,
|
|
418
|
+
# The country code where the business is incorporated in the ISO 3166-1 alpha-2 or
|
|
419
|
+
# alpha-3 formats.
|
|
420
|
+
country_of_incorporation: nil,
|
|
380
421
|
# A business's formation date (YYYY-MM-DD).
|
|
381
422
|
date_formed: nil,
|
|
382
423
|
# An individual's date of birth (YYYY-MM-DD).
|
|
@@ -384,12 +425,16 @@ module ModernTreasury
|
|
|
384
425
|
doing_business_as_names: nil,
|
|
385
426
|
# The entity's primary email.
|
|
386
427
|
email: nil,
|
|
428
|
+
# Monthly expected transaction volume in entity's local currency.
|
|
429
|
+
expected_activity_volume: nil,
|
|
387
430
|
# An individual's first name.
|
|
388
431
|
first_name: nil,
|
|
389
432
|
# A list of identifications for the legal entity.
|
|
390
433
|
identifications: nil,
|
|
391
434
|
# A list of industry classifications for the legal entity.
|
|
392
435
|
industry_classifications: nil,
|
|
436
|
+
# A description of the intended use of the legal entity.
|
|
437
|
+
intended_use: nil,
|
|
393
438
|
# An individual's last name.
|
|
394
439
|
last_name: nil,
|
|
395
440
|
# The legal entity associations and its child legal entities.
|
|
@@ -403,6 +448,9 @@ module ModernTreasury
|
|
|
403
448
|
metadata: nil,
|
|
404
449
|
# An individual's middle name.
|
|
405
450
|
middle_name: nil,
|
|
451
|
+
# A list of countries where the business operates (ISO 3166-1 alpha-2 or alpha-3
|
|
452
|
+
# codes).
|
|
453
|
+
operating_jurisdictions: nil,
|
|
406
454
|
phone_numbers: nil,
|
|
407
455
|
# Whether the individual is a politically exposed person.
|
|
408
456
|
politically_exposed_person: nil,
|
|
@@ -410,6 +458,8 @@ module ModernTreasury
|
|
|
410
458
|
preferred_name: nil,
|
|
411
459
|
# An individual's prefix.
|
|
412
460
|
prefix: nil,
|
|
461
|
+
# A list of primary social media URLs for the business.
|
|
462
|
+
primary_social_media_sites: nil,
|
|
413
463
|
# The risk rating of the legal entity. One of low, medium, high.
|
|
414
464
|
risk_rating: nil,
|
|
415
465
|
# An individual's suffix.
|
|
@@ -426,25 +476,27 @@ module ModernTreasury
|
|
|
426
476
|
addresses:
|
|
427
477
|
T::Array[ModernTreasury::LegalEntityAddressCreateRequest],
|
|
428
478
|
bank_settings: T.nilable(ModernTreasury::LegalEntityBankSettings),
|
|
479
|
+
business_description: T.nilable(String),
|
|
429
480
|
business_name: T.nilable(String),
|
|
430
481
|
citizenship_country: T.nilable(String),
|
|
431
482
|
compliance_details:
|
|
432
483
|
T.nilable(ModernTreasury::LegalEntityComplianceDetail),
|
|
484
|
+
country_of_incorporation: T.nilable(String),
|
|
433
485
|
date_formed: T.nilable(Date),
|
|
434
486
|
date_of_birth: T.nilable(Date),
|
|
435
487
|
doing_business_as_names: T::Array[String],
|
|
436
488
|
email: T.nilable(String),
|
|
489
|
+
expected_activity_volume: T.nilable(Integer),
|
|
437
490
|
first_name: T.nilable(String),
|
|
438
491
|
identifications:
|
|
439
492
|
T::Array[ModernTreasury::IdentificationCreateRequest],
|
|
440
493
|
industry_classifications:
|
|
441
494
|
T::Array[ModernTreasury::LegalEntityIndustryClassification],
|
|
495
|
+
intended_use: T.nilable(String),
|
|
442
496
|
last_name: T.nilable(String),
|
|
443
497
|
legal_entity_associations:
|
|
444
498
|
T.nilable(
|
|
445
|
-
T::Array[
|
|
446
|
-
ModernTreasury::ConnectionLegalEntityCreateParams::LegalEntity::LegalEntityAssociation
|
|
447
|
-
]
|
|
499
|
+
T::Array[ModernTreasury::LegalEntityAssociationInlineCreate]
|
|
448
500
|
),
|
|
449
501
|
legal_entity_type:
|
|
450
502
|
ModernTreasury::ConnectionLegalEntityCreateParams::LegalEntity::LegalEntityType::OrSymbol,
|
|
@@ -454,6 +506,7 @@ module ModernTreasury
|
|
|
454
506
|
),
|
|
455
507
|
metadata: T::Hash[Symbol, String],
|
|
456
508
|
middle_name: T.nilable(String),
|
|
509
|
+
operating_jurisdictions: T::Array[String],
|
|
457
510
|
phone_numbers:
|
|
458
511
|
T::Array[
|
|
459
512
|
ModernTreasury::ConnectionLegalEntityCreateParams::LegalEntity::PhoneNumber
|
|
@@ -461,6 +514,7 @@ module ModernTreasury
|
|
|
461
514
|
politically_exposed_person: T.nilable(T::Boolean),
|
|
462
515
|
preferred_name: T.nilable(String),
|
|
463
516
|
prefix: T.nilable(String),
|
|
517
|
+
primary_social_media_sites: T::Array[String],
|
|
464
518
|
risk_rating:
|
|
465
519
|
T.nilable(
|
|
466
520
|
ModernTreasury::ConnectionLegalEntityCreateParams::LegalEntity::RiskRating::OrSymbol
|
|
@@ -475,134 +529,6 @@ module ModernTreasury
|
|
|
475
529
|
def to_hash
|
|
476
530
|
end
|
|
477
531
|
|
|
478
|
-
class LegalEntityAssociation < ModernTreasury::Internal::Type::BaseModel
|
|
479
|
-
OrHash =
|
|
480
|
-
T.type_alias do
|
|
481
|
-
T.any(
|
|
482
|
-
ModernTreasury::ConnectionLegalEntityCreateParams::LegalEntity::LegalEntityAssociation,
|
|
483
|
-
ModernTreasury::Internal::AnyHash
|
|
484
|
-
)
|
|
485
|
-
end
|
|
486
|
-
|
|
487
|
-
sig do
|
|
488
|
-
returns(
|
|
489
|
-
T::Array[
|
|
490
|
-
ModernTreasury::ConnectionLegalEntityCreateParams::LegalEntity::LegalEntityAssociation::RelationshipType::OrSymbol
|
|
491
|
-
]
|
|
492
|
-
)
|
|
493
|
-
end
|
|
494
|
-
attr_accessor :relationship_types
|
|
495
|
-
|
|
496
|
-
# The child legal entity.
|
|
497
|
-
sig { returns(T.nilable(ModernTreasury::ChildLegalEntityCreate)) }
|
|
498
|
-
attr_reader :child_legal_entity
|
|
499
|
-
|
|
500
|
-
sig do
|
|
501
|
-
params(
|
|
502
|
-
child_legal_entity: ModernTreasury::ChildLegalEntityCreate::OrHash
|
|
503
|
-
).void
|
|
504
|
-
end
|
|
505
|
-
attr_writer :child_legal_entity
|
|
506
|
-
|
|
507
|
-
# The ID of the child legal entity.
|
|
508
|
-
sig { returns(T.nilable(String)) }
|
|
509
|
-
attr_reader :child_legal_entity_id
|
|
510
|
-
|
|
511
|
-
sig { params(child_legal_entity_id: String).void }
|
|
512
|
-
attr_writer :child_legal_entity_id
|
|
513
|
-
|
|
514
|
-
# The child entity's ownership percentage iff they are a beneficial owner.
|
|
515
|
-
sig { returns(T.nilable(Integer)) }
|
|
516
|
-
attr_accessor :ownership_percentage
|
|
517
|
-
|
|
518
|
-
# The job title of the child entity at the parent entity.
|
|
519
|
-
sig { returns(T.nilable(String)) }
|
|
520
|
-
attr_accessor :title
|
|
521
|
-
|
|
522
|
-
sig do
|
|
523
|
-
params(
|
|
524
|
-
relationship_types:
|
|
525
|
-
T::Array[
|
|
526
|
-
ModernTreasury::ConnectionLegalEntityCreateParams::LegalEntity::LegalEntityAssociation::RelationshipType::OrSymbol
|
|
527
|
-
],
|
|
528
|
-
child_legal_entity:
|
|
529
|
-
ModernTreasury::ChildLegalEntityCreate::OrHash,
|
|
530
|
-
child_legal_entity_id: String,
|
|
531
|
-
ownership_percentage: T.nilable(Integer),
|
|
532
|
-
title: T.nilable(String)
|
|
533
|
-
).returns(T.attached_class)
|
|
534
|
-
end
|
|
535
|
-
def self.new(
|
|
536
|
-
relationship_types:,
|
|
537
|
-
# The child legal entity.
|
|
538
|
-
child_legal_entity: nil,
|
|
539
|
-
# The ID of the child legal entity.
|
|
540
|
-
child_legal_entity_id: nil,
|
|
541
|
-
# The child entity's ownership percentage iff they are a beneficial owner.
|
|
542
|
-
ownership_percentage: nil,
|
|
543
|
-
# The job title of the child entity at the parent entity.
|
|
544
|
-
title: nil
|
|
545
|
-
)
|
|
546
|
-
end
|
|
547
|
-
|
|
548
|
-
sig do
|
|
549
|
-
override.returns(
|
|
550
|
-
{
|
|
551
|
-
relationship_types:
|
|
552
|
-
T::Array[
|
|
553
|
-
ModernTreasury::ConnectionLegalEntityCreateParams::LegalEntity::LegalEntityAssociation::RelationshipType::OrSymbol
|
|
554
|
-
],
|
|
555
|
-
child_legal_entity: ModernTreasury::ChildLegalEntityCreate,
|
|
556
|
-
child_legal_entity_id: String,
|
|
557
|
-
ownership_percentage: T.nilable(Integer),
|
|
558
|
-
title: T.nilable(String)
|
|
559
|
-
}
|
|
560
|
-
)
|
|
561
|
-
end
|
|
562
|
-
def to_hash
|
|
563
|
-
end
|
|
564
|
-
|
|
565
|
-
# A list of relationship types for how the child entity relates to parent entity.
|
|
566
|
-
module RelationshipType
|
|
567
|
-
extend ModernTreasury::Internal::Type::Enum
|
|
568
|
-
|
|
569
|
-
TaggedSymbol =
|
|
570
|
-
T.type_alias do
|
|
571
|
-
T.all(
|
|
572
|
-
Symbol,
|
|
573
|
-
ModernTreasury::ConnectionLegalEntityCreateParams::LegalEntity::LegalEntityAssociation::RelationshipType
|
|
574
|
-
)
|
|
575
|
-
end
|
|
576
|
-
OrSymbol = T.type_alias { T.any(Symbol, String) }
|
|
577
|
-
|
|
578
|
-
AUTHORIZED_SIGNER =
|
|
579
|
-
T.let(
|
|
580
|
-
:authorized_signer,
|
|
581
|
-
ModernTreasury::ConnectionLegalEntityCreateParams::LegalEntity::LegalEntityAssociation::RelationshipType::TaggedSymbol
|
|
582
|
-
)
|
|
583
|
-
BENEFICIAL_OWNER =
|
|
584
|
-
T.let(
|
|
585
|
-
:beneficial_owner,
|
|
586
|
-
ModernTreasury::ConnectionLegalEntityCreateParams::LegalEntity::LegalEntityAssociation::RelationshipType::TaggedSymbol
|
|
587
|
-
)
|
|
588
|
-
CONTROL_PERSON =
|
|
589
|
-
T.let(
|
|
590
|
-
:control_person,
|
|
591
|
-
ModernTreasury::ConnectionLegalEntityCreateParams::LegalEntity::LegalEntityAssociation::RelationshipType::TaggedSymbol
|
|
592
|
-
)
|
|
593
|
-
|
|
594
|
-
sig do
|
|
595
|
-
override.returns(
|
|
596
|
-
T::Array[
|
|
597
|
-
ModernTreasury::ConnectionLegalEntityCreateParams::LegalEntity::LegalEntityAssociation::RelationshipType::TaggedSymbol
|
|
598
|
-
]
|
|
599
|
-
)
|
|
600
|
-
end
|
|
601
|
-
def self.values
|
|
602
|
-
end
|
|
603
|
-
end
|
|
604
|
-
end
|
|
605
|
-
|
|
606
532
|
# The type of legal entity.
|
|
607
533
|
module LegalEntityType
|
|
608
534
|
extend ModernTreasury::Internal::Type::Enum
|
|
@@ -101,6 +101,11 @@ module ModernTreasury
|
|
|
101
101
|
end
|
|
102
102
|
OrSymbol = T.type_alias { T.any(Symbol, String) }
|
|
103
103
|
|
|
104
|
+
CLOSED =
|
|
105
|
+
T.let(
|
|
106
|
+
:closed,
|
|
107
|
+
ModernTreasury::ConnectionLegalEntityListParams::Status::TaggedSymbol
|
|
108
|
+
)
|
|
104
109
|
COMPLETED =
|
|
105
110
|
T.let(
|
|
106
111
|
:completed,
|
|
@@ -121,6 +126,11 @@ module ModernTreasury
|
|
|
121
126
|
:processing,
|
|
122
127
|
ModernTreasury::ConnectionLegalEntityListParams::Status::TaggedSymbol
|
|
123
128
|
)
|
|
129
|
+
SUSPENDED =
|
|
130
|
+
T.let(
|
|
131
|
+
:suspended,
|
|
132
|
+
ModernTreasury::ConnectionLegalEntityListParams::Status::TaggedSymbol
|
|
133
|
+
)
|
|
124
134
|
|
|
125
135
|
sig do
|
|
126
136
|
override.returns(
|