modern_treasury 0.22.0 → 0.23.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 +8 -0
- data/README.md +1 -1
- data/lib/modern_treasury/models/child_legal_entity.rb +2 -2
- data/lib/modern_treasury/models/child_legal_entity_create.rb +1 -26
- data/lib/modern_treasury/models/connection_legal_entity_create_params.rb +1 -28
- data/lib/modern_treasury/models/counterparty_create_params.rb +1 -30
- data/lib/modern_treasury/models/legal_entity.rb +2 -2
- data/lib/modern_treasury/models/legal_entity_create_params.rb +1 -24
- data/lib/modern_treasury/models/legal_entity_update_params.rb +1 -24
- data/lib/modern_treasury/resources/legal_entities.rb +2 -6
- data/lib/modern_treasury/version.rb +1 -1
- data/rbi/modern_treasury/models/child_legal_entity.rbi +3 -3
- data/rbi/modern_treasury/models/child_legal_entity_create.rbi +0 -61
- data/rbi/modern_treasury/models/connection_legal_entity_create_params.rbi +0 -68
- data/rbi/modern_treasury/models/counterparty_create_params.rbi +0 -68
- data/rbi/modern_treasury/models/legal_entity.rbi +3 -3
- data/rbi/modern_treasury/models/legal_entity_create_params.rbi +0 -63
- data/rbi/modern_treasury/models/legal_entity_update_params.rbi +0 -63
- data/rbi/modern_treasury/resources/legal_entities.rbi +0 -14
- data/sig/modern_treasury/models/child_legal_entity_create.rbs +0 -18
- data/sig/modern_treasury/models/connection_legal_entity_create_params.rbs +0 -18
- data/sig/modern_treasury/models/counterparty_create_params.rbs +0 -18
- data/sig/modern_treasury/models/legal_entity_create_params.rbs +0 -18
- data/sig/modern_treasury/models/legal_entity_update_params.rbs +0 -18
- data/sig/modern_treasury/resources/legal_entities.rbs +0 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d633ce3752c8dc9fd9e76042bdf33fc8865d93afbdf8bc161393d588200a2274
|
|
4
|
+
data.tar.gz: 55bf7953305f4e3b1a9b6722f7cb5eff43888b8c7f751da64fe2df9443363112
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5c243f11a897b93b58134402ea4fa31be80c1412f2a595e8657790d9debf297ec93dc2f36504fd638ac6afd9dbd7c9ff796500f770c96963893e13f3eb0a9478
|
|
7
|
+
data.tar.gz: 7754852eab84d51f17f8300f8d16fb6fcce30525eddbe6cd97e9e29acb4a7dd6bac882ad30b704691353103c05871cd9ca448e3638f9b06faf07d0af8c328304
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.23.0 (2026-03-18)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.22.0...v0.23.0](https://github.com/Modern-Treasury/modern-treasury-ruby/compare/v0.22.0...v0.23.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([0031f74](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/0031f749e5edeec038cfb7a36594fd7d038c0222))
|
|
10
|
+
|
|
3
11
|
## 0.22.0 (2026-03-17)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v0.21.0...v0.22.0](https://github.com/Modern-Treasury/modern-treasury-ruby/compare/v0.21.0...v0.22.0)
|
data/README.md
CHANGED
|
@@ -237,7 +237,7 @@ module ModernTreasury
|
|
|
237
237
|
|
|
238
238
|
# @!attribute status
|
|
239
239
|
# The activation status of the legal entity. One of pending, active, suspended, or
|
|
240
|
-
#
|
|
240
|
+
# denied.
|
|
241
241
|
#
|
|
242
242
|
# @return [Symbol, ModernTreasury::Models::ChildLegalEntity::Status, nil]
|
|
243
243
|
required :status, enum: -> { ModernTreasury::ChildLegalEntity::Status }, nil?: true
|
|
@@ -706,7 +706,7 @@ module ModernTreasury
|
|
|
706
706
|
end
|
|
707
707
|
|
|
708
708
|
# The activation status of the legal entity. One of pending, active, suspended, or
|
|
709
|
-
#
|
|
709
|
+
# denied.
|
|
710
710
|
#
|
|
711
711
|
# @see ModernTreasury::Models::ChildLegalEntity#status
|
|
712
712
|
module Status
|
|
@@ -229,13 +229,6 @@ module ModernTreasury
|
|
|
229
229
|
# @return [Symbol, ModernTreasury::Models::ChildLegalEntityCreate::RiskRating, nil]
|
|
230
230
|
optional :risk_rating, enum: -> { ModernTreasury::ChildLegalEntityCreate::RiskRating }, nil?: true
|
|
231
231
|
|
|
232
|
-
# @!attribute status
|
|
233
|
-
# The activation status of the legal entity. One of pending, active, suspended, or
|
|
234
|
-
# closed.
|
|
235
|
-
#
|
|
236
|
-
# @return [Symbol, ModernTreasury::Models::ChildLegalEntityCreate::Status, nil]
|
|
237
|
-
optional :status, enum: -> { ModernTreasury::ChildLegalEntityCreate::Status }, nil?: true
|
|
238
|
-
|
|
239
232
|
# @!attribute suffix
|
|
240
233
|
# An individual's suffix.
|
|
241
234
|
#
|
|
@@ -269,7 +262,7 @@ module ModernTreasury
|
|
|
269
262
|
# @return [String, nil]
|
|
270
263
|
optional :website, String, nil?: true
|
|
271
264
|
|
|
272
|
-
# @!method initialize(addresses: nil, bank_settings: nil, business_description: nil, business_name: nil, citizenship_country: nil, compliance_details: nil, connection_id: nil, country_of_incorporation: nil, date_formed: nil, date_of_birth: nil, documents: nil, doing_business_as_names: nil, email: nil, expected_activity_volume: nil, external_id: nil, first_name: nil, identifications: nil, industry_classifications: nil, intended_use: nil, last_name: nil, legal_entity_associations: nil, legal_entity_type: nil, legal_structure: nil, listed_exchange: nil, metadata: nil, middle_name: nil, operating_jurisdictions: nil, phone_numbers: nil, politically_exposed_person: nil, preferred_name: nil, prefix: nil, primary_social_media_sites: nil, regulators: nil, risk_rating: nil,
|
|
265
|
+
# @!method initialize(addresses: nil, bank_settings: nil, business_description: nil, business_name: nil, citizenship_country: nil, compliance_details: nil, connection_id: nil, country_of_incorporation: nil, date_formed: nil, date_of_birth: nil, documents: nil, doing_business_as_names: nil, email: nil, expected_activity_volume: nil, external_id: nil, first_name: nil, identifications: nil, industry_classifications: nil, intended_use: nil, last_name: nil, legal_entity_associations: nil, legal_entity_type: nil, legal_structure: nil, listed_exchange: nil, metadata: nil, middle_name: nil, operating_jurisdictions: nil, phone_numbers: nil, politically_exposed_person: nil, preferred_name: nil, prefix: nil, primary_social_media_sites: nil, regulators: nil, risk_rating: nil, suffix: nil, third_party_verification: nil, ticker_symbol: nil, wealth_and_employment_details: nil, website: nil)
|
|
273
266
|
# Some parameter documentations has been truncated, see
|
|
274
267
|
# {ModernTreasury::Models::ChildLegalEntityCreate} for more details.
|
|
275
268
|
#
|
|
@@ -341,8 +334,6 @@ module ModernTreasury
|
|
|
341
334
|
#
|
|
342
335
|
# @param risk_rating [Symbol, ModernTreasury::Models::ChildLegalEntityCreate::RiskRating, nil] The risk rating of the legal entity. One of low, medium, high.
|
|
343
336
|
#
|
|
344
|
-
# @param status [Symbol, ModernTreasury::Models::ChildLegalEntityCreate::Status, nil] The activation status of the legal entity. One of pending, active, suspended, or
|
|
345
|
-
#
|
|
346
337
|
# @param suffix [String, nil] An individual's suffix.
|
|
347
338
|
#
|
|
348
339
|
# @param third_party_verification [ModernTreasury::Models::ChildLegalEntityCreate::ThirdPartyVerification, nil] Information describing a third-party verification run by an external vendor.
|
|
@@ -484,22 +475,6 @@ module ModernTreasury
|
|
|
484
475
|
# @return [Array<Symbol>]
|
|
485
476
|
end
|
|
486
477
|
|
|
487
|
-
# The activation status of the legal entity. One of pending, active, suspended, or
|
|
488
|
-
# closed.
|
|
489
|
-
#
|
|
490
|
-
# @see ModernTreasury::Models::ChildLegalEntityCreate#status
|
|
491
|
-
module Status
|
|
492
|
-
extend ModernTreasury::Internal::Type::Enum
|
|
493
|
-
|
|
494
|
-
ACTIVE = :active
|
|
495
|
-
DENIED = :denied
|
|
496
|
-
PENDING = :pending
|
|
497
|
-
SUSPENDED = :suspended
|
|
498
|
-
|
|
499
|
-
# @!method self.values
|
|
500
|
-
# @return [Array<Symbol>]
|
|
501
|
-
end
|
|
502
|
-
|
|
503
478
|
# @see ModernTreasury::Models::ChildLegalEntityCreate#third_party_verification
|
|
504
479
|
class ThirdPartyVerification < ModernTreasury::Internal::Type::BaseModel
|
|
505
480
|
# @!attribute vendor
|
|
@@ -262,15 +262,6 @@ module ModernTreasury
|
|
|
262
262
|
enum: -> { ModernTreasury::ConnectionLegalEntityCreateParams::LegalEntity::RiskRating },
|
|
263
263
|
nil?: true
|
|
264
264
|
|
|
265
|
-
# @!attribute status
|
|
266
|
-
# The activation status of the legal entity. One of pending, active, suspended, or
|
|
267
|
-
# closed.
|
|
268
|
-
#
|
|
269
|
-
# @return [Symbol, ModernTreasury::Models::ConnectionLegalEntityCreateParams::LegalEntity::Status, nil]
|
|
270
|
-
optional :status,
|
|
271
|
-
enum: -> { ModernTreasury::ConnectionLegalEntityCreateParams::LegalEntity::Status },
|
|
272
|
-
nil?: true
|
|
273
|
-
|
|
274
265
|
# @!attribute suffix
|
|
275
266
|
# An individual's suffix.
|
|
276
267
|
#
|
|
@@ -306,7 +297,7 @@ module ModernTreasury
|
|
|
306
297
|
# @return [String, nil]
|
|
307
298
|
optional :website, String, nil?: true
|
|
308
299
|
|
|
309
|
-
# @!method initialize(addresses: nil, bank_settings: nil, business_description: nil, business_name: nil, citizenship_country: nil, compliance_details: nil, connection_id: nil, country_of_incorporation: nil, date_formed: nil, date_of_birth: nil, documents: nil, doing_business_as_names: nil, email: nil, expected_activity_volume: nil, external_id: nil, first_name: nil, identifications: nil, industry_classifications: nil, intended_use: nil, last_name: nil, legal_entity_associations: nil, legal_entity_type: nil, legal_structure: nil, listed_exchange: nil, metadata: nil, middle_name: nil, operating_jurisdictions: nil, phone_numbers: nil, politically_exposed_person: nil, preferred_name: nil, prefix: nil, primary_social_media_sites: nil, regulators: nil, risk_rating: nil,
|
|
300
|
+
# @!method initialize(addresses: nil, bank_settings: nil, business_description: nil, business_name: nil, citizenship_country: nil, compliance_details: nil, connection_id: nil, country_of_incorporation: nil, date_formed: nil, date_of_birth: nil, documents: nil, doing_business_as_names: nil, email: nil, expected_activity_volume: nil, external_id: nil, first_name: nil, identifications: nil, industry_classifications: nil, intended_use: nil, last_name: nil, legal_entity_associations: nil, legal_entity_type: nil, legal_structure: nil, listed_exchange: nil, metadata: nil, middle_name: nil, operating_jurisdictions: nil, phone_numbers: nil, politically_exposed_person: nil, preferred_name: nil, prefix: nil, primary_social_media_sites: nil, regulators: nil, risk_rating: nil, suffix: nil, third_party_verification: nil, ticker_symbol: nil, wealth_and_employment_details: nil, website: nil)
|
|
310
301
|
# Some parameter documentations has been truncated, see
|
|
311
302
|
# {ModernTreasury::Models::ConnectionLegalEntityCreateParams::LegalEntity} for
|
|
312
303
|
# more details.
|
|
@@ -381,8 +372,6 @@ module ModernTreasury
|
|
|
381
372
|
#
|
|
382
373
|
# @param risk_rating [Symbol, ModernTreasury::Models::ConnectionLegalEntityCreateParams::LegalEntity::RiskRating, nil] The risk rating of the legal entity. One of low, medium, high.
|
|
383
374
|
#
|
|
384
|
-
# @param status [Symbol, ModernTreasury::Models::ConnectionLegalEntityCreateParams::LegalEntity::Status, nil] The activation status of the legal entity. One of pending, active, suspended, or
|
|
385
|
-
#
|
|
386
375
|
# @param suffix [String, nil] An individual's suffix.
|
|
387
376
|
#
|
|
388
377
|
# @param third_party_verification [ModernTreasury::Models::ConnectionLegalEntityCreateParams::LegalEntity::ThirdPartyVerification, nil] Information describing a third-party verification run by an external vendor.
|
|
@@ -526,22 +515,6 @@ module ModernTreasury
|
|
|
526
515
|
# @return [Array<Symbol>]
|
|
527
516
|
end
|
|
528
517
|
|
|
529
|
-
# The activation status of the legal entity. One of pending, active, suspended, or
|
|
530
|
-
# closed.
|
|
531
|
-
#
|
|
532
|
-
# @see ModernTreasury::Models::ConnectionLegalEntityCreateParams::LegalEntity#status
|
|
533
|
-
module Status
|
|
534
|
-
extend ModernTreasury::Internal::Type::Enum
|
|
535
|
-
|
|
536
|
-
ACTIVE = :active
|
|
537
|
-
DENIED = :denied
|
|
538
|
-
PENDING = :pending
|
|
539
|
-
SUSPENDED = :suspended
|
|
540
|
-
|
|
541
|
-
# @!method self.values
|
|
542
|
-
# @return [Array<Symbol>]
|
|
543
|
-
end
|
|
544
|
-
|
|
545
518
|
# @see ModernTreasury::Models::ConnectionLegalEntityCreateParams::LegalEntity#third_party_verification
|
|
546
519
|
class ThirdPartyVerification < ModernTreasury::Internal::Type::BaseModel
|
|
547
520
|
# @!attribute vendor
|
|
@@ -659,17 +659,6 @@ module ModernTreasury
|
|
|
659
659
|
enum: -> { ModernTreasury::CounterpartyCreateParams::LegalEntity::RiskRating },
|
|
660
660
|
nil?: true
|
|
661
661
|
|
|
662
|
-
# @!attribute status
|
|
663
|
-
# The activation status of the legal entity. One of pending, active, suspended, or
|
|
664
|
-
# closed.
|
|
665
|
-
#
|
|
666
|
-
# @return [Symbol, ModernTreasury::Models::CounterpartyCreateParams::LegalEntity::Status, nil]
|
|
667
|
-
optional :status,
|
|
668
|
-
enum: -> {
|
|
669
|
-
ModernTreasury::CounterpartyCreateParams::LegalEntity::Status
|
|
670
|
-
},
|
|
671
|
-
nil?: true
|
|
672
|
-
|
|
673
662
|
# @!attribute suffix
|
|
674
663
|
# An individual's suffix.
|
|
675
664
|
#
|
|
@@ -703,7 +692,7 @@ module ModernTreasury
|
|
|
703
692
|
# @return [String, nil]
|
|
704
693
|
optional :website, String, nil?: true
|
|
705
694
|
|
|
706
|
-
# @!method initialize(legal_entity_type:, addresses: nil, bank_settings: nil, business_description: nil, business_name: nil, citizenship_country: nil, compliance_details: nil, connection_id: nil, country_of_incorporation: nil, date_formed: nil, date_of_birth: nil, documents: nil, doing_business_as_names: nil, email: nil, expected_activity_volume: nil, external_id: nil, first_name: nil, identifications: nil, industry_classifications: nil, intended_use: nil, last_name: nil, legal_entity_associations: nil, legal_structure: nil, listed_exchange: nil, metadata: nil, middle_name: nil, operating_jurisdictions: nil, phone_numbers: nil, politically_exposed_person: nil, preferred_name: nil, prefix: nil, primary_social_media_sites: nil, regulators: nil, risk_rating: nil,
|
|
695
|
+
# @!method initialize(legal_entity_type:, addresses: nil, bank_settings: nil, business_description: nil, business_name: nil, citizenship_country: nil, compliance_details: nil, connection_id: nil, country_of_incorporation: nil, date_formed: nil, date_of_birth: nil, documents: nil, doing_business_as_names: nil, email: nil, expected_activity_volume: nil, external_id: nil, first_name: nil, identifications: nil, industry_classifications: nil, intended_use: nil, last_name: nil, legal_entity_associations: nil, legal_structure: nil, listed_exchange: nil, metadata: nil, middle_name: nil, operating_jurisdictions: nil, phone_numbers: nil, politically_exposed_person: nil, preferred_name: nil, prefix: nil, primary_social_media_sites: nil, regulators: nil, risk_rating: nil, suffix: nil, third_party_verification: nil, ticker_symbol: nil, wealth_and_employment_details: nil, website: nil)
|
|
707
696
|
# Some parameter documentations has been truncated, see
|
|
708
697
|
# {ModernTreasury::Models::CounterpartyCreateParams::LegalEntity} for more
|
|
709
698
|
# details.
|
|
@@ -776,8 +765,6 @@ module ModernTreasury
|
|
|
776
765
|
#
|
|
777
766
|
# @param risk_rating [Symbol, ModernTreasury::Models::CounterpartyCreateParams::LegalEntity::RiskRating, nil] The risk rating of the legal entity. One of low, medium, high.
|
|
778
767
|
#
|
|
779
|
-
# @param status [Symbol, ModernTreasury::Models::CounterpartyCreateParams::LegalEntity::Status, nil] The activation status of the legal entity. One of pending, active, suspended, or
|
|
780
|
-
#
|
|
781
768
|
# @param suffix [String, nil] An individual's suffix.
|
|
782
769
|
#
|
|
783
770
|
# @param third_party_verification [ModernTreasury::Models::CounterpartyCreateParams::LegalEntity::ThirdPartyVerification, nil] Information describing a third-party verification run by an external vendor.
|
|
@@ -921,22 +908,6 @@ module ModernTreasury
|
|
|
921
908
|
# @return [Array<Symbol>]
|
|
922
909
|
end
|
|
923
910
|
|
|
924
|
-
# The activation status of the legal entity. One of pending, active, suspended, or
|
|
925
|
-
# closed.
|
|
926
|
-
#
|
|
927
|
-
# @see ModernTreasury::Models::CounterpartyCreateParams::LegalEntity#status
|
|
928
|
-
module Status
|
|
929
|
-
extend ModernTreasury::Internal::Type::Enum
|
|
930
|
-
|
|
931
|
-
ACTIVE = :active
|
|
932
|
-
DENIED = :denied
|
|
933
|
-
PENDING = :pending
|
|
934
|
-
SUSPENDED = :suspended
|
|
935
|
-
|
|
936
|
-
# @!method self.values
|
|
937
|
-
# @return [Array<Symbol>]
|
|
938
|
-
end
|
|
939
|
-
|
|
940
911
|
# @see ModernTreasury::Models::CounterpartyCreateParams::LegalEntity#third_party_verification
|
|
941
912
|
class ThirdPartyVerification < ModernTreasury::Internal::Type::BaseModel
|
|
942
913
|
# @!attribute vendor
|
|
@@ -229,7 +229,7 @@ module ModernTreasury
|
|
|
229
229
|
|
|
230
230
|
# @!attribute status
|
|
231
231
|
# The activation status of the legal entity. One of pending, active, suspended, or
|
|
232
|
-
#
|
|
232
|
+
# denied.
|
|
233
233
|
#
|
|
234
234
|
# @return [Symbol, ModernTreasury::Models::LegalEntity::Status, nil]
|
|
235
235
|
required :status, enum: -> { ModernTreasury::LegalEntity::Status }, nil?: true
|
|
@@ -708,7 +708,7 @@ module ModernTreasury
|
|
|
708
708
|
end
|
|
709
709
|
|
|
710
710
|
# The activation status of the legal entity. One of pending, active, suspended, or
|
|
711
|
-
#
|
|
711
|
+
# denied.
|
|
712
712
|
#
|
|
713
713
|
# @see ModernTreasury::Models::LegalEntity#status
|
|
714
714
|
module Status
|
|
@@ -231,13 +231,6 @@ module ModernTreasury
|
|
|
231
231
|
# @return [Symbol, ModernTreasury::Models::LegalEntityCreateParams::RiskRating, nil]
|
|
232
232
|
optional :risk_rating, enum: -> { ModernTreasury::LegalEntityCreateParams::RiskRating }, nil?: true
|
|
233
233
|
|
|
234
|
-
# @!attribute status
|
|
235
|
-
# The activation status of the legal entity. One of pending, active, suspended, or
|
|
236
|
-
# closed.
|
|
237
|
-
#
|
|
238
|
-
# @return [Symbol, ModernTreasury::Models::LegalEntityCreateParams::Status, nil]
|
|
239
|
-
optional :status, enum: -> { ModernTreasury::LegalEntityCreateParams::Status }, nil?: true
|
|
240
|
-
|
|
241
234
|
# @!attribute suffix
|
|
242
235
|
# An individual's suffix.
|
|
243
236
|
#
|
|
@@ -271,7 +264,7 @@ module ModernTreasury
|
|
|
271
264
|
# @return [String, nil]
|
|
272
265
|
optional :website, String, nil?: true
|
|
273
266
|
|
|
274
|
-
# @!method initialize(legal_entity_type:, addresses: nil, bank_settings: nil, business_description: nil, business_name: nil, citizenship_country: nil, compliance_details: nil, connection_id: nil, country_of_incorporation: nil, date_formed: nil, date_of_birth: nil, documents: nil, doing_business_as_names: nil, email: nil, expected_activity_volume: nil, external_id: nil, first_name: nil, identifications: nil, industry_classifications: nil, intended_use: nil, last_name: nil, legal_entity_associations: nil, legal_structure: nil, listed_exchange: nil, metadata: nil, middle_name: nil, operating_jurisdictions: nil, phone_numbers: nil, politically_exposed_person: nil, preferred_name: nil, prefix: nil, primary_social_media_sites: nil, regulators: nil, risk_rating: nil,
|
|
267
|
+
# @!method initialize(legal_entity_type:, addresses: nil, bank_settings: nil, business_description: nil, business_name: nil, citizenship_country: nil, compliance_details: nil, connection_id: nil, country_of_incorporation: nil, date_formed: nil, date_of_birth: nil, documents: nil, doing_business_as_names: nil, email: nil, expected_activity_volume: nil, external_id: nil, first_name: nil, identifications: nil, industry_classifications: nil, intended_use: nil, last_name: nil, legal_entity_associations: nil, legal_structure: nil, listed_exchange: nil, metadata: nil, middle_name: nil, operating_jurisdictions: nil, phone_numbers: nil, politically_exposed_person: nil, preferred_name: nil, prefix: nil, primary_social_media_sites: nil, regulators: nil, risk_rating: nil, suffix: nil, third_party_verification: nil, ticker_symbol: nil, wealth_and_employment_details: nil, website: nil, request_options: {})
|
|
275
268
|
# Some parameter documentations has been truncated, see
|
|
276
269
|
# {ModernTreasury::Models::LegalEntityCreateParams} for more details.
|
|
277
270
|
#
|
|
@@ -343,8 +336,6 @@ module ModernTreasury
|
|
|
343
336
|
#
|
|
344
337
|
# @param risk_rating [Symbol, ModernTreasury::Models::LegalEntityCreateParams::RiskRating, nil] The risk rating of the legal entity. One of low, medium, high.
|
|
345
338
|
#
|
|
346
|
-
# @param status [Symbol, ModernTreasury::Models::LegalEntityCreateParams::Status, nil] The activation status of the legal entity. One of pending, active, suspended, or
|
|
347
|
-
#
|
|
348
339
|
# @param suffix [String, nil] An individual's suffix.
|
|
349
340
|
#
|
|
350
341
|
# @param third_party_verification [ModernTreasury::Models::LegalEntityCreateParams::ThirdPartyVerification, nil] Information describing a third-party verification run by an external vendor.
|
|
@@ -482,20 +473,6 @@ module ModernTreasury
|
|
|
482
473
|
# @return [Array<Symbol>]
|
|
483
474
|
end
|
|
484
475
|
|
|
485
|
-
# The activation status of the legal entity. One of pending, active, suspended, or
|
|
486
|
-
# closed.
|
|
487
|
-
module Status
|
|
488
|
-
extend ModernTreasury::Internal::Type::Enum
|
|
489
|
-
|
|
490
|
-
ACTIVE = :active
|
|
491
|
-
DENIED = :denied
|
|
492
|
-
PENDING = :pending
|
|
493
|
-
SUSPENDED = :suspended
|
|
494
|
-
|
|
495
|
-
# @!method self.values
|
|
496
|
-
# @return [Array<Symbol>]
|
|
497
|
-
end
|
|
498
|
-
|
|
499
476
|
class ThirdPartyVerification < ModernTreasury::Internal::Type::BaseModel
|
|
500
477
|
# @!attribute vendor
|
|
501
478
|
# The vendor that performed the verification, e.g. `persona`.
|
|
@@ -196,13 +196,6 @@ module ModernTreasury
|
|
|
196
196
|
# @return [Symbol, ModernTreasury::Models::LegalEntityUpdateParams::RiskRating, nil]
|
|
197
197
|
optional :risk_rating, enum: -> { ModernTreasury::LegalEntityUpdateParams::RiskRating }, nil?: true
|
|
198
198
|
|
|
199
|
-
# @!attribute status
|
|
200
|
-
# The activation status of the legal entity. One of pending, active, suspended, or
|
|
201
|
-
# closed.
|
|
202
|
-
#
|
|
203
|
-
# @return [Symbol, ModernTreasury::Models::LegalEntityUpdateParams::Status, nil]
|
|
204
|
-
optional :status, enum: -> { ModernTreasury::LegalEntityUpdateParams::Status }, nil?: true
|
|
205
|
-
|
|
206
199
|
# @!attribute suffix
|
|
207
200
|
# An individual's suffix.
|
|
208
201
|
#
|
|
@@ -236,7 +229,7 @@ module ModernTreasury
|
|
|
236
229
|
# @return [String, nil]
|
|
237
230
|
optional :website, String, nil?: true
|
|
238
231
|
|
|
239
|
-
# @!method initialize(id:, addresses: nil, bank_settings: nil, business_description: nil, business_name: nil, citizenship_country: nil, country_of_incorporation: nil, date_formed: nil, date_of_birth: nil, doing_business_as_names: nil, email: nil, expected_activity_volume: nil, external_id: nil, first_name: nil, identifications: nil, industry_classifications: nil, intended_use: nil, last_name: nil, legal_structure: nil, listed_exchange: nil, metadata: nil, middle_name: nil, operating_jurisdictions: nil, phone_numbers: nil, politically_exposed_person: nil, preferred_name: nil, prefix: nil, primary_social_media_sites: nil, regulators: nil, risk_rating: nil,
|
|
232
|
+
# @!method initialize(id:, addresses: nil, bank_settings: nil, business_description: nil, business_name: nil, citizenship_country: nil, country_of_incorporation: nil, date_formed: nil, date_of_birth: nil, doing_business_as_names: nil, email: nil, expected_activity_volume: nil, external_id: nil, first_name: nil, identifications: nil, industry_classifications: nil, intended_use: nil, last_name: nil, legal_structure: nil, listed_exchange: nil, metadata: nil, middle_name: nil, operating_jurisdictions: nil, phone_numbers: nil, politically_exposed_person: nil, preferred_name: nil, prefix: nil, primary_social_media_sites: nil, regulators: nil, risk_rating: nil, suffix: nil, third_party_verification: nil, ticker_symbol: nil, wealth_and_employment_details: nil, website: nil, request_options: {})
|
|
240
233
|
# Some parameter documentations has been truncated, see
|
|
241
234
|
# {ModernTreasury::Models::LegalEntityUpdateParams} for more details.
|
|
242
235
|
#
|
|
@@ -300,8 +293,6 @@ module ModernTreasury
|
|
|
300
293
|
#
|
|
301
294
|
# @param risk_rating [Symbol, ModernTreasury::Models::LegalEntityUpdateParams::RiskRating, nil] The risk rating of the legal entity. One of low, medium, high.
|
|
302
295
|
#
|
|
303
|
-
# @param status [Symbol, ModernTreasury::Models::LegalEntityUpdateParams::Status, nil] The activation status of the legal entity. One of pending, active, suspended, or
|
|
304
|
-
#
|
|
305
296
|
# @param suffix [String, nil] An individual's suffix.
|
|
306
297
|
#
|
|
307
298
|
# @param third_party_verification [ModernTreasury::Models::LegalEntityUpdateParams::ThirdPartyVerification, nil] Information describing a third-party verification run by an external vendor.
|
|
@@ -384,20 +375,6 @@ module ModernTreasury
|
|
|
384
375
|
# @return [Array<Symbol>]
|
|
385
376
|
end
|
|
386
377
|
|
|
387
|
-
# The activation status of the legal entity. One of pending, active, suspended, or
|
|
388
|
-
# closed.
|
|
389
|
-
module Status
|
|
390
|
-
extend ModernTreasury::Internal::Type::Enum
|
|
391
|
-
|
|
392
|
-
ACTIVE = :active
|
|
393
|
-
DENIED = :denied
|
|
394
|
-
PENDING = :pending
|
|
395
|
-
SUSPENDED = :suspended
|
|
396
|
-
|
|
397
|
-
# @!method self.values
|
|
398
|
-
# @return [Array<Symbol>]
|
|
399
|
-
end
|
|
400
|
-
|
|
401
378
|
class ThirdPartyVerification < ModernTreasury::Internal::Type::BaseModel
|
|
402
379
|
# @!attribute vendor
|
|
403
380
|
# The vendor that performed the verification, e.g. `persona`.
|
|
@@ -8,7 +8,7 @@ module ModernTreasury
|
|
|
8
8
|
#
|
|
9
9
|
# create legal_entity
|
|
10
10
|
#
|
|
11
|
-
# @overload create(legal_entity_type:, addresses: nil, bank_settings: nil, business_description: nil, business_name: nil, citizenship_country: nil, compliance_details: nil, connection_id: nil, country_of_incorporation: nil, date_formed: nil, date_of_birth: nil, documents: nil, doing_business_as_names: nil, email: nil, expected_activity_volume: nil, external_id: nil, first_name: nil, identifications: nil, industry_classifications: nil, intended_use: nil, last_name: nil, legal_entity_associations: nil, legal_structure: nil, listed_exchange: nil, metadata: nil, middle_name: nil, operating_jurisdictions: nil, phone_numbers: nil, politically_exposed_person: nil, preferred_name: nil, prefix: nil, primary_social_media_sites: nil, regulators: nil, risk_rating: nil,
|
|
11
|
+
# @overload create(legal_entity_type:, addresses: nil, bank_settings: nil, business_description: nil, business_name: nil, citizenship_country: nil, compliance_details: nil, connection_id: nil, country_of_incorporation: nil, date_formed: nil, date_of_birth: nil, documents: nil, doing_business_as_names: nil, email: nil, expected_activity_volume: nil, external_id: nil, first_name: nil, identifications: nil, industry_classifications: nil, intended_use: nil, last_name: nil, legal_entity_associations: nil, legal_structure: nil, listed_exchange: nil, metadata: nil, middle_name: nil, operating_jurisdictions: nil, phone_numbers: nil, politically_exposed_person: nil, preferred_name: nil, prefix: nil, primary_social_media_sites: nil, regulators: nil, risk_rating: nil, suffix: nil, third_party_verification: nil, ticker_symbol: nil, wealth_and_employment_details: nil, website: nil, request_options: {})
|
|
12
12
|
#
|
|
13
13
|
# @param legal_entity_type [Symbol, ModernTreasury::Models::LegalEntityCreateParams::LegalEntityType] The type of legal entity.
|
|
14
14
|
#
|
|
@@ -78,8 +78,6 @@ module ModernTreasury
|
|
|
78
78
|
#
|
|
79
79
|
# @param risk_rating [Symbol, ModernTreasury::Models::LegalEntityCreateParams::RiskRating, nil] The risk rating of the legal entity. One of low, medium, high.
|
|
80
80
|
#
|
|
81
|
-
# @param status [Symbol, ModernTreasury::Models::LegalEntityCreateParams::Status, nil] The activation status of the legal entity. One of pending, active, suspended, or
|
|
82
|
-
#
|
|
83
81
|
# @param suffix [String, nil] An individual's suffix.
|
|
84
82
|
#
|
|
85
83
|
# @param third_party_verification [ModernTreasury::Models::LegalEntityCreateParams::ThirdPartyVerification, nil] Information describing a third-party verification run by an external vendor.
|
|
@@ -131,7 +129,7 @@ module ModernTreasury
|
|
|
131
129
|
#
|
|
132
130
|
# Update a legal entity.
|
|
133
131
|
#
|
|
134
|
-
# @overload update(id, addresses: nil, bank_settings: nil, business_description: nil, business_name: nil, citizenship_country: nil, country_of_incorporation: nil, date_formed: nil, date_of_birth: nil, doing_business_as_names: nil, email: nil, expected_activity_volume: nil, external_id: nil, first_name: nil, identifications: nil, industry_classifications: nil, intended_use: nil, last_name: nil, legal_structure: nil, listed_exchange: nil, metadata: nil, middle_name: nil, operating_jurisdictions: nil, phone_numbers: nil, politically_exposed_person: nil, preferred_name: nil, prefix: nil, primary_social_media_sites: nil, regulators: nil, risk_rating: nil,
|
|
132
|
+
# @overload update(id, addresses: nil, bank_settings: nil, business_description: nil, business_name: nil, citizenship_country: nil, country_of_incorporation: nil, date_formed: nil, date_of_birth: nil, doing_business_as_names: nil, email: nil, expected_activity_volume: nil, external_id: nil, first_name: nil, identifications: nil, industry_classifications: nil, intended_use: nil, last_name: nil, legal_structure: nil, listed_exchange: nil, metadata: nil, middle_name: nil, operating_jurisdictions: nil, phone_numbers: nil, politically_exposed_person: nil, preferred_name: nil, prefix: nil, primary_social_media_sites: nil, regulators: nil, risk_rating: nil, suffix: nil, third_party_verification: nil, ticker_symbol: nil, wealth_and_employment_details: nil, website: nil, request_options: {})
|
|
135
133
|
#
|
|
136
134
|
# @param id [String] id
|
|
137
135
|
#
|
|
@@ -193,8 +191,6 @@ module ModernTreasury
|
|
|
193
191
|
#
|
|
194
192
|
# @param risk_rating [Symbol, ModernTreasury::Models::LegalEntityUpdateParams::RiskRating, nil] The risk rating of the legal entity. One of low, medium, high.
|
|
195
193
|
#
|
|
196
|
-
# @param status [Symbol, ModernTreasury::Models::LegalEntityUpdateParams::Status, nil] The activation status of the legal entity. One of pending, active, suspended, or
|
|
197
|
-
#
|
|
198
194
|
# @param suffix [String, nil] An individual's suffix.
|
|
199
195
|
#
|
|
200
196
|
# @param third_party_verification [ModernTreasury::Models::LegalEntityUpdateParams::ThirdPartyVerification, nil] Information describing a third-party verification run by an external vendor.
|
|
@@ -189,7 +189,7 @@ module ModernTreasury
|
|
|
189
189
|
attr_accessor :risk_rating
|
|
190
190
|
|
|
191
191
|
# The activation status of the legal entity. One of pending, active, suspended, or
|
|
192
|
-
#
|
|
192
|
+
# denied.
|
|
193
193
|
sig do
|
|
194
194
|
returns(
|
|
195
195
|
T.nilable(ModernTreasury::ChildLegalEntity::Status::TaggedSymbol)
|
|
@@ -385,7 +385,7 @@ module ModernTreasury
|
|
|
385
385
|
# The risk rating of the legal entity. One of low, medium, high.
|
|
386
386
|
risk_rating:,
|
|
387
387
|
# The activation status of the legal entity. One of pending, active, suspended, or
|
|
388
|
-
#
|
|
388
|
+
# denied.
|
|
389
389
|
status:,
|
|
390
390
|
# An individual's suffix.
|
|
391
391
|
suffix:,
|
|
@@ -1105,7 +1105,7 @@ module ModernTreasury
|
|
|
1105
1105
|
end
|
|
1106
1106
|
|
|
1107
1107
|
# The activation status of the legal entity. One of pending, active, suspended, or
|
|
1108
|
-
#
|
|
1108
|
+
# denied.
|
|
1109
1109
|
module Status
|
|
1110
1110
|
extend ModernTreasury::Internal::Type::Enum
|
|
1111
1111
|
|
|
@@ -271,15 +271,6 @@ module ModernTreasury
|
|
|
271
271
|
end
|
|
272
272
|
attr_accessor :risk_rating
|
|
273
273
|
|
|
274
|
-
# The activation status of the legal entity. One of pending, active, suspended, or
|
|
275
|
-
# closed.
|
|
276
|
-
sig do
|
|
277
|
-
returns(
|
|
278
|
-
T.nilable(ModernTreasury::ChildLegalEntityCreate::Status::OrSymbol)
|
|
279
|
-
)
|
|
280
|
-
end
|
|
281
|
-
attr_accessor :status
|
|
282
|
-
|
|
283
274
|
# An individual's suffix.
|
|
284
275
|
sig { returns(T.nilable(String)) }
|
|
285
276
|
attr_accessor :suffix
|
|
@@ -384,8 +375,6 @@ module ModernTreasury
|
|
|
384
375
|
T.nilable(
|
|
385
376
|
ModernTreasury::ChildLegalEntityCreate::RiskRating::OrSymbol
|
|
386
377
|
),
|
|
387
|
-
status:
|
|
388
|
-
T.nilable(ModernTreasury::ChildLegalEntityCreate::Status::OrSymbol),
|
|
389
378
|
suffix: T.nilable(String),
|
|
390
379
|
third_party_verification:
|
|
391
380
|
T.nilable(
|
|
@@ -472,9 +461,6 @@ module ModernTreasury
|
|
|
472
461
|
regulators: nil,
|
|
473
462
|
# The risk rating of the legal entity. One of low, medium, high.
|
|
474
463
|
risk_rating: nil,
|
|
475
|
-
# The activation status of the legal entity. One of pending, active, suspended, or
|
|
476
|
-
# closed.
|
|
477
|
-
status: nil,
|
|
478
464
|
# An individual's suffix.
|
|
479
465
|
suffix: nil,
|
|
480
466
|
# Information describing a third-party verification run by an external vendor.
|
|
@@ -542,10 +528,6 @@ module ModernTreasury
|
|
|
542
528
|
T.nilable(
|
|
543
529
|
ModernTreasury::ChildLegalEntityCreate::RiskRating::OrSymbol
|
|
544
530
|
),
|
|
545
|
-
status:
|
|
546
|
-
T.nilable(
|
|
547
|
-
ModernTreasury::ChildLegalEntityCreate::Status::OrSymbol
|
|
548
|
-
),
|
|
549
531
|
suffix: T.nilable(String),
|
|
550
532
|
third_party_verification:
|
|
551
533
|
T.nilable(
|
|
@@ -877,49 +859,6 @@ module ModernTreasury
|
|
|
877
859
|
end
|
|
878
860
|
end
|
|
879
861
|
|
|
880
|
-
# The activation status of the legal entity. One of pending, active, suspended, or
|
|
881
|
-
# closed.
|
|
882
|
-
module Status
|
|
883
|
-
extend ModernTreasury::Internal::Type::Enum
|
|
884
|
-
|
|
885
|
-
TaggedSymbol =
|
|
886
|
-
T.type_alias do
|
|
887
|
-
T.all(Symbol, ModernTreasury::ChildLegalEntityCreate::Status)
|
|
888
|
-
end
|
|
889
|
-
OrSymbol = T.type_alias { T.any(Symbol, String) }
|
|
890
|
-
|
|
891
|
-
ACTIVE =
|
|
892
|
-
T.let(
|
|
893
|
-
:active,
|
|
894
|
-
ModernTreasury::ChildLegalEntityCreate::Status::TaggedSymbol
|
|
895
|
-
)
|
|
896
|
-
DENIED =
|
|
897
|
-
T.let(
|
|
898
|
-
:denied,
|
|
899
|
-
ModernTreasury::ChildLegalEntityCreate::Status::TaggedSymbol
|
|
900
|
-
)
|
|
901
|
-
PENDING =
|
|
902
|
-
T.let(
|
|
903
|
-
:pending,
|
|
904
|
-
ModernTreasury::ChildLegalEntityCreate::Status::TaggedSymbol
|
|
905
|
-
)
|
|
906
|
-
SUSPENDED =
|
|
907
|
-
T.let(
|
|
908
|
-
:suspended,
|
|
909
|
-
ModernTreasury::ChildLegalEntityCreate::Status::TaggedSymbol
|
|
910
|
-
)
|
|
911
|
-
|
|
912
|
-
sig do
|
|
913
|
-
override.returns(
|
|
914
|
-
T::Array[
|
|
915
|
-
ModernTreasury::ChildLegalEntityCreate::Status::TaggedSymbol
|
|
916
|
-
]
|
|
917
|
-
)
|
|
918
|
-
end
|
|
919
|
-
def self.values
|
|
920
|
-
end
|
|
921
|
-
end
|
|
922
|
-
|
|
923
862
|
class ThirdPartyVerification < ModernTreasury::Internal::Type::BaseModel
|
|
924
863
|
OrHash =
|
|
925
864
|
T.type_alias do
|
|
@@ -362,17 +362,6 @@ module ModernTreasury
|
|
|
362
362
|
end
|
|
363
363
|
attr_accessor :risk_rating
|
|
364
364
|
|
|
365
|
-
# The activation status of the legal entity. One of pending, active, suspended, or
|
|
366
|
-
# closed.
|
|
367
|
-
sig do
|
|
368
|
-
returns(
|
|
369
|
-
T.nilable(
|
|
370
|
-
ModernTreasury::ConnectionLegalEntityCreateParams::LegalEntity::Status::OrSymbol
|
|
371
|
-
)
|
|
372
|
-
)
|
|
373
|
-
end
|
|
374
|
-
attr_accessor :status
|
|
375
|
-
|
|
376
365
|
# An individual's suffix.
|
|
377
366
|
sig { returns(T.nilable(String)) }
|
|
378
367
|
attr_accessor :suffix
|
|
@@ -486,10 +475,6 @@ module ModernTreasury
|
|
|
486
475
|
T.nilable(
|
|
487
476
|
ModernTreasury::ConnectionLegalEntityCreateParams::LegalEntity::RiskRating::OrSymbol
|
|
488
477
|
),
|
|
489
|
-
status:
|
|
490
|
-
T.nilable(
|
|
491
|
-
ModernTreasury::ConnectionLegalEntityCreateParams::LegalEntity::Status::OrSymbol
|
|
492
|
-
),
|
|
493
478
|
suffix: T.nilable(String),
|
|
494
479
|
third_party_verification:
|
|
495
480
|
T.nilable(
|
|
@@ -576,9 +561,6 @@ module ModernTreasury
|
|
|
576
561
|
regulators: nil,
|
|
577
562
|
# The risk rating of the legal entity. One of low, medium, high.
|
|
578
563
|
risk_rating: nil,
|
|
579
|
-
# The activation status of the legal entity. One of pending, active, suspended, or
|
|
580
|
-
# closed.
|
|
581
|
-
status: nil,
|
|
582
564
|
# An individual's suffix.
|
|
583
565
|
suffix: nil,
|
|
584
566
|
# Information describing a third-party verification run by an external vendor.
|
|
@@ -652,10 +634,6 @@ module ModernTreasury
|
|
|
652
634
|
T.nilable(
|
|
653
635
|
ModernTreasury::ConnectionLegalEntityCreateParams::LegalEntity::RiskRating::OrSymbol
|
|
654
636
|
),
|
|
655
|
-
status:
|
|
656
|
-
T.nilable(
|
|
657
|
-
ModernTreasury::ConnectionLegalEntityCreateParams::LegalEntity::Status::OrSymbol
|
|
658
|
-
),
|
|
659
637
|
suffix: T.nilable(String),
|
|
660
638
|
third_party_verification:
|
|
661
639
|
T.nilable(
|
|
@@ -994,52 +972,6 @@ module ModernTreasury
|
|
|
994
972
|
end
|
|
995
973
|
end
|
|
996
974
|
|
|
997
|
-
# The activation status of the legal entity. One of pending, active, suspended, or
|
|
998
|
-
# closed.
|
|
999
|
-
module Status
|
|
1000
|
-
extend ModernTreasury::Internal::Type::Enum
|
|
1001
|
-
|
|
1002
|
-
TaggedSymbol =
|
|
1003
|
-
T.type_alias do
|
|
1004
|
-
T.all(
|
|
1005
|
-
Symbol,
|
|
1006
|
-
ModernTreasury::ConnectionLegalEntityCreateParams::LegalEntity::Status
|
|
1007
|
-
)
|
|
1008
|
-
end
|
|
1009
|
-
OrSymbol = T.type_alias { T.any(Symbol, String) }
|
|
1010
|
-
|
|
1011
|
-
ACTIVE =
|
|
1012
|
-
T.let(
|
|
1013
|
-
:active,
|
|
1014
|
-
ModernTreasury::ConnectionLegalEntityCreateParams::LegalEntity::Status::TaggedSymbol
|
|
1015
|
-
)
|
|
1016
|
-
DENIED =
|
|
1017
|
-
T.let(
|
|
1018
|
-
:denied,
|
|
1019
|
-
ModernTreasury::ConnectionLegalEntityCreateParams::LegalEntity::Status::TaggedSymbol
|
|
1020
|
-
)
|
|
1021
|
-
PENDING =
|
|
1022
|
-
T.let(
|
|
1023
|
-
:pending,
|
|
1024
|
-
ModernTreasury::ConnectionLegalEntityCreateParams::LegalEntity::Status::TaggedSymbol
|
|
1025
|
-
)
|
|
1026
|
-
SUSPENDED =
|
|
1027
|
-
T.let(
|
|
1028
|
-
:suspended,
|
|
1029
|
-
ModernTreasury::ConnectionLegalEntityCreateParams::LegalEntity::Status::TaggedSymbol
|
|
1030
|
-
)
|
|
1031
|
-
|
|
1032
|
-
sig do
|
|
1033
|
-
override.returns(
|
|
1034
|
-
T::Array[
|
|
1035
|
-
ModernTreasury::ConnectionLegalEntityCreateParams::LegalEntity::Status::TaggedSymbol
|
|
1036
|
-
]
|
|
1037
|
-
)
|
|
1038
|
-
end
|
|
1039
|
-
def self.values
|
|
1040
|
-
end
|
|
1041
|
-
end
|
|
1042
|
-
|
|
1043
975
|
class ThirdPartyVerification < ModernTreasury::Internal::Type::BaseModel
|
|
1044
976
|
OrHash =
|
|
1045
977
|
T.type_alias do
|
|
@@ -1421,17 +1421,6 @@ module ModernTreasury
|
|
|
1421
1421
|
end
|
|
1422
1422
|
attr_accessor :risk_rating
|
|
1423
1423
|
|
|
1424
|
-
# The activation status of the legal entity. One of pending, active, suspended, or
|
|
1425
|
-
# closed.
|
|
1426
|
-
sig do
|
|
1427
|
-
returns(
|
|
1428
|
-
T.nilable(
|
|
1429
|
-
ModernTreasury::CounterpartyCreateParams::LegalEntity::Status::OrSymbol
|
|
1430
|
-
)
|
|
1431
|
-
)
|
|
1432
|
-
end
|
|
1433
|
-
attr_accessor :status
|
|
1434
|
-
|
|
1435
1424
|
# An individual's suffix.
|
|
1436
1425
|
sig { returns(T.nilable(String)) }
|
|
1437
1426
|
attr_accessor :suffix
|
|
@@ -1544,10 +1533,6 @@ module ModernTreasury
|
|
|
1544
1533
|
T.nilable(
|
|
1545
1534
|
ModernTreasury::CounterpartyCreateParams::LegalEntity::RiskRating::OrSymbol
|
|
1546
1535
|
),
|
|
1547
|
-
status:
|
|
1548
|
-
T.nilable(
|
|
1549
|
-
ModernTreasury::CounterpartyCreateParams::LegalEntity::Status::OrSymbol
|
|
1550
|
-
),
|
|
1551
1536
|
suffix: T.nilable(String),
|
|
1552
1537
|
third_party_verification:
|
|
1553
1538
|
T.nilable(
|
|
@@ -1634,9 +1619,6 @@ module ModernTreasury
|
|
|
1634
1619
|
regulators: nil,
|
|
1635
1620
|
# The risk rating of the legal entity. One of low, medium, high.
|
|
1636
1621
|
risk_rating: nil,
|
|
1637
|
-
# The activation status of the legal entity. One of pending, active, suspended, or
|
|
1638
|
-
# closed.
|
|
1639
|
-
status: nil,
|
|
1640
1622
|
# An individual's suffix.
|
|
1641
1623
|
suffix: nil,
|
|
1642
1624
|
# Information describing a third-party verification run by an external vendor.
|
|
@@ -1710,10 +1692,6 @@ module ModernTreasury
|
|
|
1710
1692
|
T.nilable(
|
|
1711
1693
|
ModernTreasury::CounterpartyCreateParams::LegalEntity::RiskRating::OrSymbol
|
|
1712
1694
|
),
|
|
1713
|
-
status:
|
|
1714
|
-
T.nilable(
|
|
1715
|
-
ModernTreasury::CounterpartyCreateParams::LegalEntity::Status::OrSymbol
|
|
1716
|
-
),
|
|
1717
1695
|
suffix: T.nilable(String),
|
|
1718
1696
|
third_party_verification:
|
|
1719
1697
|
T.nilable(
|
|
@@ -2052,52 +2030,6 @@ module ModernTreasury
|
|
|
2052
2030
|
end
|
|
2053
2031
|
end
|
|
2054
2032
|
|
|
2055
|
-
# The activation status of the legal entity. One of pending, active, suspended, or
|
|
2056
|
-
# closed.
|
|
2057
|
-
module Status
|
|
2058
|
-
extend ModernTreasury::Internal::Type::Enum
|
|
2059
|
-
|
|
2060
|
-
TaggedSymbol =
|
|
2061
|
-
T.type_alias do
|
|
2062
|
-
T.all(
|
|
2063
|
-
Symbol,
|
|
2064
|
-
ModernTreasury::CounterpartyCreateParams::LegalEntity::Status
|
|
2065
|
-
)
|
|
2066
|
-
end
|
|
2067
|
-
OrSymbol = T.type_alias { T.any(Symbol, String) }
|
|
2068
|
-
|
|
2069
|
-
ACTIVE =
|
|
2070
|
-
T.let(
|
|
2071
|
-
:active,
|
|
2072
|
-
ModernTreasury::CounterpartyCreateParams::LegalEntity::Status::TaggedSymbol
|
|
2073
|
-
)
|
|
2074
|
-
DENIED =
|
|
2075
|
-
T.let(
|
|
2076
|
-
:denied,
|
|
2077
|
-
ModernTreasury::CounterpartyCreateParams::LegalEntity::Status::TaggedSymbol
|
|
2078
|
-
)
|
|
2079
|
-
PENDING =
|
|
2080
|
-
T.let(
|
|
2081
|
-
:pending,
|
|
2082
|
-
ModernTreasury::CounterpartyCreateParams::LegalEntity::Status::TaggedSymbol
|
|
2083
|
-
)
|
|
2084
|
-
SUSPENDED =
|
|
2085
|
-
T.let(
|
|
2086
|
-
:suspended,
|
|
2087
|
-
ModernTreasury::CounterpartyCreateParams::LegalEntity::Status::TaggedSymbol
|
|
2088
|
-
)
|
|
2089
|
-
|
|
2090
|
-
sig do
|
|
2091
|
-
override.returns(
|
|
2092
|
-
T::Array[
|
|
2093
|
-
ModernTreasury::CounterpartyCreateParams::LegalEntity::Status::TaggedSymbol
|
|
2094
|
-
]
|
|
2095
|
-
)
|
|
2096
|
-
end
|
|
2097
|
-
def self.values
|
|
2098
|
-
end
|
|
2099
|
-
end
|
|
2100
|
-
|
|
2101
2033
|
class ThirdPartyVerification < ModernTreasury::Internal::Type::BaseModel
|
|
2102
2034
|
OrHash =
|
|
2103
2035
|
T.type_alias do
|
|
@@ -174,7 +174,7 @@ module ModernTreasury
|
|
|
174
174
|
attr_accessor :risk_rating
|
|
175
175
|
|
|
176
176
|
# The activation status of the legal entity. One of pending, active, suspended, or
|
|
177
|
-
#
|
|
177
|
+
# denied.
|
|
178
178
|
sig do
|
|
179
179
|
returns(T.nilable(ModernTreasury::LegalEntity::Status::TaggedSymbol))
|
|
180
180
|
end
|
|
@@ -365,7 +365,7 @@ module ModernTreasury
|
|
|
365
365
|
# The risk rating of the legal entity. One of low, medium, high.
|
|
366
366
|
risk_rating:,
|
|
367
367
|
# The activation status of the legal entity. One of pending, active, suspended, or
|
|
368
|
-
#
|
|
368
|
+
# denied.
|
|
369
369
|
status:,
|
|
370
370
|
# An individual's suffix.
|
|
371
371
|
suffix:,
|
|
@@ -1059,7 +1059,7 @@ module ModernTreasury
|
|
|
1059
1059
|
end
|
|
1060
1060
|
|
|
1061
1061
|
# The activation status of the legal entity. One of pending, active, suspended, or
|
|
1062
|
-
#
|
|
1062
|
+
# denied.
|
|
1063
1063
|
module Status
|
|
1064
1064
|
extend ModernTreasury::Internal::Type::Enum
|
|
1065
1065
|
|
|
@@ -266,15 +266,6 @@ module ModernTreasury
|
|
|
266
266
|
end
|
|
267
267
|
attr_accessor :risk_rating
|
|
268
268
|
|
|
269
|
-
# The activation status of the legal entity. One of pending, active, suspended, or
|
|
270
|
-
# closed.
|
|
271
|
-
sig do
|
|
272
|
-
returns(
|
|
273
|
-
T.nilable(ModernTreasury::LegalEntityCreateParams::Status::OrSymbol)
|
|
274
|
-
)
|
|
275
|
-
end
|
|
276
|
-
attr_accessor :status
|
|
277
|
-
|
|
278
269
|
# An individual's suffix.
|
|
279
270
|
sig { returns(T.nilable(String)) }
|
|
280
271
|
attr_accessor :suffix
|
|
@@ -381,10 +372,6 @@ module ModernTreasury
|
|
|
381
372
|
T.nilable(
|
|
382
373
|
ModernTreasury::LegalEntityCreateParams::RiskRating::OrSymbol
|
|
383
374
|
),
|
|
384
|
-
status:
|
|
385
|
-
T.nilable(
|
|
386
|
-
ModernTreasury::LegalEntityCreateParams::Status::OrSymbol
|
|
387
|
-
),
|
|
388
375
|
suffix: T.nilable(String),
|
|
389
376
|
third_party_verification:
|
|
390
377
|
T.nilable(
|
|
@@ -472,9 +459,6 @@ module ModernTreasury
|
|
|
472
459
|
regulators: nil,
|
|
473
460
|
# The risk rating of the legal entity. One of low, medium, high.
|
|
474
461
|
risk_rating: nil,
|
|
475
|
-
# The activation status of the legal entity. One of pending, active, suspended, or
|
|
476
|
-
# closed.
|
|
477
|
-
status: nil,
|
|
478
462
|
# An individual's suffix.
|
|
479
463
|
suffix: nil,
|
|
480
464
|
# Information describing a third-party verification run by an external vendor.
|
|
@@ -543,10 +527,6 @@ module ModernTreasury
|
|
|
543
527
|
T.nilable(
|
|
544
528
|
ModernTreasury::LegalEntityCreateParams::RiskRating::OrSymbol
|
|
545
529
|
),
|
|
546
|
-
status:
|
|
547
|
-
T.nilable(
|
|
548
|
-
ModernTreasury::LegalEntityCreateParams::Status::OrSymbol
|
|
549
|
-
),
|
|
550
530
|
suffix: T.nilable(String),
|
|
551
531
|
third_party_verification:
|
|
552
532
|
T.nilable(
|
|
@@ -879,49 +859,6 @@ module ModernTreasury
|
|
|
879
859
|
end
|
|
880
860
|
end
|
|
881
861
|
|
|
882
|
-
# The activation status of the legal entity. One of pending, active, suspended, or
|
|
883
|
-
# closed.
|
|
884
|
-
module Status
|
|
885
|
-
extend ModernTreasury::Internal::Type::Enum
|
|
886
|
-
|
|
887
|
-
TaggedSymbol =
|
|
888
|
-
T.type_alias do
|
|
889
|
-
T.all(Symbol, ModernTreasury::LegalEntityCreateParams::Status)
|
|
890
|
-
end
|
|
891
|
-
OrSymbol = T.type_alias { T.any(Symbol, String) }
|
|
892
|
-
|
|
893
|
-
ACTIVE =
|
|
894
|
-
T.let(
|
|
895
|
-
:active,
|
|
896
|
-
ModernTreasury::LegalEntityCreateParams::Status::TaggedSymbol
|
|
897
|
-
)
|
|
898
|
-
DENIED =
|
|
899
|
-
T.let(
|
|
900
|
-
:denied,
|
|
901
|
-
ModernTreasury::LegalEntityCreateParams::Status::TaggedSymbol
|
|
902
|
-
)
|
|
903
|
-
PENDING =
|
|
904
|
-
T.let(
|
|
905
|
-
:pending,
|
|
906
|
-
ModernTreasury::LegalEntityCreateParams::Status::TaggedSymbol
|
|
907
|
-
)
|
|
908
|
-
SUSPENDED =
|
|
909
|
-
T.let(
|
|
910
|
-
:suspended,
|
|
911
|
-
ModernTreasury::LegalEntityCreateParams::Status::TaggedSymbol
|
|
912
|
-
)
|
|
913
|
-
|
|
914
|
-
sig do
|
|
915
|
-
override.returns(
|
|
916
|
-
T::Array[
|
|
917
|
-
ModernTreasury::LegalEntityCreateParams::Status::TaggedSymbol
|
|
918
|
-
]
|
|
919
|
-
)
|
|
920
|
-
end
|
|
921
|
-
def self.values
|
|
922
|
-
end
|
|
923
|
-
end
|
|
924
|
-
|
|
925
862
|
class ThirdPartyVerification < ModernTreasury::Internal::Type::BaseModel
|
|
926
863
|
OrHash =
|
|
927
864
|
T.type_alias do
|
|
@@ -223,15 +223,6 @@ module ModernTreasury
|
|
|
223
223
|
end
|
|
224
224
|
attr_accessor :risk_rating
|
|
225
225
|
|
|
226
|
-
# The activation status of the legal entity. One of pending, active, suspended, or
|
|
227
|
-
# closed.
|
|
228
|
-
sig do
|
|
229
|
-
returns(
|
|
230
|
-
T.nilable(ModernTreasury::LegalEntityUpdateParams::Status::OrSymbol)
|
|
231
|
-
)
|
|
232
|
-
end
|
|
233
|
-
attr_accessor :status
|
|
234
|
-
|
|
235
226
|
# An individual's suffix.
|
|
236
227
|
sig { returns(T.nilable(String)) }
|
|
237
228
|
attr_accessor :suffix
|
|
@@ -327,10 +318,6 @@ module ModernTreasury
|
|
|
327
318
|
T.nilable(
|
|
328
319
|
ModernTreasury::LegalEntityUpdateParams::RiskRating::OrSymbol
|
|
329
320
|
),
|
|
330
|
-
status:
|
|
331
|
-
T.nilable(
|
|
332
|
-
ModernTreasury::LegalEntityUpdateParams::Status::OrSymbol
|
|
333
|
-
),
|
|
334
321
|
suffix: T.nilable(String),
|
|
335
322
|
third_party_verification:
|
|
336
323
|
T.nilable(
|
|
@@ -405,9 +392,6 @@ module ModernTreasury
|
|
|
405
392
|
regulators: nil,
|
|
406
393
|
# The risk rating of the legal entity. One of low, medium, high.
|
|
407
394
|
risk_rating: nil,
|
|
408
|
-
# The activation status of the legal entity. One of pending, active, suspended, or
|
|
409
|
-
# closed.
|
|
410
|
-
status: nil,
|
|
411
395
|
# An individual's suffix.
|
|
412
396
|
suffix: nil,
|
|
413
397
|
# Information describing a third-party verification run by an external vendor.
|
|
@@ -467,10 +451,6 @@ module ModernTreasury
|
|
|
467
451
|
T.nilable(
|
|
468
452
|
ModernTreasury::LegalEntityUpdateParams::RiskRating::OrSymbol
|
|
469
453
|
),
|
|
470
|
-
status:
|
|
471
|
-
T.nilable(
|
|
472
|
-
ModernTreasury::LegalEntityUpdateParams::Status::OrSymbol
|
|
473
|
-
),
|
|
474
454
|
suffix: T.nilable(String),
|
|
475
455
|
third_party_verification:
|
|
476
456
|
T.nilable(
|
|
@@ -653,49 +633,6 @@ module ModernTreasury
|
|
|
653
633
|
end
|
|
654
634
|
end
|
|
655
635
|
|
|
656
|
-
# The activation status of the legal entity. One of pending, active, suspended, or
|
|
657
|
-
# closed.
|
|
658
|
-
module Status
|
|
659
|
-
extend ModernTreasury::Internal::Type::Enum
|
|
660
|
-
|
|
661
|
-
TaggedSymbol =
|
|
662
|
-
T.type_alias do
|
|
663
|
-
T.all(Symbol, ModernTreasury::LegalEntityUpdateParams::Status)
|
|
664
|
-
end
|
|
665
|
-
OrSymbol = T.type_alias { T.any(Symbol, String) }
|
|
666
|
-
|
|
667
|
-
ACTIVE =
|
|
668
|
-
T.let(
|
|
669
|
-
:active,
|
|
670
|
-
ModernTreasury::LegalEntityUpdateParams::Status::TaggedSymbol
|
|
671
|
-
)
|
|
672
|
-
DENIED =
|
|
673
|
-
T.let(
|
|
674
|
-
:denied,
|
|
675
|
-
ModernTreasury::LegalEntityUpdateParams::Status::TaggedSymbol
|
|
676
|
-
)
|
|
677
|
-
PENDING =
|
|
678
|
-
T.let(
|
|
679
|
-
:pending,
|
|
680
|
-
ModernTreasury::LegalEntityUpdateParams::Status::TaggedSymbol
|
|
681
|
-
)
|
|
682
|
-
SUSPENDED =
|
|
683
|
-
T.let(
|
|
684
|
-
:suspended,
|
|
685
|
-
ModernTreasury::LegalEntityUpdateParams::Status::TaggedSymbol
|
|
686
|
-
)
|
|
687
|
-
|
|
688
|
-
sig do
|
|
689
|
-
override.returns(
|
|
690
|
-
T::Array[
|
|
691
|
-
ModernTreasury::LegalEntityUpdateParams::Status::TaggedSymbol
|
|
692
|
-
]
|
|
693
|
-
)
|
|
694
|
-
end
|
|
695
|
-
def self.values
|
|
696
|
-
end
|
|
697
|
-
end
|
|
698
|
-
|
|
699
636
|
class ThirdPartyVerification < ModernTreasury::Internal::Type::BaseModel
|
|
700
637
|
OrHash =
|
|
701
638
|
T.type_alias do
|
|
@@ -65,10 +65,6 @@ module ModernTreasury
|
|
|
65
65
|
T.nilable(
|
|
66
66
|
ModernTreasury::LegalEntityCreateParams::RiskRating::OrSymbol
|
|
67
67
|
),
|
|
68
|
-
status:
|
|
69
|
-
T.nilable(
|
|
70
|
-
ModernTreasury::LegalEntityCreateParams::Status::OrSymbol
|
|
71
|
-
),
|
|
72
68
|
suffix: T.nilable(String),
|
|
73
69
|
third_party_verification:
|
|
74
70
|
T.nilable(
|
|
@@ -156,9 +152,6 @@ module ModernTreasury
|
|
|
156
152
|
regulators: nil,
|
|
157
153
|
# The risk rating of the legal entity. One of low, medium, high.
|
|
158
154
|
risk_rating: nil,
|
|
159
|
-
# The activation status of the legal entity. One of pending, active, suspended, or
|
|
160
|
-
# closed.
|
|
161
|
-
status: nil,
|
|
162
155
|
# An individual's suffix.
|
|
163
156
|
suffix: nil,
|
|
164
157
|
# Information describing a third-party verification run by an external vendor.
|
|
@@ -237,10 +230,6 @@ module ModernTreasury
|
|
|
237
230
|
T.nilable(
|
|
238
231
|
ModernTreasury::LegalEntityUpdateParams::RiskRating::OrSymbol
|
|
239
232
|
),
|
|
240
|
-
status:
|
|
241
|
-
T.nilable(
|
|
242
|
-
ModernTreasury::LegalEntityUpdateParams::Status::OrSymbol
|
|
243
|
-
),
|
|
244
233
|
suffix: T.nilable(String),
|
|
245
234
|
third_party_verification:
|
|
246
235
|
T.nilable(
|
|
@@ -316,9 +305,6 @@ module ModernTreasury
|
|
|
316
305
|
regulators: nil,
|
|
317
306
|
# The risk rating of the legal entity. One of low, medium, high.
|
|
318
307
|
risk_rating: nil,
|
|
319
|
-
# The activation status of the legal entity. One of pending, active, suspended, or
|
|
320
|
-
# closed.
|
|
321
|
-
status: nil,
|
|
322
308
|
# An individual's suffix.
|
|
323
309
|
suffix: nil,
|
|
324
310
|
# Information describing a third-party verification run by an external vendor.
|
|
@@ -36,7 +36,6 @@ module ModernTreasury
|
|
|
36
36
|
primary_social_media_sites: ::Array[String],
|
|
37
37
|
regulators: ::Array[ModernTreasury::ChildLegalEntityCreate::Regulator]?,
|
|
38
38
|
risk_rating: ModernTreasury::Models::ChildLegalEntityCreate::risk_rating?,
|
|
39
|
-
status: ModernTreasury::Models::ChildLegalEntityCreate::status?,
|
|
40
39
|
suffix: String?,
|
|
41
40
|
third_party_verification: ModernTreasury::ChildLegalEntityCreate::ThirdPartyVerification?,
|
|
42
41
|
ticker_symbol: String?,
|
|
@@ -145,8 +144,6 @@ module ModernTreasury
|
|
|
145
144
|
|
|
146
145
|
attr_accessor risk_rating: ModernTreasury::Models::ChildLegalEntityCreate::risk_rating?
|
|
147
146
|
|
|
148
|
-
attr_accessor status: ModernTreasury::Models::ChildLegalEntityCreate::status?
|
|
149
|
-
|
|
150
147
|
attr_accessor suffix: String?
|
|
151
148
|
|
|
152
149
|
attr_accessor third_party_verification: ModernTreasury::ChildLegalEntityCreate::ThirdPartyVerification?
|
|
@@ -192,7 +189,6 @@ module ModernTreasury
|
|
|
192
189
|
?primary_social_media_sites: ::Array[String],
|
|
193
190
|
?regulators: ::Array[ModernTreasury::ChildLegalEntityCreate::Regulator]?,
|
|
194
191
|
?risk_rating: ModernTreasury::Models::ChildLegalEntityCreate::risk_rating?,
|
|
195
|
-
?status: ModernTreasury::Models::ChildLegalEntityCreate::status?,
|
|
196
192
|
?suffix: String?,
|
|
197
193
|
?third_party_verification: ModernTreasury::ChildLegalEntityCreate::ThirdPartyVerification?,
|
|
198
194
|
?ticker_symbol: String?,
|
|
@@ -235,7 +231,6 @@ module ModernTreasury
|
|
|
235
231
|
primary_social_media_sites: ::Array[String],
|
|
236
232
|
regulators: ::Array[ModernTreasury::ChildLegalEntityCreate::Regulator]?,
|
|
237
233
|
risk_rating: ModernTreasury::Models::ChildLegalEntityCreate::risk_rating?,
|
|
238
|
-
status: ModernTreasury::Models::ChildLegalEntityCreate::status?,
|
|
239
234
|
suffix: String?,
|
|
240
235
|
third_party_verification: ModernTreasury::ChildLegalEntityCreate::ThirdPartyVerification?,
|
|
241
236
|
ticker_symbol: String?,
|
|
@@ -372,19 +367,6 @@ module ModernTreasury
|
|
|
372
367
|
def self?.values: -> ::Array[ModernTreasury::Models::ChildLegalEntityCreate::risk_rating]
|
|
373
368
|
end
|
|
374
369
|
|
|
375
|
-
type status = :active | :denied | :pending | :suspended
|
|
376
|
-
|
|
377
|
-
module Status
|
|
378
|
-
extend ModernTreasury::Internal::Type::Enum
|
|
379
|
-
|
|
380
|
-
ACTIVE: :active
|
|
381
|
-
DENIED: :denied
|
|
382
|
-
PENDING: :pending
|
|
383
|
-
SUSPENDED: :suspended
|
|
384
|
-
|
|
385
|
-
def self?.values: -> ::Array[ModernTreasury::Models::ChildLegalEntityCreate::status]
|
|
386
|
-
end
|
|
387
|
-
|
|
388
370
|
type third_party_verification =
|
|
389
371
|
{
|
|
390
372
|
vendor: ModernTreasury::Models::ChildLegalEntityCreate::ThirdPartyVerification::vendor,
|
|
@@ -74,7 +74,6 @@ module ModernTreasury
|
|
|
74
74
|
primary_social_media_sites: ::Array[String],
|
|
75
75
|
regulators: ::Array[ModernTreasury::ConnectionLegalEntityCreateParams::LegalEntity::Regulator]?,
|
|
76
76
|
risk_rating: ModernTreasury::Models::ConnectionLegalEntityCreateParams::LegalEntity::risk_rating?,
|
|
77
|
-
status: ModernTreasury::Models::ConnectionLegalEntityCreateParams::LegalEntity::status?,
|
|
78
77
|
suffix: String?,
|
|
79
78
|
third_party_verification: ModernTreasury::ConnectionLegalEntityCreateParams::LegalEntity::ThirdPartyVerification?,
|
|
80
79
|
ticker_symbol: String?,
|
|
@@ -183,8 +182,6 @@ module ModernTreasury
|
|
|
183
182
|
|
|
184
183
|
attr_accessor risk_rating: ModernTreasury::Models::ConnectionLegalEntityCreateParams::LegalEntity::risk_rating?
|
|
185
184
|
|
|
186
|
-
attr_accessor status: ModernTreasury::Models::ConnectionLegalEntityCreateParams::LegalEntity::status?
|
|
187
|
-
|
|
188
185
|
attr_accessor suffix: String?
|
|
189
186
|
|
|
190
187
|
attr_accessor third_party_verification: ModernTreasury::ConnectionLegalEntityCreateParams::LegalEntity::ThirdPartyVerification?
|
|
@@ -230,7 +227,6 @@ module ModernTreasury
|
|
|
230
227
|
?primary_social_media_sites: ::Array[String],
|
|
231
228
|
?regulators: ::Array[ModernTreasury::ConnectionLegalEntityCreateParams::LegalEntity::Regulator]?,
|
|
232
229
|
?risk_rating: ModernTreasury::Models::ConnectionLegalEntityCreateParams::LegalEntity::risk_rating?,
|
|
233
|
-
?status: ModernTreasury::Models::ConnectionLegalEntityCreateParams::LegalEntity::status?,
|
|
234
230
|
?suffix: String?,
|
|
235
231
|
?third_party_verification: ModernTreasury::ConnectionLegalEntityCreateParams::LegalEntity::ThirdPartyVerification?,
|
|
236
232
|
?ticker_symbol: String?,
|
|
@@ -273,7 +269,6 @@ module ModernTreasury
|
|
|
273
269
|
primary_social_media_sites: ::Array[String],
|
|
274
270
|
regulators: ::Array[ModernTreasury::ConnectionLegalEntityCreateParams::LegalEntity::Regulator]?,
|
|
275
271
|
risk_rating: ModernTreasury::Models::ConnectionLegalEntityCreateParams::LegalEntity::risk_rating?,
|
|
276
|
-
status: ModernTreasury::Models::ConnectionLegalEntityCreateParams::LegalEntity::status?,
|
|
277
272
|
suffix: String?,
|
|
278
273
|
third_party_verification: ModernTreasury::ConnectionLegalEntityCreateParams::LegalEntity::ThirdPartyVerification?,
|
|
279
274
|
ticker_symbol: String?,
|
|
@@ -410,19 +405,6 @@ module ModernTreasury
|
|
|
410
405
|
def self?.values: -> ::Array[ModernTreasury::Models::ConnectionLegalEntityCreateParams::LegalEntity::risk_rating]
|
|
411
406
|
end
|
|
412
407
|
|
|
413
|
-
type status = :active | :denied | :pending | :suspended
|
|
414
|
-
|
|
415
|
-
module Status
|
|
416
|
-
extend ModernTreasury::Internal::Type::Enum
|
|
417
|
-
|
|
418
|
-
ACTIVE: :active
|
|
419
|
-
DENIED: :denied
|
|
420
|
-
PENDING: :pending
|
|
421
|
-
SUSPENDED: :suspended
|
|
422
|
-
|
|
423
|
-
def self?.values: -> ::Array[ModernTreasury::Models::ConnectionLegalEntityCreateParams::LegalEntity::status]
|
|
424
|
-
end
|
|
425
|
-
|
|
426
408
|
type third_party_verification =
|
|
427
409
|
{
|
|
428
410
|
vendor: ModernTreasury::Models::ConnectionLegalEntityCreateParams::LegalEntity::ThirdPartyVerification::vendor,
|
|
@@ -528,7 +528,6 @@ module ModernTreasury
|
|
|
528
528
|
primary_social_media_sites: ::Array[String],
|
|
529
529
|
regulators: ::Array[ModernTreasury::CounterpartyCreateParams::LegalEntity::Regulator]?,
|
|
530
530
|
risk_rating: ModernTreasury::Models::CounterpartyCreateParams::LegalEntity::risk_rating?,
|
|
531
|
-
status: ModernTreasury::Models::CounterpartyCreateParams::LegalEntity::status?,
|
|
532
531
|
suffix: String?,
|
|
533
532
|
third_party_verification: ModernTreasury::CounterpartyCreateParams::LegalEntity::ThirdPartyVerification?,
|
|
534
533
|
ticker_symbol: String?,
|
|
@@ -633,8 +632,6 @@ module ModernTreasury
|
|
|
633
632
|
|
|
634
633
|
attr_accessor risk_rating: ModernTreasury::Models::CounterpartyCreateParams::LegalEntity::risk_rating?
|
|
635
634
|
|
|
636
|
-
attr_accessor status: ModernTreasury::Models::CounterpartyCreateParams::LegalEntity::status?
|
|
637
|
-
|
|
638
635
|
attr_accessor suffix: String?
|
|
639
636
|
|
|
640
637
|
attr_accessor third_party_verification: ModernTreasury::CounterpartyCreateParams::LegalEntity::ThirdPartyVerification?
|
|
@@ -680,7 +677,6 @@ module ModernTreasury
|
|
|
680
677
|
?primary_social_media_sites: ::Array[String],
|
|
681
678
|
?regulators: ::Array[ModernTreasury::CounterpartyCreateParams::LegalEntity::Regulator]?,
|
|
682
679
|
?risk_rating: ModernTreasury::Models::CounterpartyCreateParams::LegalEntity::risk_rating?,
|
|
683
|
-
?status: ModernTreasury::Models::CounterpartyCreateParams::LegalEntity::status?,
|
|
684
680
|
?suffix: String?,
|
|
685
681
|
?third_party_verification: ModernTreasury::CounterpartyCreateParams::LegalEntity::ThirdPartyVerification?,
|
|
686
682
|
?ticker_symbol: String?,
|
|
@@ -723,7 +719,6 @@ module ModernTreasury
|
|
|
723
719
|
primary_social_media_sites: ::Array[String],
|
|
724
720
|
regulators: ::Array[ModernTreasury::CounterpartyCreateParams::LegalEntity::Regulator]?,
|
|
725
721
|
risk_rating: ModernTreasury::Models::CounterpartyCreateParams::LegalEntity::risk_rating?,
|
|
726
|
-
status: ModernTreasury::Models::CounterpartyCreateParams::LegalEntity::status?,
|
|
727
722
|
suffix: String?,
|
|
728
723
|
third_party_verification: ModernTreasury::CounterpartyCreateParams::LegalEntity::ThirdPartyVerification?,
|
|
729
724
|
ticker_symbol: String?,
|
|
@@ -860,19 +855,6 @@ module ModernTreasury
|
|
|
860
855
|
def self?.values: -> ::Array[ModernTreasury::Models::CounterpartyCreateParams::LegalEntity::risk_rating]
|
|
861
856
|
end
|
|
862
857
|
|
|
863
|
-
type status = :active | :denied | :pending | :suspended
|
|
864
|
-
|
|
865
|
-
module Status
|
|
866
|
-
extend ModernTreasury::Internal::Type::Enum
|
|
867
|
-
|
|
868
|
-
ACTIVE: :active
|
|
869
|
-
DENIED: :denied
|
|
870
|
-
PENDING: :pending
|
|
871
|
-
SUSPENDED: :suspended
|
|
872
|
-
|
|
873
|
-
def self?.values: -> ::Array[ModernTreasury::Models::CounterpartyCreateParams::LegalEntity::status]
|
|
874
|
-
end
|
|
875
|
-
|
|
876
858
|
type third_party_verification =
|
|
877
859
|
{
|
|
878
860
|
vendor: ModernTreasury::Models::CounterpartyCreateParams::LegalEntity::ThirdPartyVerification::vendor,
|
|
@@ -36,7 +36,6 @@ module ModernTreasury
|
|
|
36
36
|
primary_social_media_sites: ::Array[String],
|
|
37
37
|
regulators: ::Array[ModernTreasury::LegalEntityCreateParams::Regulator]?,
|
|
38
38
|
risk_rating: ModernTreasury::Models::LegalEntityCreateParams::risk_rating?,
|
|
39
|
-
status: ModernTreasury::Models::LegalEntityCreateParams::status?,
|
|
40
39
|
suffix: String?,
|
|
41
40
|
third_party_verification: ModernTreasury::LegalEntityCreateParams::ThirdPartyVerification?,
|
|
42
41
|
ticker_symbol: String?,
|
|
@@ -145,8 +144,6 @@ module ModernTreasury
|
|
|
145
144
|
|
|
146
145
|
attr_accessor risk_rating: ModernTreasury::Models::LegalEntityCreateParams::risk_rating?
|
|
147
146
|
|
|
148
|
-
attr_accessor status: ModernTreasury::Models::LegalEntityCreateParams::status?
|
|
149
|
-
|
|
150
147
|
attr_accessor suffix: String?
|
|
151
148
|
|
|
152
149
|
attr_accessor third_party_verification: ModernTreasury::LegalEntityCreateParams::ThirdPartyVerification?
|
|
@@ -192,7 +189,6 @@ module ModernTreasury
|
|
|
192
189
|
?primary_social_media_sites: ::Array[String],
|
|
193
190
|
?regulators: ::Array[ModernTreasury::LegalEntityCreateParams::Regulator]?,
|
|
194
191
|
?risk_rating: ModernTreasury::Models::LegalEntityCreateParams::risk_rating?,
|
|
195
|
-
?status: ModernTreasury::Models::LegalEntityCreateParams::status?,
|
|
196
192
|
?suffix: String?,
|
|
197
193
|
?third_party_verification: ModernTreasury::LegalEntityCreateParams::ThirdPartyVerification?,
|
|
198
194
|
?ticker_symbol: String?,
|
|
@@ -236,7 +232,6 @@ module ModernTreasury
|
|
|
236
232
|
primary_social_media_sites: ::Array[String],
|
|
237
233
|
regulators: ::Array[ModernTreasury::LegalEntityCreateParams::Regulator]?,
|
|
238
234
|
risk_rating: ModernTreasury::Models::LegalEntityCreateParams::risk_rating?,
|
|
239
|
-
status: ModernTreasury::Models::LegalEntityCreateParams::status?,
|
|
240
235
|
suffix: String?,
|
|
241
236
|
third_party_verification: ModernTreasury::LegalEntityCreateParams::ThirdPartyVerification?,
|
|
242
237
|
ticker_symbol: String?,
|
|
@@ -374,19 +369,6 @@ module ModernTreasury
|
|
|
374
369
|
def self?.values: -> ::Array[ModernTreasury::Models::LegalEntityCreateParams::risk_rating]
|
|
375
370
|
end
|
|
376
371
|
|
|
377
|
-
type status = :active | :denied | :pending | :suspended
|
|
378
|
-
|
|
379
|
-
module Status
|
|
380
|
-
extend ModernTreasury::Internal::Type::Enum
|
|
381
|
-
|
|
382
|
-
ACTIVE: :active
|
|
383
|
-
DENIED: :denied
|
|
384
|
-
PENDING: :pending
|
|
385
|
-
SUSPENDED: :suspended
|
|
386
|
-
|
|
387
|
-
def self?.values: -> ::Array[ModernTreasury::Models::LegalEntityCreateParams::status]
|
|
388
|
-
end
|
|
389
|
-
|
|
390
372
|
type third_party_verification =
|
|
391
373
|
{
|
|
392
374
|
vendor: ModernTreasury::Models::LegalEntityCreateParams::ThirdPartyVerification::vendor,
|
|
@@ -32,7 +32,6 @@ module ModernTreasury
|
|
|
32
32
|
primary_social_media_sites: ::Array[String],
|
|
33
33
|
regulators: ::Array[ModernTreasury::LegalEntityUpdateParams::Regulator]?,
|
|
34
34
|
risk_rating: ModernTreasury::Models::LegalEntityUpdateParams::risk_rating?,
|
|
35
|
-
status: ModernTreasury::Models::LegalEntityUpdateParams::status?,
|
|
36
35
|
suffix: String?,
|
|
37
36
|
third_party_verification: ModernTreasury::LegalEntityUpdateParams::ThirdPartyVerification?,
|
|
38
37
|
ticker_symbol: String?,
|
|
@@ -129,8 +128,6 @@ module ModernTreasury
|
|
|
129
128
|
|
|
130
129
|
attr_accessor risk_rating: ModernTreasury::Models::LegalEntityUpdateParams::risk_rating?
|
|
131
130
|
|
|
132
|
-
attr_accessor status: ModernTreasury::Models::LegalEntityUpdateParams::status?
|
|
133
|
-
|
|
134
131
|
attr_accessor suffix: String?
|
|
135
132
|
|
|
136
133
|
attr_accessor third_party_verification: ModernTreasury::LegalEntityUpdateParams::ThirdPartyVerification?
|
|
@@ -172,7 +169,6 @@ module ModernTreasury
|
|
|
172
169
|
?primary_social_media_sites: ::Array[String],
|
|
173
170
|
?regulators: ::Array[ModernTreasury::LegalEntityUpdateParams::Regulator]?,
|
|
174
171
|
?risk_rating: ModernTreasury::Models::LegalEntityUpdateParams::risk_rating?,
|
|
175
|
-
?status: ModernTreasury::Models::LegalEntityUpdateParams::status?,
|
|
176
172
|
?suffix: String?,
|
|
177
173
|
?third_party_verification: ModernTreasury::LegalEntityUpdateParams::ThirdPartyVerification?,
|
|
178
174
|
?ticker_symbol: String?,
|
|
@@ -212,7 +208,6 @@ module ModernTreasury
|
|
|
212
208
|
primary_social_media_sites: ::Array[String],
|
|
213
209
|
regulators: ::Array[ModernTreasury::LegalEntityUpdateParams::Regulator]?,
|
|
214
210
|
risk_rating: ModernTreasury::Models::LegalEntityUpdateParams::risk_rating?,
|
|
215
|
-
status: ModernTreasury::Models::LegalEntityUpdateParams::status?,
|
|
216
211
|
suffix: String?,
|
|
217
212
|
third_party_verification: ModernTreasury::LegalEntityUpdateParams::ThirdPartyVerification?,
|
|
218
213
|
ticker_symbol: String?,
|
|
@@ -289,19 +284,6 @@ module ModernTreasury
|
|
|
289
284
|
def self?.values: -> ::Array[ModernTreasury::Models::LegalEntityUpdateParams::risk_rating]
|
|
290
285
|
end
|
|
291
286
|
|
|
292
|
-
type status = :active | :denied | :pending | :suspended
|
|
293
|
-
|
|
294
|
-
module Status
|
|
295
|
-
extend ModernTreasury::Internal::Type::Enum
|
|
296
|
-
|
|
297
|
-
ACTIVE: :active
|
|
298
|
-
DENIED: :denied
|
|
299
|
-
PENDING: :pending
|
|
300
|
-
SUSPENDED: :suspended
|
|
301
|
-
|
|
302
|
-
def self?.values: -> ::Array[ModernTreasury::Models::LegalEntityUpdateParams::status]
|
|
303
|
-
end
|
|
304
|
-
|
|
305
287
|
type third_party_verification =
|
|
306
288
|
{
|
|
307
289
|
vendor: ModernTreasury::Models::LegalEntityUpdateParams::ThirdPartyVerification::vendor,
|
|
@@ -36,7 +36,6 @@ module ModernTreasury
|
|
|
36
36
|
?primary_social_media_sites: ::Array[String],
|
|
37
37
|
?regulators: ::Array[ModernTreasury::LegalEntityCreateParams::Regulator]?,
|
|
38
38
|
?risk_rating: ModernTreasury::Models::LegalEntityCreateParams::risk_rating?,
|
|
39
|
-
?status: ModernTreasury::Models::LegalEntityCreateParams::status?,
|
|
40
39
|
?suffix: String?,
|
|
41
40
|
?third_party_verification: ModernTreasury::LegalEntityCreateParams::ThirdPartyVerification?,
|
|
42
41
|
?ticker_symbol: String?,
|
|
@@ -81,7 +80,6 @@ module ModernTreasury
|
|
|
81
80
|
?primary_social_media_sites: ::Array[String],
|
|
82
81
|
?regulators: ::Array[ModernTreasury::LegalEntityUpdateParams::Regulator]?,
|
|
83
82
|
?risk_rating: ModernTreasury::Models::LegalEntityUpdateParams::risk_rating?,
|
|
84
|
-
?status: ModernTreasury::Models::LegalEntityUpdateParams::status?,
|
|
85
83
|
?suffix: String?,
|
|
86
84
|
?third_party_verification: ModernTreasury::LegalEntityUpdateParams::ThirdPartyVerification?,
|
|
87
85
|
?ticker_symbol: String?,
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: modern_treasury
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.23.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Modern Treasury
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-03-
|
|
11
|
+
date: 2026-03-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cgi
|