straddle 0.1.0.pre.alpha.1 → 0.2.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 +52 -0
- data/README.md +3 -3
- data/SECURITY.md +1 -1
- data/lib/straddle/client.rb +4 -4
- data/lib/straddle/errors.rb +25 -11
- data/lib/straddle/file_part.rb +10 -7
- data/lib/straddle/internal/page_number_schema.rb +1 -1
- data/lib/straddle/internal/transport/base_client.rb +12 -8
- data/lib/straddle/internal/transport/pooled_net_requester.rb +8 -19
- data/lib/straddle/internal/type/array_of.rb +1 -0
- data/lib/straddle/internal/type/base_model.rb +4 -9
- data/lib/straddle/internal/type/base_page.rb +1 -1
- data/lib/straddle/internal/type/converter.rb +27 -0
- data/lib/straddle/internal/type/file_input.rb +7 -4
- data/lib/straddle/internal/type/hash_of.rb +1 -0
- data/lib/straddle/internal/type/union.rb +9 -7
- data/lib/straddle/internal/util.rb +4 -3
- data/lib/straddle/models/bridge/link_bank_account_params.rb +9 -5
- data/lib/straddle/models/bridge/link_create_paykey_params.rb +9 -5
- data/lib/straddle/models/bridge/link_create_tan_params.rb +9 -5
- data/lib/straddle/models/bridge/link_plaid_params.rb +8 -1
- data/lib/straddle/models/bridge_initialize_params.rb +8 -1
- data/lib/straddle/models/charge_cancel_params.rb +8 -1
- data/lib/straddle/models/charge_create_params.rb +8 -1
- data/lib/straddle/models/charge_hold_params.rb +8 -1
- data/lib/straddle/models/charge_release_params.rb +8 -1
- data/lib/straddle/models/charge_update_params.rb +8 -1
- data/lib/straddle/models/customer_create_params.rb +8 -2
- data/lib/straddle/models/customer_delete_params.rb +7 -1
- data/lib/straddle/models/customer_list_params.rb +0 -1
- data/lib/straddle/models/customer_refresh_review_params.rb +7 -1
- data/lib/straddle/models/customer_summary_paged_v1.rb +0 -1
- data/lib/straddle/models/customer_unmasked_v1.rb +1 -5
- data/lib/straddle/models/customer_update_params.rb +8 -1
- data/lib/straddle/models/customer_v1.rb +0 -1
- data/lib/straddle/models/customers/customer_review_v1.rb +15 -52
- data/lib/straddle/models/customers/identity_verification_breakdown_v1.rb +0 -1
- data/lib/straddle/models/customers/review_decision_params.rb +8 -1
- data/lib/straddle/models/embed/account_create_params.rb +8 -2
- data/lib/straddle/models/embed/account_onboard_params.rb +7 -1
- data/lib/straddle/models/embed/account_paged_v1.rb +3 -17
- data/lib/straddle/models/embed/account_simulate_params.rb +7 -1
- data/lib/straddle/models/embed/account_update_params.rb +8 -1
- data/lib/straddle/models/embed/account_v1.rb +2 -13
- data/lib/straddle/models/embed/accounts/capability_request_create_params.rb +8 -1
- data/lib/straddle/models/embed/accounts/capability_request_paged_v1.rb +3 -11
- data/lib/straddle/models/embed/linked_bank_account_cancel_params.rb +34 -0
- data/lib/straddle/models/embed/linked_bank_account_create_params.rb +51 -4
- data/lib/straddle/models/embed/linked_bank_account_paged_v1.rb +33 -13
- data/lib/straddle/models/embed/linked_bank_account_unmask_v1.rb +3 -8
- data/lib/straddle/models/embed/linked_bank_account_update_params.rb +8 -1
- data/lib/straddle/models/embed/linked_bank_account_v1.rb +30 -1
- data/lib/straddle/models/embed/organization_create_params.rb +8 -1
- data/lib/straddle/models/embed/representative.rb +10 -1
- data/lib/straddle/models/embed/representative_create_params.rb +17 -1
- data/lib/straddle/models/embed/representative_paged.rb +10 -1
- data/lib/straddle/models/embed/representative_update_params.rb +17 -1
- data/lib/straddle/models/paykey_cancel_params.rb +7 -1
- data/lib/straddle/models/paykey_review_params.rb +54 -0
- data/lib/straddle/models/payout_cancel_params.rb +8 -1
- data/lib/straddle/models/payout_create_params.rb +8 -1
- data/lib/straddle/models/payout_hold_params.rb +8 -1
- data/lib/straddle/models/payout_release_params.rb +8 -1
- data/lib/straddle/models/payout_update_params.rb +8 -1
- data/lib/straddle/models.rb +2 -0
- data/lib/straddle/resources/bridge/link.rb +16 -4
- data/lib/straddle/resources/bridge.rb +4 -1
- data/lib/straddle/resources/charges.rb +20 -5
- data/lib/straddle/resources/customers/review.rb +4 -1
- data/lib/straddle/resources/customers.rb +16 -4
- data/lib/straddle/resources/embed/accounts/capability_requests.rb +5 -2
- data/lib/straddle/resources/embed/accounts.rb +19 -7
- data/lib/straddle/resources/embed/linked_bank_accounts.rb +51 -5
- data/lib/straddle/resources/embed/organizations.rb +5 -2
- data/lib/straddle/resources/embed/representatives.rb +14 -4
- data/lib/straddle/resources/paykeys.rb +47 -1
- data/lib/straddle/resources/payouts.rb +20 -5
- data/lib/straddle/version.rb +1 -1
- data/lib/straddle.rb +2 -0
- data/rbi/straddle/client.rbi +4 -4
- data/rbi/straddle/errors.rbi +31 -4
- data/rbi/straddle/file_part.rbi +1 -1
- data/rbi/straddle/internal/transport/base_client.rbi +5 -6
- data/rbi/straddle/internal/type/base_page.rbi +1 -1
- data/rbi/straddle/internal/type/converter.rbi +54 -0
- data/rbi/straddle/internal/type/union.rbi +9 -2
- data/rbi/straddle/internal/util.rbi +1 -1
- data/rbi/straddle/models/bridge/link_bank_account_params.rbi +9 -0
- data/rbi/straddle/models/bridge/link_create_paykey_params.rbi +9 -0
- data/rbi/straddle/models/bridge/link_create_tan_params.rbi +9 -0
- data/rbi/straddle/models/bridge/link_plaid_params.rbi +9 -0
- data/rbi/straddle/models/bridge_initialize_params.rbi +9 -0
- data/rbi/straddle/models/charge_cancel_params.rbi +9 -0
- data/rbi/straddle/models/charge_create_params.rbi +9 -0
- data/rbi/straddle/models/charge_hold_params.rbi +9 -0
- data/rbi/straddle/models/charge_release_params.rbi +9 -0
- data/rbi/straddle/models/charge_update_params.rbi +9 -0
- data/rbi/straddle/models/customer_create_params.rbi +9 -2
- data/rbi/straddle/models/customer_delete_params.rbi +9 -0
- data/rbi/straddle/models/customer_list_params.rbi +0 -2
- data/rbi/straddle/models/customer_refresh_review_params.rbi +9 -0
- data/rbi/straddle/models/customer_summary_paged_v1.rbi +0 -5
- data/rbi/straddle/models/customer_unmasked_v1.rbi +0 -5
- data/rbi/straddle/models/customer_update_params.rbi +9 -0
- data/rbi/straddle/models/customer_v1.rbi +0 -2
- data/rbi/straddle/models/customers/customer_review_v1.rbi +0 -10
- data/rbi/straddle/models/customers/identity_verification_breakdown_v1.rbi +0 -5
- data/rbi/straddle/models/customers/review_decision_params.rbi +9 -0
- data/rbi/straddle/models/embed/account_create_params.rbi +9 -5
- data/rbi/straddle/models/embed/account_onboard_params.rbi +9 -0
- data/rbi/straddle/models/embed/account_paged_v1.rbi +0 -25
- data/rbi/straddle/models/embed/account_simulate_params.rbi +9 -0
- data/rbi/straddle/models/embed/account_update_params.rbi +9 -0
- data/rbi/straddle/models/embed/account_v1.rbi +0 -25
- data/rbi/straddle/models/embed/accounts/capability_request_create_params.rbi +9 -0
- data/rbi/straddle/models/embed/linked_bank_account_cancel_params.rbi +67 -0
- data/rbi/straddle/models/embed/linked_bank_account_create_params.rbi +95 -3
- data/rbi/straddle/models/embed/linked_bank_account_paged_v1.rbi +72 -0
- data/rbi/straddle/models/embed/linked_bank_account_unmask_v1.rbi +5 -0
- data/rbi/straddle/models/embed/linked_bank_account_update_params.rbi +9 -0
- data/rbi/straddle/models/embed/linked_bank_account_v1.rbi +72 -0
- data/rbi/straddle/models/embed/organization_create_params.rbi +9 -0
- data/rbi/straddle/models/embed/representative.rbi +10 -0
- data/rbi/straddle/models/embed/representative_create_params.rbi +19 -0
- data/rbi/straddle/models/embed/representative_paged.rbi +10 -0
- data/rbi/straddle/models/embed/representative_update_params.rbi +19 -0
- data/rbi/straddle/models/paykey_cancel_params.rbi +9 -0
- data/rbi/straddle/models/paykey_review_params.rbi +98 -0
- data/rbi/straddle/models/payout_cancel_params.rbi +9 -0
- data/rbi/straddle/models/payout_create_params.rbi +9 -0
- data/rbi/straddle/models/payout_hold_params.rbi +9 -0
- data/rbi/straddle/models/payout_release_params.rbi +9 -0
- data/rbi/straddle/models/payout_update_params.rbi +9 -0
- data/rbi/straddle/models.rbi +2 -0
- data/rbi/straddle/resources/bridge/link.rbi +12 -0
- data/rbi/straddle/resources/bridge.rbi +3 -0
- data/rbi/straddle/resources/charges.rbi +15 -0
- data/rbi/straddle/resources/customers/review.rbi +3 -0
- data/rbi/straddle/resources/customers.rbi +12 -0
- data/rbi/straddle/resources/embed/accounts/capability_requests.rbi +3 -0
- data/rbi/straddle/resources/embed/accounts.rbi +12 -0
- data/rbi/straddle/resources/embed/linked_bank_accounts.rbi +46 -1
- data/rbi/straddle/resources/embed/organizations.rbi +3 -0
- data/rbi/straddle/resources/embed/representatives.rbi +14 -0
- data/rbi/straddle/resources/paykeys.rbi +34 -0
- data/rbi/straddle/resources/payouts.rbi +15 -0
- data/sig/straddle/client.rbs +3 -3
- data/sig/straddle/errors.rbs +7 -0
- data/sig/straddle/file_part.rbs +1 -1
- data/sig/straddle/internal/transport/base_client.rbs +1 -1
- data/sig/straddle/internal/type/converter.rbs +17 -0
- data/sig/straddle/internal/type/union.rbs +2 -2
- data/sig/straddle/models/bridge/link_bank_account_params.rbs +7 -0
- data/sig/straddle/models/bridge/link_create_paykey_params.rbs +7 -0
- data/sig/straddle/models/bridge/link_create_tan_params.rbs +7 -0
- data/sig/straddle/models/bridge/link_plaid_params.rbs +7 -0
- data/sig/straddle/models/bridge_initialize_params.rbs +7 -0
- data/sig/straddle/models/charge_cancel_params.rbs +7 -0
- data/sig/straddle/models/charge_create_params.rbs +7 -0
- data/sig/straddle/models/charge_hold_params.rbs +7 -0
- data/sig/straddle/models/charge_release_params.rbs +7 -0
- data/sig/straddle/models/charge_update_params.rbs +7 -0
- data/sig/straddle/models/customer_create_params.rbs +8 -2
- data/sig/straddle/models/customer_delete_params.rbs +7 -0
- data/sig/straddle/models/customer_list_params.rbs +1 -2
- data/sig/straddle/models/customer_refresh_review_params.rbs +7 -0
- data/sig/straddle/models/customer_summary_paged_v1.rbs +1 -2
- data/sig/straddle/models/customer_unmasked_v1.rbs +1 -2
- data/sig/straddle/models/customer_update_params.rbs +7 -0
- data/sig/straddle/models/customer_v1.rbs +1 -2
- data/sig/straddle/models/customers/customer_review_v1.rbs +1 -4
- data/sig/straddle/models/customers/identity_verification_breakdown_v1.rbs +1 -6
- data/sig/straddle/models/customers/review_decision_params.rbs +7 -0
- data/sig/straddle/models/embed/account_create_params.rbs +8 -2
- data/sig/straddle/models/embed/account_onboard_params.rbs +7 -0
- data/sig/straddle/models/embed/account_paged_v1.rbs +4 -21
- data/sig/straddle/models/embed/account_simulate_params.rbs +7 -0
- data/sig/straddle/models/embed/account_update_params.rbs +7 -0
- data/sig/straddle/models/embed/account_v1.rbs +4 -21
- data/sig/straddle/models/embed/accounts/capability_request_create_params.rbs +7 -0
- data/sig/straddle/models/embed/linked_bank_account_cancel_params.rbs +40 -0
- data/sig/straddle/models/embed/linked_bank_account_create_params.rbs +38 -4
- data/sig/straddle/models/embed/linked_bank_account_paged_v1.rbs +25 -1
- data/sig/straddle/models/embed/linked_bank_account_unmask_v1.rbs +3 -1
- data/sig/straddle/models/embed/linked_bank_account_update_params.rbs +7 -0
- data/sig/straddle/models/embed/linked_bank_account_v1.rbs +25 -1
- data/sig/straddle/models/embed/organization_create_params.rbs +7 -0
- data/sig/straddle/models/embed/representative.rbs +5 -0
- data/sig/straddle/models/embed/representative_create_params.rbs +12 -0
- data/sig/straddle/models/embed/representative_paged.rbs +5 -0
- data/sig/straddle/models/embed/representative_update_params.rbs +12 -0
- data/sig/straddle/models/paykey_cancel_params.rbs +7 -0
- data/sig/straddle/models/paykey_review_params.rbs +65 -0
- data/sig/straddle/models/payout_cancel_params.rbs +7 -0
- data/sig/straddle/models/payout_create_params.rbs +7 -0
- data/sig/straddle/models/payout_hold_params.rbs +7 -0
- data/sig/straddle/models/payout_release_params.rbs +7 -0
- data/sig/straddle/models/payout_update_params.rbs +7 -0
- data/sig/straddle/models.rbs +2 -0
- data/sig/straddle/resources/bridge/link.rbs +4 -0
- data/sig/straddle/resources/bridge.rbs +1 -0
- data/sig/straddle/resources/charges.rbs +5 -0
- data/sig/straddle/resources/customers/review.rbs +1 -0
- data/sig/straddle/resources/customers.rbs +4 -0
- data/sig/straddle/resources/embed/accounts/capability_requests.rbs +1 -0
- data/sig/straddle/resources/embed/accounts.rbs +4 -0
- data/sig/straddle/resources/embed/linked_bank_accounts.rbs +14 -1
- data/sig/straddle/resources/embed/organizations.rbs +1 -0
- data/sig/straddle/resources/embed/representatives.rbs +4 -0
- data/sig/straddle/resources/paykeys.rbs +11 -0
- data/sig/straddle/resources/payouts.rbs +5 -0
- metadata +11 -5
|
@@ -44,6 +44,7 @@ module Straddle
|
|
|
44
44
|
status_detail: Straddle::Embed::Representative::Data::StatusDetail,
|
|
45
45
|
updated_at: Time,
|
|
46
46
|
external_id: String?,
|
|
47
|
+
metadata: ::Hash[Symbol, String]?,
|
|
47
48
|
phone: String?,
|
|
48
49
|
user_id: String?
|
|
49
50
|
}
|
|
@@ -79,6 +80,8 @@ module Straddle
|
|
|
79
80
|
|
|
80
81
|
attr_accessor external_id: String?
|
|
81
82
|
|
|
83
|
+
attr_accessor metadata: ::Hash[Symbol, String]?
|
|
84
|
+
|
|
82
85
|
attr_accessor phone: String?
|
|
83
86
|
|
|
84
87
|
attr_accessor user_id: String?
|
|
@@ -99,6 +102,7 @@ module Straddle
|
|
|
99
102
|
status_detail: Straddle::Embed::Representative::Data::StatusDetail,
|
|
100
103
|
updated_at: Time,
|
|
101
104
|
?external_id: String?,
|
|
105
|
+
?metadata: ::Hash[Symbol, String]?,
|
|
102
106
|
?phone: String?,
|
|
103
107
|
?user_id: String?
|
|
104
108
|
) -> void
|
|
@@ -119,6 +123,7 @@ module Straddle
|
|
|
119
123
|
status_detail: Straddle::Embed::Representative::Data::StatusDetail,
|
|
120
124
|
updated_at: Time,
|
|
121
125
|
external_id: String?,
|
|
126
|
+
metadata: ::Hash[Symbol, String]?,
|
|
122
127
|
phone: String?,
|
|
123
128
|
user_id: String?
|
|
124
129
|
}
|
|
@@ -12,7 +12,9 @@ module Straddle
|
|
|
12
12
|
relationship: Straddle::Embed::RepresentativeCreateParams::Relationship,
|
|
13
13
|
:ssn_last4 => String,
|
|
14
14
|
external_id: String?,
|
|
15
|
+
metadata: ::Hash[Symbol, String]?,
|
|
15
16
|
correlation_id: String,
|
|
17
|
+
idempotency_key: String,
|
|
16
18
|
request_id: String
|
|
17
19
|
}
|
|
18
20
|
& Straddle::Internal::Type::request_parameters
|
|
@@ -39,10 +41,16 @@ module Straddle
|
|
|
39
41
|
|
|
40
42
|
attr_accessor external_id: String?
|
|
41
43
|
|
|
44
|
+
attr_accessor metadata: ::Hash[Symbol, String]?
|
|
45
|
+
|
|
42
46
|
attr_reader correlation_id: String?
|
|
43
47
|
|
|
44
48
|
def correlation_id=: (String) -> String
|
|
45
49
|
|
|
50
|
+
attr_reader idempotency_key: String?
|
|
51
|
+
|
|
52
|
+
def idempotency_key=: (String) -> String
|
|
53
|
+
|
|
46
54
|
attr_reader request_id: String?
|
|
47
55
|
|
|
48
56
|
def request_id=: (String) -> String
|
|
@@ -57,7 +65,9 @@ module Straddle
|
|
|
57
65
|
relationship: Straddle::Embed::RepresentativeCreateParams::Relationship,
|
|
58
66
|
ssn_last4: String,
|
|
59
67
|
?external_id: String?,
|
|
68
|
+
?metadata: ::Hash[Symbol, String]?,
|
|
60
69
|
?correlation_id: String,
|
|
70
|
+
?idempotency_key: String,
|
|
61
71
|
?request_id: String,
|
|
62
72
|
?request_options: Straddle::request_opts
|
|
63
73
|
) -> void
|
|
@@ -72,7 +82,9 @@ module Straddle
|
|
|
72
82
|
relationship: Straddle::Embed::RepresentativeCreateParams::Relationship,
|
|
73
83
|
:ssn_last4 => String,
|
|
74
84
|
external_id: String?,
|
|
85
|
+
metadata: ::Hash[Symbol, String]?,
|
|
75
86
|
correlation_id: String,
|
|
87
|
+
idempotency_key: String,
|
|
76
88
|
request_id: String,
|
|
77
89
|
request_options: Straddle::RequestOptions
|
|
78
90
|
}
|
|
@@ -44,6 +44,7 @@ module Straddle
|
|
|
44
44
|
status_detail: Straddle::Embed::RepresentativePaged::Data::StatusDetail,
|
|
45
45
|
updated_at: Time,
|
|
46
46
|
external_id: String?,
|
|
47
|
+
metadata: ::Hash[Symbol, String]?,
|
|
47
48
|
phone: String?,
|
|
48
49
|
user_id: String?
|
|
49
50
|
}
|
|
@@ -79,6 +80,8 @@ module Straddle
|
|
|
79
80
|
|
|
80
81
|
attr_accessor external_id: String?
|
|
81
82
|
|
|
83
|
+
attr_accessor metadata: ::Hash[Symbol, String]?
|
|
84
|
+
|
|
82
85
|
attr_accessor phone: String?
|
|
83
86
|
|
|
84
87
|
attr_accessor user_id: String?
|
|
@@ -99,6 +102,7 @@ module Straddle
|
|
|
99
102
|
status_detail: Straddle::Embed::RepresentativePaged::Data::StatusDetail,
|
|
100
103
|
updated_at: Time,
|
|
101
104
|
?external_id: String?,
|
|
105
|
+
?metadata: ::Hash[Symbol, String]?,
|
|
102
106
|
?phone: String?,
|
|
103
107
|
?user_id: String?
|
|
104
108
|
) -> void
|
|
@@ -119,6 +123,7 @@ module Straddle
|
|
|
119
123
|
status_detail: Straddle::Embed::RepresentativePaged::Data::StatusDetail,
|
|
120
124
|
updated_at: Time,
|
|
121
125
|
external_id: String?,
|
|
126
|
+
metadata: ::Hash[Symbol, String]?,
|
|
122
127
|
phone: String?,
|
|
123
128
|
user_id: String?
|
|
124
129
|
}
|
|
@@ -11,7 +11,9 @@ module Straddle
|
|
|
11
11
|
relationship: Straddle::Embed::RepresentativeUpdateParams::Relationship,
|
|
12
12
|
:ssn_last4 => String,
|
|
13
13
|
external_id: String?,
|
|
14
|
+
metadata: ::Hash[Symbol, String]?,
|
|
14
15
|
correlation_id: String,
|
|
16
|
+
idempotency_key: String,
|
|
15
17
|
request_id: String
|
|
16
18
|
}
|
|
17
19
|
& Straddle::Internal::Type::request_parameters
|
|
@@ -36,10 +38,16 @@ module Straddle
|
|
|
36
38
|
|
|
37
39
|
attr_accessor external_id: String?
|
|
38
40
|
|
|
41
|
+
attr_accessor metadata: ::Hash[Symbol, String]?
|
|
42
|
+
|
|
39
43
|
attr_reader correlation_id: String?
|
|
40
44
|
|
|
41
45
|
def correlation_id=: (String) -> String
|
|
42
46
|
|
|
47
|
+
attr_reader idempotency_key: String?
|
|
48
|
+
|
|
49
|
+
def idempotency_key=: (String) -> String
|
|
50
|
+
|
|
43
51
|
attr_reader request_id: String?
|
|
44
52
|
|
|
45
53
|
def request_id=: (String) -> String
|
|
@@ -53,7 +61,9 @@ module Straddle
|
|
|
53
61
|
relationship: Straddle::Embed::RepresentativeUpdateParams::Relationship,
|
|
54
62
|
ssn_last4: String,
|
|
55
63
|
?external_id: String?,
|
|
64
|
+
?metadata: ::Hash[Symbol, String]?,
|
|
56
65
|
?correlation_id: String,
|
|
66
|
+
?idempotency_key: String,
|
|
57
67
|
?request_id: String,
|
|
58
68
|
?request_options: Straddle::request_opts
|
|
59
69
|
) -> void
|
|
@@ -67,7 +77,9 @@ module Straddle
|
|
|
67
77
|
relationship: Straddle::Embed::RepresentativeUpdateParams::Relationship,
|
|
68
78
|
:ssn_last4 => String,
|
|
69
79
|
external_id: String?,
|
|
80
|
+
metadata: ::Hash[Symbol, String]?,
|
|
70
81
|
correlation_id: String,
|
|
82
|
+
idempotency_key: String,
|
|
71
83
|
request_id: String,
|
|
72
84
|
request_options: Straddle::RequestOptions
|
|
73
85
|
}
|
|
@@ -4,6 +4,7 @@ module Straddle
|
|
|
4
4
|
{
|
|
5
5
|
reason: String?,
|
|
6
6
|
correlation_id: String,
|
|
7
|
+
idempotency_key: String,
|
|
7
8
|
request_id: String,
|
|
8
9
|
straddle_account_id: String
|
|
9
10
|
}
|
|
@@ -19,6 +20,10 @@ module Straddle
|
|
|
19
20
|
|
|
20
21
|
def correlation_id=: (String) -> String
|
|
21
22
|
|
|
23
|
+
attr_reader idempotency_key: String?
|
|
24
|
+
|
|
25
|
+
def idempotency_key=: (String) -> String
|
|
26
|
+
|
|
22
27
|
attr_reader request_id: String?
|
|
23
28
|
|
|
24
29
|
def request_id=: (String) -> String
|
|
@@ -30,6 +35,7 @@ module Straddle
|
|
|
30
35
|
def initialize: (
|
|
31
36
|
?reason: String?,
|
|
32
37
|
?correlation_id: String,
|
|
38
|
+
?idempotency_key: String,
|
|
33
39
|
?request_id: String,
|
|
34
40
|
?straddle_account_id: String,
|
|
35
41
|
?request_options: Straddle::request_opts
|
|
@@ -38,6 +44,7 @@ module Straddle
|
|
|
38
44
|
def to_hash: -> {
|
|
39
45
|
reason: String?,
|
|
40
46
|
correlation_id: String,
|
|
47
|
+
idempotency_key: String,
|
|
41
48
|
request_id: String,
|
|
42
49
|
straddle_account_id: String,
|
|
43
50
|
request_options: Straddle::RequestOptions
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
module Straddle
|
|
2
|
+
module Models
|
|
3
|
+
type paykey_review_params =
|
|
4
|
+
{
|
|
5
|
+
status: Straddle::Models::PaykeyReviewParams::status,
|
|
6
|
+
correlation_id: String,
|
|
7
|
+
idempotency_key: String,
|
|
8
|
+
request_id: String,
|
|
9
|
+
straddle_account_id: String
|
|
10
|
+
}
|
|
11
|
+
& Straddle::Internal::Type::request_parameters
|
|
12
|
+
|
|
13
|
+
class PaykeyReviewParams < Straddle::Internal::Type::BaseModel
|
|
14
|
+
extend Straddle::Internal::Type::RequestParameters::Converter
|
|
15
|
+
include Straddle::Internal::Type::RequestParameters
|
|
16
|
+
|
|
17
|
+
attr_accessor status: Straddle::Models::PaykeyReviewParams::status
|
|
18
|
+
|
|
19
|
+
attr_reader correlation_id: String?
|
|
20
|
+
|
|
21
|
+
def correlation_id=: (String) -> String
|
|
22
|
+
|
|
23
|
+
attr_reader idempotency_key: String?
|
|
24
|
+
|
|
25
|
+
def idempotency_key=: (String) -> String
|
|
26
|
+
|
|
27
|
+
attr_reader request_id: String?
|
|
28
|
+
|
|
29
|
+
def request_id=: (String) -> String
|
|
30
|
+
|
|
31
|
+
attr_reader straddle_account_id: String?
|
|
32
|
+
|
|
33
|
+
def straddle_account_id=: (String) -> String
|
|
34
|
+
|
|
35
|
+
def initialize: (
|
|
36
|
+
status: Straddle::Models::PaykeyReviewParams::status,
|
|
37
|
+
?correlation_id: String,
|
|
38
|
+
?idempotency_key: String,
|
|
39
|
+
?request_id: String,
|
|
40
|
+
?straddle_account_id: String,
|
|
41
|
+
?request_options: Straddle::request_opts
|
|
42
|
+
) -> void
|
|
43
|
+
|
|
44
|
+
def to_hash: -> {
|
|
45
|
+
status: Straddle::Models::PaykeyReviewParams::status,
|
|
46
|
+
correlation_id: String,
|
|
47
|
+
idempotency_key: String,
|
|
48
|
+
request_id: String,
|
|
49
|
+
straddle_account_id: String,
|
|
50
|
+
request_options: Straddle::RequestOptions
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
type status = :active | :rejected
|
|
54
|
+
|
|
55
|
+
module Status
|
|
56
|
+
extend Straddle::Internal::Type::Enum
|
|
57
|
+
|
|
58
|
+
ACTIVE: :active
|
|
59
|
+
REJECTED: :rejected
|
|
60
|
+
|
|
61
|
+
def self?.values: -> ::Array[Straddle::Models::PaykeyReviewParams::status]
|
|
62
|
+
end
|
|
63
|
+
end
|
|
64
|
+
end
|
|
65
|
+
end
|
|
@@ -4,6 +4,7 @@ module Straddle
|
|
|
4
4
|
{
|
|
5
5
|
reason: String,
|
|
6
6
|
correlation_id: String,
|
|
7
|
+
idempotency_key: String,
|
|
7
8
|
request_id: String,
|
|
8
9
|
straddle_account_id: String
|
|
9
10
|
}
|
|
@@ -19,6 +20,10 @@ module Straddle
|
|
|
19
20
|
|
|
20
21
|
def correlation_id=: (String) -> String
|
|
21
22
|
|
|
23
|
+
attr_reader idempotency_key: String?
|
|
24
|
+
|
|
25
|
+
def idempotency_key=: (String) -> String
|
|
26
|
+
|
|
22
27
|
attr_reader request_id: String?
|
|
23
28
|
|
|
24
29
|
def request_id=: (String) -> String
|
|
@@ -30,6 +35,7 @@ module Straddle
|
|
|
30
35
|
def initialize: (
|
|
31
36
|
reason: String,
|
|
32
37
|
?correlation_id: String,
|
|
38
|
+
?idempotency_key: String,
|
|
33
39
|
?request_id: String,
|
|
34
40
|
?straddle_account_id: String,
|
|
35
41
|
?request_options: Straddle::request_opts
|
|
@@ -38,6 +44,7 @@ module Straddle
|
|
|
38
44
|
def to_hash: -> {
|
|
39
45
|
reason: String,
|
|
40
46
|
correlation_id: String,
|
|
47
|
+
idempotency_key: String,
|
|
41
48
|
request_id: String,
|
|
42
49
|
straddle_account_id: String,
|
|
43
50
|
request_options: Straddle::RequestOptions
|
|
@@ -12,6 +12,7 @@ module Straddle
|
|
|
12
12
|
config: Straddle::PayoutCreateParams::Config,
|
|
13
13
|
metadata: ::Hash[Symbol, String]?,
|
|
14
14
|
correlation_id: String,
|
|
15
|
+
idempotency_key: String,
|
|
15
16
|
request_id: String,
|
|
16
17
|
straddle_account_id: String
|
|
17
18
|
}
|
|
@@ -47,6 +48,10 @@ module Straddle
|
|
|
47
48
|
|
|
48
49
|
def correlation_id=: (String) -> String
|
|
49
50
|
|
|
51
|
+
attr_reader idempotency_key: String?
|
|
52
|
+
|
|
53
|
+
def idempotency_key=: (String) -> String
|
|
54
|
+
|
|
50
55
|
attr_reader request_id: String?
|
|
51
56
|
|
|
52
57
|
def request_id=: (String) -> String
|
|
@@ -66,6 +71,7 @@ module Straddle
|
|
|
66
71
|
?config: Straddle::PayoutCreateParams::Config,
|
|
67
72
|
?metadata: ::Hash[Symbol, String]?,
|
|
68
73
|
?correlation_id: String,
|
|
74
|
+
?idempotency_key: String,
|
|
69
75
|
?request_id: String,
|
|
70
76
|
?straddle_account_id: String,
|
|
71
77
|
?request_options: Straddle::request_opts
|
|
@@ -82,6 +88,7 @@ module Straddle
|
|
|
82
88
|
config: Straddle::PayoutCreateParams::Config,
|
|
83
89
|
metadata: ::Hash[Symbol, String]?,
|
|
84
90
|
correlation_id: String,
|
|
91
|
+
idempotency_key: String,
|
|
85
92
|
request_id: String,
|
|
86
93
|
straddle_account_id: String,
|
|
87
94
|
request_options: Straddle::RequestOptions
|
|
@@ -4,6 +4,7 @@ module Straddle
|
|
|
4
4
|
{
|
|
5
5
|
reason: String,
|
|
6
6
|
correlation_id: String,
|
|
7
|
+
idempotency_key: String,
|
|
7
8
|
request_id: String,
|
|
8
9
|
straddle_account_id: String
|
|
9
10
|
}
|
|
@@ -19,6 +20,10 @@ module Straddle
|
|
|
19
20
|
|
|
20
21
|
def correlation_id=: (String) -> String
|
|
21
22
|
|
|
23
|
+
attr_reader idempotency_key: String?
|
|
24
|
+
|
|
25
|
+
def idempotency_key=: (String) -> String
|
|
26
|
+
|
|
22
27
|
attr_reader request_id: String?
|
|
23
28
|
|
|
24
29
|
def request_id=: (String) -> String
|
|
@@ -30,6 +35,7 @@ module Straddle
|
|
|
30
35
|
def initialize: (
|
|
31
36
|
reason: String,
|
|
32
37
|
?correlation_id: String,
|
|
38
|
+
?idempotency_key: String,
|
|
33
39
|
?request_id: String,
|
|
34
40
|
?straddle_account_id: String,
|
|
35
41
|
?request_options: Straddle::request_opts
|
|
@@ -38,6 +44,7 @@ module Straddle
|
|
|
38
44
|
def to_hash: -> {
|
|
39
45
|
reason: String,
|
|
40
46
|
correlation_id: String,
|
|
47
|
+
idempotency_key: String,
|
|
41
48
|
request_id: String,
|
|
42
49
|
straddle_account_id: String,
|
|
43
50
|
request_options: Straddle::RequestOptions
|
|
@@ -4,6 +4,7 @@ module Straddle
|
|
|
4
4
|
{
|
|
5
5
|
reason: String,
|
|
6
6
|
correlation_id: String,
|
|
7
|
+
idempotency_key: String,
|
|
7
8
|
request_id: String,
|
|
8
9
|
straddle_account_id: String
|
|
9
10
|
}
|
|
@@ -19,6 +20,10 @@ module Straddle
|
|
|
19
20
|
|
|
20
21
|
def correlation_id=: (String) -> String
|
|
21
22
|
|
|
23
|
+
attr_reader idempotency_key: String?
|
|
24
|
+
|
|
25
|
+
def idempotency_key=: (String) -> String
|
|
26
|
+
|
|
22
27
|
attr_reader request_id: String?
|
|
23
28
|
|
|
24
29
|
def request_id=: (String) -> String
|
|
@@ -30,6 +35,7 @@ module Straddle
|
|
|
30
35
|
def initialize: (
|
|
31
36
|
reason: String,
|
|
32
37
|
?correlation_id: String,
|
|
38
|
+
?idempotency_key: String,
|
|
33
39
|
?request_id: String,
|
|
34
40
|
?straddle_account_id: String,
|
|
35
41
|
?request_options: Straddle::request_opts
|
|
@@ -38,6 +44,7 @@ module Straddle
|
|
|
38
44
|
def to_hash: -> {
|
|
39
45
|
reason: String,
|
|
40
46
|
correlation_id: String,
|
|
47
|
+
idempotency_key: String,
|
|
41
48
|
request_id: String,
|
|
42
49
|
straddle_account_id: String,
|
|
43
50
|
request_options: Straddle::RequestOptions
|
|
@@ -7,6 +7,7 @@ module Straddle
|
|
|
7
7
|
payment_date: Date,
|
|
8
8
|
metadata: ::Hash[Symbol, String]?,
|
|
9
9
|
correlation_id: String,
|
|
10
|
+
idempotency_key: String,
|
|
10
11
|
request_id: String,
|
|
11
12
|
straddle_account_id: String
|
|
12
13
|
}
|
|
@@ -28,6 +29,10 @@ module Straddle
|
|
|
28
29
|
|
|
29
30
|
def correlation_id=: (String) -> String
|
|
30
31
|
|
|
32
|
+
attr_reader idempotency_key: String?
|
|
33
|
+
|
|
34
|
+
def idempotency_key=: (String) -> String
|
|
35
|
+
|
|
31
36
|
attr_reader request_id: String?
|
|
32
37
|
|
|
33
38
|
def request_id=: (String) -> String
|
|
@@ -42,6 +47,7 @@ module Straddle
|
|
|
42
47
|
payment_date: Date,
|
|
43
48
|
?metadata: ::Hash[Symbol, String]?,
|
|
44
49
|
?correlation_id: String,
|
|
50
|
+
?idempotency_key: String,
|
|
45
51
|
?request_id: String,
|
|
46
52
|
?straddle_account_id: String,
|
|
47
53
|
?request_options: Straddle::request_opts
|
|
@@ -53,6 +59,7 @@ module Straddle
|
|
|
53
59
|
payment_date: Date,
|
|
54
60
|
metadata: ::Hash[Symbol, String]?,
|
|
55
61
|
correlation_id: String,
|
|
62
|
+
idempotency_key: String,
|
|
56
63
|
request_id: String,
|
|
57
64
|
straddle_account_id: String,
|
|
58
65
|
request_options: Straddle::RequestOptions
|
data/sig/straddle/models.rbs
CHANGED
|
@@ -73,6 +73,8 @@ module Straddle
|
|
|
73
73
|
|
|
74
74
|
class PaykeyRevealParams = Straddle::Models::PaykeyRevealParams
|
|
75
75
|
|
|
76
|
+
class PaykeyReviewParams = Straddle::Models::PaykeyReviewParams
|
|
77
|
+
|
|
76
78
|
class PaykeySummaryPagedV1 = Straddle::Models::PaykeySummaryPagedV1
|
|
77
79
|
|
|
78
80
|
class PaykeyUnmaskedParams = Straddle::Models::PaykeyUnmaskedParams
|
|
@@ -10,6 +10,7 @@ module Straddle
|
|
|
10
10
|
?config: Straddle::Bridge::LinkBankAccountParams::Config,
|
|
11
11
|
?metadata: ::Hash[Symbol, String]?,
|
|
12
12
|
?correlation_id: String,
|
|
13
|
+
?idempotency_key: String,
|
|
13
14
|
?request_id: String,
|
|
14
15
|
?straddle_account_id: String,
|
|
15
16
|
?request_options: Straddle::request_opts
|
|
@@ -21,6 +22,7 @@ module Straddle
|
|
|
21
22
|
?config: Straddle::Bridge::LinkCreatePaykeyParams::Config,
|
|
22
23
|
?metadata: ::Hash[Symbol, String]?,
|
|
23
24
|
?correlation_id: String,
|
|
25
|
+
?idempotency_key: String,
|
|
24
26
|
?request_id: String,
|
|
25
27
|
?straddle_account_id: String,
|
|
26
28
|
?request_options: Straddle::request_opts
|
|
@@ -34,6 +36,7 @@ module Straddle
|
|
|
34
36
|
?config: Straddle::Bridge::LinkCreateTanParams::Config,
|
|
35
37
|
?metadata: ::Hash[Symbol, String]?,
|
|
36
38
|
?correlation_id: String,
|
|
39
|
+
?idempotency_key: String,
|
|
37
40
|
?request_id: String,
|
|
38
41
|
?straddle_account_id: String,
|
|
39
42
|
?request_options: Straddle::request_opts
|
|
@@ -45,6 +48,7 @@ module Straddle
|
|
|
45
48
|
?config: Straddle::Bridge::LinkPlaidParams::Config,
|
|
46
49
|
?metadata: ::Hash[Symbol, String]?,
|
|
47
50
|
?correlation_id: String,
|
|
51
|
+
?idempotency_key: String,
|
|
48
52
|
?request_id: String,
|
|
49
53
|
?straddle_account_id: String,
|
|
50
54
|
?request_options: Straddle::request_opts
|
|
@@ -13,6 +13,7 @@ module Straddle
|
|
|
13
13
|
payment_date: Date,
|
|
14
14
|
?metadata: ::Hash[Symbol, String]?,
|
|
15
15
|
?correlation_id: String,
|
|
16
|
+
?idempotency_key: String,
|
|
16
17
|
?request_id: String,
|
|
17
18
|
?straddle_account_id: String,
|
|
18
19
|
?request_options: Straddle::request_opts
|
|
@@ -25,6 +26,7 @@ module Straddle
|
|
|
25
26
|
payment_date: Date,
|
|
26
27
|
?metadata: ::Hash[Symbol, String]?,
|
|
27
28
|
?correlation_id: String,
|
|
29
|
+
?idempotency_key: String,
|
|
28
30
|
?request_id: String,
|
|
29
31
|
?straddle_account_id: String,
|
|
30
32
|
?request_options: Straddle::request_opts
|
|
@@ -34,6 +36,7 @@ module Straddle
|
|
|
34
36
|
String id,
|
|
35
37
|
?reason: String?,
|
|
36
38
|
?correlation_id: String,
|
|
39
|
+
?idempotency_key: String,
|
|
37
40
|
?request_id: String,
|
|
38
41
|
?straddle_account_id: String,
|
|
39
42
|
?request_options: Straddle::request_opts
|
|
@@ -51,6 +54,7 @@ module Straddle
|
|
|
51
54
|
String id,
|
|
52
55
|
?reason: String?,
|
|
53
56
|
?correlation_id: String,
|
|
57
|
+
?idempotency_key: String,
|
|
54
58
|
?request_id: String,
|
|
55
59
|
?straddle_account_id: String,
|
|
56
60
|
?request_options: Straddle::request_opts
|
|
@@ -60,6 +64,7 @@ module Straddle
|
|
|
60
64
|
String id,
|
|
61
65
|
?reason: String?,
|
|
62
66
|
?correlation_id: String,
|
|
67
|
+
?idempotency_key: String,
|
|
63
68
|
?request_id: String,
|
|
64
69
|
?straddle_account_id: String,
|
|
65
70
|
?request_options: Straddle::request_opts
|
|
@@ -15,6 +15,7 @@ module Straddle
|
|
|
15
15
|
?external_id: String?,
|
|
16
16
|
?metadata: ::Hash[Symbol, String]?,
|
|
17
17
|
?correlation_id: String,
|
|
18
|
+
?idempotency_key: String,
|
|
18
19
|
?request_id: String,
|
|
19
20
|
?straddle_account_id: String,
|
|
20
21
|
?request_options: Straddle::request_opts
|
|
@@ -32,6 +33,7 @@ module Straddle
|
|
|
32
33
|
?external_id: String?,
|
|
33
34
|
?metadata: ::Hash[Symbol, String]?,
|
|
34
35
|
?correlation_id: String,
|
|
36
|
+
?idempotency_key: String,
|
|
35
37
|
?request_id: String,
|
|
36
38
|
?straddle_account_id: String,
|
|
37
39
|
?request_options: Straddle::request_opts
|
|
@@ -59,6 +61,7 @@ module Straddle
|
|
|
59
61
|
def delete: (
|
|
60
62
|
String id,
|
|
61
63
|
?correlation_id: String,
|
|
64
|
+
?idempotency_key: String,
|
|
62
65
|
?request_id: String,
|
|
63
66
|
?straddle_account_id: String,
|
|
64
67
|
?request_options: Straddle::request_opts
|
|
@@ -75,6 +78,7 @@ module Straddle
|
|
|
75
78
|
def refresh_review: (
|
|
76
79
|
String id,
|
|
77
80
|
?correlation_id: String,
|
|
81
|
+
?idempotency_key: String,
|
|
78
82
|
?request_id: String,
|
|
79
83
|
?straddle_account_id: String,
|
|
80
84
|
?request_options: Straddle::request_opts
|
|
@@ -12,6 +12,7 @@ module Straddle
|
|
|
12
12
|
?payouts: Straddle::Embed::Accounts::CapabilityRequestCreateParams::Payouts,
|
|
13
13
|
?signed_agreement: Straddle::Embed::Accounts::CapabilityRequestCreateParams::SignedAgreement,
|
|
14
14
|
?correlation_id: String,
|
|
15
|
+
?idempotency_key: String,
|
|
15
16
|
?request_id: String,
|
|
16
17
|
?request_options: Straddle::request_opts
|
|
17
18
|
) -> Straddle::Embed::Accounts::CapabilityRequestPagedV1
|
|
@@ -12,6 +12,7 @@ module Straddle
|
|
|
12
12
|
?external_id: String?,
|
|
13
13
|
?metadata: ::Hash[Symbol, String?]?,
|
|
14
14
|
?correlation_id: String,
|
|
15
|
+
?idempotency_key: String,
|
|
15
16
|
?request_id: String,
|
|
16
17
|
?request_options: Straddle::request_opts
|
|
17
18
|
) -> Straddle::Embed::AccountV1
|
|
@@ -22,6 +23,7 @@ module Straddle
|
|
|
22
23
|
?external_id: String?,
|
|
23
24
|
?metadata: ::Hash[Symbol, String?]?,
|
|
24
25
|
?correlation_id: String,
|
|
26
|
+
?idempotency_key: String,
|
|
25
27
|
?request_id: String,
|
|
26
28
|
?request_options: Straddle::request_opts
|
|
27
29
|
) -> Straddle::Embed::AccountV1
|
|
@@ -50,6 +52,7 @@ module Straddle
|
|
|
50
52
|
String account_id,
|
|
51
53
|
terms_of_service: Straddle::Embed::TermsOfServiceV1,
|
|
52
54
|
?correlation_id: String,
|
|
55
|
+
?idempotency_key: String,
|
|
53
56
|
?request_id: String,
|
|
54
57
|
?request_options: Straddle::request_opts
|
|
55
58
|
) -> Straddle::Embed::AccountV1
|
|
@@ -58,6 +61,7 @@ module Straddle
|
|
|
58
61
|
String account_id,
|
|
59
62
|
?final_status: Straddle::Models::Embed::AccountSimulateParams::final_status,
|
|
60
63
|
?correlation_id: String,
|
|
64
|
+
?idempotency_key: String,
|
|
61
65
|
?request_id: String,
|
|
62
66
|
?request_options: Straddle::request_opts
|
|
63
67
|
) -> Straddle::Embed::AccountV1
|
|
@@ -3,10 +3,14 @@ module Straddle
|
|
|
3
3
|
class Embed
|
|
4
4
|
class LinkedBankAccounts
|
|
5
5
|
def create: (
|
|
6
|
-
account_id: String
|
|
6
|
+
account_id: String?,
|
|
7
7
|
bank_account: Straddle::Embed::LinkedBankAccountCreateParams::BankAccount,
|
|
8
|
+
?description: String?,
|
|
8
9
|
?metadata: ::Hash[Symbol, String?]?,
|
|
10
|
+
?platform_id: String?,
|
|
11
|
+
?purposes: ::Array[Straddle::Models::Embed::LinkedBankAccountCreateParams::purpose]?,
|
|
9
12
|
?correlation_id: String,
|
|
13
|
+
?idempotency_key: String,
|
|
10
14
|
?request_id: String,
|
|
11
15
|
?request_options: Straddle::request_opts
|
|
12
16
|
) -> Straddle::Embed::LinkedBankAccountV1
|
|
@@ -16,6 +20,7 @@ module Straddle
|
|
|
16
20
|
bank_account: Straddle::Embed::LinkedBankAccountUpdateParams::BankAccount,
|
|
17
21
|
?metadata: ::Hash[Symbol, String?]?,
|
|
18
22
|
?correlation_id: String,
|
|
23
|
+
?idempotency_key: String,
|
|
19
24
|
?request_id: String,
|
|
20
25
|
?request_options: Straddle::request_opts
|
|
21
26
|
) -> Straddle::Embed::LinkedBankAccountV1
|
|
@@ -32,6 +37,14 @@ module Straddle
|
|
|
32
37
|
?request_options: Straddle::request_opts
|
|
33
38
|
) -> Straddle::Internal::PageNumberSchema[Straddle::Embed::LinkedBankAccountPagedV1::Data]
|
|
34
39
|
|
|
40
|
+
def cancel: (
|
|
41
|
+
String linked_bank_account_id,
|
|
42
|
+
?correlation_id: String,
|
|
43
|
+
?idempotency_key: String,
|
|
44
|
+
?request_id: String,
|
|
45
|
+
?request_options: Straddle::request_opts
|
|
46
|
+
) -> Straddle::Embed::LinkedBankAccountV1
|
|
47
|
+
|
|
35
48
|
def get: (
|
|
36
49
|
String linked_bank_account_id,
|
|
37
50
|
?correlation_id: String,
|
|
@@ -12,7 +12,9 @@ module Straddle
|
|
|
12
12
|
relationship: Straddle::Embed::RepresentativeCreateParams::Relationship,
|
|
13
13
|
ssn_last4: String,
|
|
14
14
|
?external_id: String?,
|
|
15
|
+
?metadata: ::Hash[Symbol, String]?,
|
|
15
16
|
?correlation_id: String,
|
|
17
|
+
?idempotency_key: String,
|
|
16
18
|
?request_id: String,
|
|
17
19
|
?request_options: Straddle::request_opts
|
|
18
20
|
) -> Straddle::Embed::Representative
|
|
@@ -27,7 +29,9 @@ module Straddle
|
|
|
27
29
|
relationship: Straddle::Embed::RepresentativeUpdateParams::Relationship,
|
|
28
30
|
ssn_last4: String,
|
|
29
31
|
?external_id: String?,
|
|
32
|
+
?metadata: ::Hash[Symbol, String]?,
|
|
30
33
|
?correlation_id: String,
|
|
34
|
+
?idempotency_key: String,
|
|
31
35
|
?request_id: String,
|
|
32
36
|
?request_options: Straddle::request_opts
|
|
33
37
|
) -> Straddle::Embed::Representative
|