increase 1.249.0 → 1.250.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/increase/models/beneficial_owner_create_params.rb +387 -0
- data/lib/increase/models/entity_beneficial_owner.rb +12 -2
- data/lib/increase/models.rb +2 -0
- data/lib/increase/resources/beneficial_owners.rb +31 -0
- data/lib/increase/version.rb +1 -1
- data/lib/increase.rb +1 -0
- data/rbi/increase/models/beneficial_owner_create_params.rbi +698 -0
- data/rbi/increase/models/entity_beneficial_owner.rbi +12 -0
- data/rbi/increase/models.rbi +2 -0
- data/rbi/increase/resources/beneficial_owners.rbi +26 -0
- data/sig/increase/models/beneficial_owner_create_params.rbs +319 -0
- data/sig/increase/models/entity_beneficial_owner.rbs +5 -0
- data/sig/increase/models.rbs +2 -0
- data/sig/increase/resources/beneficial_owners.rbs +8 -0
- metadata +4 -1
|
@@ -21,6 +21,12 @@ module Increase
|
|
|
21
21
|
sig { returns(Time) }
|
|
22
22
|
attr_accessor :created_at
|
|
23
23
|
|
|
24
|
+
# The idempotency key you chose for this object. This value is unique across
|
|
25
|
+
# Increase and is used to ensure that a request is only processed once. Learn more
|
|
26
|
+
# about [idempotency](https://increase.com/documentation/idempotency-keys).
|
|
27
|
+
sig { returns(T.nilable(String)) }
|
|
28
|
+
attr_accessor :idempotency_key
|
|
29
|
+
|
|
24
30
|
# Personal details for the beneficial owner.
|
|
25
31
|
sig { returns(Increase::EntityBeneficialOwner::Individual) }
|
|
26
32
|
attr_reader :individual
|
|
@@ -53,6 +59,7 @@ module Increase
|
|
|
53
59
|
id: String,
|
|
54
60
|
company_title: T.nilable(String),
|
|
55
61
|
created_at: Time,
|
|
62
|
+
idempotency_key: T.nilable(String),
|
|
56
63
|
individual: Increase::EntityBeneficialOwner::Individual::OrHash,
|
|
57
64
|
prongs: T::Array[Increase::EntityBeneficialOwner::Prong::OrSymbol],
|
|
58
65
|
type: Increase::EntityBeneficialOwner::Type::OrSymbol
|
|
@@ -66,6 +73,10 @@ module Increase
|
|
|
66
73
|
# The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time at which the
|
|
67
74
|
# Beneficial Owner was created.
|
|
68
75
|
created_at:,
|
|
76
|
+
# The idempotency key you chose for this object. This value is unique across
|
|
77
|
+
# Increase and is used to ensure that a request is only processed once. Learn more
|
|
78
|
+
# about [idempotency](https://increase.com/documentation/idempotency-keys).
|
|
79
|
+
idempotency_key:,
|
|
69
80
|
# Personal details for the beneficial owner.
|
|
70
81
|
individual:,
|
|
71
82
|
# Why this person is considered a beneficial owner of the entity.
|
|
@@ -82,6 +93,7 @@ module Increase
|
|
|
82
93
|
id: String,
|
|
83
94
|
company_title: T.nilable(String),
|
|
84
95
|
created_at: Time,
|
|
96
|
+
idempotency_key: T.nilable(String),
|
|
85
97
|
individual: Increase::EntityBeneficialOwner::Individual,
|
|
86
98
|
prongs:
|
|
87
99
|
T::Array[Increase::EntityBeneficialOwner::Prong::TaggedSymbol],
|
data/rbi/increase/models.rbi
CHANGED
|
@@ -71,6 +71,8 @@ module Increase
|
|
|
71
71
|
|
|
72
72
|
BeneficialOwnerArchiveParams = Increase::Models::BeneficialOwnerArchiveParams
|
|
73
73
|
|
|
74
|
+
BeneficialOwnerCreateParams = Increase::Models::BeneficialOwnerCreateParams
|
|
75
|
+
|
|
74
76
|
BeneficialOwnerListParams = Increase::Models::BeneficialOwnerListParams
|
|
75
77
|
|
|
76
78
|
BeneficialOwnerRetrieveParams =
|
|
@@ -3,6 +3,32 @@
|
|
|
3
3
|
module Increase
|
|
4
4
|
module Resources
|
|
5
5
|
class BeneficialOwners
|
|
6
|
+
# Create a beneficial owner
|
|
7
|
+
sig do
|
|
8
|
+
params(
|
|
9
|
+
entity_id: String,
|
|
10
|
+
individual: Increase::BeneficialOwnerCreateParams::Individual::OrHash,
|
|
11
|
+
prongs:
|
|
12
|
+
T::Array[Increase::BeneficialOwnerCreateParams::Prong::OrSymbol],
|
|
13
|
+
company_title: String,
|
|
14
|
+
request_options: Increase::RequestOptions::OrHash
|
|
15
|
+
).returns(Increase::EntityBeneficialOwner)
|
|
16
|
+
end
|
|
17
|
+
def create(
|
|
18
|
+
# The identifier of the Entity to associate with the new Beneficial Owner.
|
|
19
|
+
entity_id:,
|
|
20
|
+
# Personal details for the beneficial owner.
|
|
21
|
+
individual:,
|
|
22
|
+
# Why this person is considered a beneficial owner of the entity. At least one
|
|
23
|
+
# option is required, if a person is both a control person and owner, submit an
|
|
24
|
+
# array containing both.
|
|
25
|
+
prongs:,
|
|
26
|
+
# This person's role or title within the entity.
|
|
27
|
+
company_title: nil,
|
|
28
|
+
request_options: {}
|
|
29
|
+
)
|
|
30
|
+
end
|
|
31
|
+
|
|
6
32
|
# Retrieve a Beneficial Owner
|
|
7
33
|
sig do
|
|
8
34
|
params(
|
|
@@ -0,0 +1,319 @@
|
|
|
1
|
+
module Increase
|
|
2
|
+
module Models
|
|
3
|
+
type beneficial_owner_create_params =
|
|
4
|
+
{
|
|
5
|
+
entity_id: String,
|
|
6
|
+
individual: Increase::BeneficialOwnerCreateParams::Individual,
|
|
7
|
+
prongs: ::Array[Increase::Models::BeneficialOwnerCreateParams::prong],
|
|
8
|
+
company_title: String
|
|
9
|
+
}
|
|
10
|
+
& Increase::Internal::Type::request_parameters
|
|
11
|
+
|
|
12
|
+
class BeneficialOwnerCreateParams < Increase::Internal::Type::BaseModel
|
|
13
|
+
extend Increase::Internal::Type::RequestParameters::Converter
|
|
14
|
+
include Increase::Internal::Type::RequestParameters
|
|
15
|
+
|
|
16
|
+
attr_accessor entity_id: String
|
|
17
|
+
|
|
18
|
+
attr_accessor individual: Increase::BeneficialOwnerCreateParams::Individual
|
|
19
|
+
|
|
20
|
+
attr_accessor prongs: ::Array[Increase::Models::BeneficialOwnerCreateParams::prong]
|
|
21
|
+
|
|
22
|
+
attr_reader company_title: String?
|
|
23
|
+
|
|
24
|
+
def company_title=: (String) -> String
|
|
25
|
+
|
|
26
|
+
def initialize: (
|
|
27
|
+
entity_id: String,
|
|
28
|
+
individual: Increase::BeneficialOwnerCreateParams::Individual,
|
|
29
|
+
prongs: ::Array[Increase::Models::BeneficialOwnerCreateParams::prong],
|
|
30
|
+
?company_title: String,
|
|
31
|
+
?request_options: Increase::request_opts
|
|
32
|
+
) -> void
|
|
33
|
+
|
|
34
|
+
def to_hash: -> {
|
|
35
|
+
entity_id: String,
|
|
36
|
+
individual: Increase::BeneficialOwnerCreateParams::Individual,
|
|
37
|
+
prongs: ::Array[Increase::Models::BeneficialOwnerCreateParams::prong],
|
|
38
|
+
company_title: String,
|
|
39
|
+
request_options: Increase::RequestOptions
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
type individual =
|
|
43
|
+
{
|
|
44
|
+
address: Increase::BeneficialOwnerCreateParams::Individual::Address,
|
|
45
|
+
date_of_birth: Date,
|
|
46
|
+
identification: Increase::BeneficialOwnerCreateParams::Individual::Identification,
|
|
47
|
+
name: String,
|
|
48
|
+
confirmed_no_us_tax_id: bool
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
class Individual < Increase::Internal::Type::BaseModel
|
|
52
|
+
attr_accessor address: Increase::BeneficialOwnerCreateParams::Individual::Address
|
|
53
|
+
|
|
54
|
+
attr_accessor date_of_birth: Date
|
|
55
|
+
|
|
56
|
+
attr_accessor identification: Increase::BeneficialOwnerCreateParams::Individual::Identification
|
|
57
|
+
|
|
58
|
+
attr_accessor name: String
|
|
59
|
+
|
|
60
|
+
attr_reader confirmed_no_us_tax_id: bool?
|
|
61
|
+
|
|
62
|
+
def confirmed_no_us_tax_id=: (bool) -> bool
|
|
63
|
+
|
|
64
|
+
def initialize: (
|
|
65
|
+
address: Increase::BeneficialOwnerCreateParams::Individual::Address,
|
|
66
|
+
date_of_birth: Date,
|
|
67
|
+
identification: Increase::BeneficialOwnerCreateParams::Individual::Identification,
|
|
68
|
+
name: String,
|
|
69
|
+
?confirmed_no_us_tax_id: bool
|
|
70
|
+
) -> void
|
|
71
|
+
|
|
72
|
+
def to_hash: -> {
|
|
73
|
+
address: Increase::BeneficialOwnerCreateParams::Individual::Address,
|
|
74
|
+
date_of_birth: Date,
|
|
75
|
+
identification: Increase::BeneficialOwnerCreateParams::Individual::Identification,
|
|
76
|
+
name: String,
|
|
77
|
+
confirmed_no_us_tax_id: bool
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
type address =
|
|
81
|
+
{
|
|
82
|
+
city: String,
|
|
83
|
+
country: String,
|
|
84
|
+
:line1 => String,
|
|
85
|
+
:line2 => String,
|
|
86
|
+
state: String,
|
|
87
|
+
zip: String
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
class Address < Increase::Internal::Type::BaseModel
|
|
91
|
+
attr_accessor city: String
|
|
92
|
+
|
|
93
|
+
attr_accessor country: String
|
|
94
|
+
|
|
95
|
+
attr_accessor line1: String
|
|
96
|
+
|
|
97
|
+
attr_reader line2: String?
|
|
98
|
+
|
|
99
|
+
def line2=: (String) -> String
|
|
100
|
+
|
|
101
|
+
attr_reader state: String?
|
|
102
|
+
|
|
103
|
+
def state=: (String) -> String
|
|
104
|
+
|
|
105
|
+
attr_reader zip: String?
|
|
106
|
+
|
|
107
|
+
def zip=: (String) -> String
|
|
108
|
+
|
|
109
|
+
def initialize: (
|
|
110
|
+
city: String,
|
|
111
|
+
country: String,
|
|
112
|
+
line1: String,
|
|
113
|
+
?line2: String,
|
|
114
|
+
?state: String,
|
|
115
|
+
?zip: String
|
|
116
|
+
) -> void
|
|
117
|
+
|
|
118
|
+
def to_hash: -> {
|
|
119
|
+
city: String,
|
|
120
|
+
country: String,
|
|
121
|
+
:line1 => String,
|
|
122
|
+
:line2 => String,
|
|
123
|
+
state: String,
|
|
124
|
+
zip: String
|
|
125
|
+
}
|
|
126
|
+
end
|
|
127
|
+
|
|
128
|
+
type identification =
|
|
129
|
+
{
|
|
130
|
+
method_: Increase::Models::BeneficialOwnerCreateParams::Individual::Identification::method_,
|
|
131
|
+
number: String,
|
|
132
|
+
drivers_license: Increase::BeneficialOwnerCreateParams::Individual::Identification::DriversLicense,
|
|
133
|
+
other: Increase::BeneficialOwnerCreateParams::Individual::Identification::Other,
|
|
134
|
+
passport: Increase::BeneficialOwnerCreateParams::Individual::Identification::Passport
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
class Identification < Increase::Internal::Type::BaseModel
|
|
138
|
+
attr_accessor method_: Increase::Models::BeneficialOwnerCreateParams::Individual::Identification::method_
|
|
139
|
+
|
|
140
|
+
attr_accessor number: String
|
|
141
|
+
|
|
142
|
+
attr_reader drivers_license: Increase::BeneficialOwnerCreateParams::Individual::Identification::DriversLicense?
|
|
143
|
+
|
|
144
|
+
def drivers_license=: (
|
|
145
|
+
Increase::BeneficialOwnerCreateParams::Individual::Identification::DriversLicense
|
|
146
|
+
) -> Increase::BeneficialOwnerCreateParams::Individual::Identification::DriversLicense
|
|
147
|
+
|
|
148
|
+
attr_reader other: Increase::BeneficialOwnerCreateParams::Individual::Identification::Other?
|
|
149
|
+
|
|
150
|
+
def other=: (
|
|
151
|
+
Increase::BeneficialOwnerCreateParams::Individual::Identification::Other
|
|
152
|
+
) -> Increase::BeneficialOwnerCreateParams::Individual::Identification::Other
|
|
153
|
+
|
|
154
|
+
attr_reader passport: Increase::BeneficialOwnerCreateParams::Individual::Identification::Passport?
|
|
155
|
+
|
|
156
|
+
def passport=: (
|
|
157
|
+
Increase::BeneficialOwnerCreateParams::Individual::Identification::Passport
|
|
158
|
+
) -> Increase::BeneficialOwnerCreateParams::Individual::Identification::Passport
|
|
159
|
+
|
|
160
|
+
def initialize: (
|
|
161
|
+
method_: Increase::Models::BeneficialOwnerCreateParams::Individual::Identification::method_,
|
|
162
|
+
number: String,
|
|
163
|
+
?drivers_license: Increase::BeneficialOwnerCreateParams::Individual::Identification::DriversLicense,
|
|
164
|
+
?other: Increase::BeneficialOwnerCreateParams::Individual::Identification::Other,
|
|
165
|
+
?passport: Increase::BeneficialOwnerCreateParams::Individual::Identification::Passport
|
|
166
|
+
) -> void
|
|
167
|
+
|
|
168
|
+
def to_hash: -> {
|
|
169
|
+
method_: Increase::Models::BeneficialOwnerCreateParams::Individual::Identification::method_,
|
|
170
|
+
number: String,
|
|
171
|
+
drivers_license: Increase::BeneficialOwnerCreateParams::Individual::Identification::DriversLicense,
|
|
172
|
+
other: Increase::BeneficialOwnerCreateParams::Individual::Identification::Other,
|
|
173
|
+
passport: Increase::BeneficialOwnerCreateParams::Individual::Identification::Passport
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
type method_ =
|
|
177
|
+
:social_security_number
|
|
178
|
+
| :individual_taxpayer_identification_number
|
|
179
|
+
| :passport
|
|
180
|
+
| :drivers_license
|
|
181
|
+
| :other
|
|
182
|
+
|
|
183
|
+
module Method
|
|
184
|
+
extend Increase::Internal::Type::Enum
|
|
185
|
+
|
|
186
|
+
# A social security number.
|
|
187
|
+
SOCIAL_SECURITY_NUMBER: :social_security_number
|
|
188
|
+
|
|
189
|
+
# An individual taxpayer identification number (ITIN).
|
|
190
|
+
INDIVIDUAL_TAXPAYER_IDENTIFICATION_NUMBER: :individual_taxpayer_identification_number
|
|
191
|
+
|
|
192
|
+
# A passport number.
|
|
193
|
+
PASSPORT: :passport
|
|
194
|
+
|
|
195
|
+
# A driver's license number.
|
|
196
|
+
DRIVERS_LICENSE: :drivers_license
|
|
197
|
+
|
|
198
|
+
# Another identifying document.
|
|
199
|
+
OTHER: :other
|
|
200
|
+
|
|
201
|
+
def self?.values: -> ::Array[Increase::Models::BeneficialOwnerCreateParams::Individual::Identification::method_]
|
|
202
|
+
end
|
|
203
|
+
|
|
204
|
+
type drivers_license =
|
|
205
|
+
{
|
|
206
|
+
expiration_date: Date,
|
|
207
|
+
file_id: String,
|
|
208
|
+
state: String,
|
|
209
|
+
back_file_id: String
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
class DriversLicense < Increase::Internal::Type::BaseModel
|
|
213
|
+
attr_accessor expiration_date: Date
|
|
214
|
+
|
|
215
|
+
attr_accessor file_id: String
|
|
216
|
+
|
|
217
|
+
attr_accessor state: String
|
|
218
|
+
|
|
219
|
+
attr_reader back_file_id: String?
|
|
220
|
+
|
|
221
|
+
def back_file_id=: (String) -> String
|
|
222
|
+
|
|
223
|
+
def initialize: (
|
|
224
|
+
expiration_date: Date,
|
|
225
|
+
file_id: String,
|
|
226
|
+
state: String,
|
|
227
|
+
?back_file_id: String
|
|
228
|
+
) -> void
|
|
229
|
+
|
|
230
|
+
def to_hash: -> {
|
|
231
|
+
expiration_date: Date,
|
|
232
|
+
file_id: String,
|
|
233
|
+
state: String,
|
|
234
|
+
back_file_id: String
|
|
235
|
+
}
|
|
236
|
+
end
|
|
237
|
+
|
|
238
|
+
type other =
|
|
239
|
+
{
|
|
240
|
+
country: String,
|
|
241
|
+
description: String,
|
|
242
|
+
file_id: String,
|
|
243
|
+
back_file_id: String,
|
|
244
|
+
expiration_date: Date
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
class Other < Increase::Internal::Type::BaseModel
|
|
248
|
+
attr_accessor country: String
|
|
249
|
+
|
|
250
|
+
attr_accessor description: String
|
|
251
|
+
|
|
252
|
+
attr_accessor file_id: String
|
|
253
|
+
|
|
254
|
+
attr_reader back_file_id: String?
|
|
255
|
+
|
|
256
|
+
def back_file_id=: (String) -> String
|
|
257
|
+
|
|
258
|
+
attr_reader expiration_date: Date?
|
|
259
|
+
|
|
260
|
+
def expiration_date=: (Date) -> Date
|
|
261
|
+
|
|
262
|
+
def initialize: (
|
|
263
|
+
country: String,
|
|
264
|
+
description: String,
|
|
265
|
+
file_id: String,
|
|
266
|
+
?back_file_id: String,
|
|
267
|
+
?expiration_date: Date
|
|
268
|
+
) -> void
|
|
269
|
+
|
|
270
|
+
def to_hash: -> {
|
|
271
|
+
country: String,
|
|
272
|
+
description: String,
|
|
273
|
+
file_id: String,
|
|
274
|
+
back_file_id: String,
|
|
275
|
+
expiration_date: Date
|
|
276
|
+
}
|
|
277
|
+
end
|
|
278
|
+
|
|
279
|
+
type passport =
|
|
280
|
+
{ country: String, expiration_date: Date, file_id: String }
|
|
281
|
+
|
|
282
|
+
class Passport < Increase::Internal::Type::BaseModel
|
|
283
|
+
attr_accessor country: String
|
|
284
|
+
|
|
285
|
+
attr_accessor expiration_date: Date
|
|
286
|
+
|
|
287
|
+
attr_accessor file_id: String
|
|
288
|
+
|
|
289
|
+
def initialize: (
|
|
290
|
+
country: String,
|
|
291
|
+
expiration_date: Date,
|
|
292
|
+
file_id: String
|
|
293
|
+
) -> void
|
|
294
|
+
|
|
295
|
+
def to_hash: -> {
|
|
296
|
+
country: String,
|
|
297
|
+
expiration_date: Date,
|
|
298
|
+
file_id: String
|
|
299
|
+
}
|
|
300
|
+
end
|
|
301
|
+
end
|
|
302
|
+
end
|
|
303
|
+
|
|
304
|
+
type prong = :ownership | :control
|
|
305
|
+
|
|
306
|
+
module Prong
|
|
307
|
+
extend Increase::Internal::Type::Enum
|
|
308
|
+
|
|
309
|
+
# A person with 25% or greater direct or indirect ownership of the entity.
|
|
310
|
+
OWNERSHIP: :ownership
|
|
311
|
+
|
|
312
|
+
# A person who manages, directs, or has significant control of the entity.
|
|
313
|
+
CONTROL: :control
|
|
314
|
+
|
|
315
|
+
def self?.values: -> ::Array[Increase::Models::BeneficialOwnerCreateParams::prong]
|
|
316
|
+
end
|
|
317
|
+
end
|
|
318
|
+
end
|
|
319
|
+
end
|
|
@@ -5,6 +5,7 @@ module Increase
|
|
|
5
5
|
id: String,
|
|
6
6
|
company_title: String?,
|
|
7
7
|
created_at: Time,
|
|
8
|
+
idempotency_key: String?,
|
|
8
9
|
individual: Increase::EntityBeneficialOwner::Individual,
|
|
9
10
|
prongs: ::Array[Increase::Models::EntityBeneficialOwner::prong],
|
|
10
11
|
type: Increase::Models::EntityBeneficialOwner::type_
|
|
@@ -17,6 +18,8 @@ module Increase
|
|
|
17
18
|
|
|
18
19
|
attr_accessor created_at: Time
|
|
19
20
|
|
|
21
|
+
attr_accessor idempotency_key: String?
|
|
22
|
+
|
|
20
23
|
attr_accessor individual: Increase::EntityBeneficialOwner::Individual
|
|
21
24
|
|
|
22
25
|
attr_accessor prongs: ::Array[Increase::Models::EntityBeneficialOwner::prong]
|
|
@@ -27,6 +30,7 @@ module Increase
|
|
|
27
30
|
id: String,
|
|
28
31
|
company_title: String?,
|
|
29
32
|
created_at: Time,
|
|
33
|
+
idempotency_key: String?,
|
|
30
34
|
individual: Increase::EntityBeneficialOwner::Individual,
|
|
31
35
|
prongs: ::Array[Increase::Models::EntityBeneficialOwner::prong],
|
|
32
36
|
type: Increase::Models::EntityBeneficialOwner::type_
|
|
@@ -36,6 +40,7 @@ module Increase
|
|
|
36
40
|
id: String,
|
|
37
41
|
company_title: String?,
|
|
38
42
|
created_at: Time,
|
|
43
|
+
idempotency_key: String?,
|
|
39
44
|
individual: Increase::EntityBeneficialOwner::Individual,
|
|
40
45
|
prongs: ::Array[Increase::Models::EntityBeneficialOwner::prong],
|
|
41
46
|
type: Increase::Models::EntityBeneficialOwner::type_
|
data/sig/increase/models.rbs
CHANGED
|
@@ -65,6 +65,8 @@ module Increase
|
|
|
65
65
|
|
|
66
66
|
class BeneficialOwnerArchiveParams = Increase::Models::BeneficialOwnerArchiveParams
|
|
67
67
|
|
|
68
|
+
class BeneficialOwnerCreateParams = Increase::Models::BeneficialOwnerCreateParams
|
|
69
|
+
|
|
68
70
|
class BeneficialOwnerListParams = Increase::Models::BeneficialOwnerListParams
|
|
69
71
|
|
|
70
72
|
class BeneficialOwnerRetrieveParams = Increase::Models::BeneficialOwnerRetrieveParams
|
|
@@ -1,6 +1,14 @@
|
|
|
1
1
|
module Increase
|
|
2
2
|
module Resources
|
|
3
3
|
class BeneficialOwners
|
|
4
|
+
def create: (
|
|
5
|
+
entity_id: String,
|
|
6
|
+
individual: Increase::BeneficialOwnerCreateParams::Individual,
|
|
7
|
+
prongs: ::Array[Increase::Models::BeneficialOwnerCreateParams::prong],
|
|
8
|
+
?company_title: String,
|
|
9
|
+
?request_options: Increase::request_opts
|
|
10
|
+
) -> Increase::EntityBeneficialOwner
|
|
11
|
+
|
|
4
12
|
def retrieve: (
|
|
5
13
|
String entity_beneficial_owner_id,
|
|
6
14
|
?request_options: Increase::request_opts
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: increase
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.250.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Increase
|
|
@@ -117,6 +117,7 @@ files:
|
|
|
117
117
|
- lib/increase/models/ach_transfer_retrieve_params.rb
|
|
118
118
|
- lib/increase/models/balance_lookup.rb
|
|
119
119
|
- lib/increase/models/beneficial_owner_archive_params.rb
|
|
120
|
+
- lib/increase/models/beneficial_owner_create_params.rb
|
|
120
121
|
- lib/increase/models/beneficial_owner_list_params.rb
|
|
121
122
|
- lib/increase/models/beneficial_owner_retrieve_params.rb
|
|
122
123
|
- lib/increase/models/beneficial_owner_update_params.rb
|
|
@@ -532,6 +533,7 @@ files:
|
|
|
532
533
|
- rbi/increase/models/ach_transfer_retrieve_params.rbi
|
|
533
534
|
- rbi/increase/models/balance_lookup.rbi
|
|
534
535
|
- rbi/increase/models/beneficial_owner_archive_params.rbi
|
|
536
|
+
- rbi/increase/models/beneficial_owner_create_params.rbi
|
|
535
537
|
- rbi/increase/models/beneficial_owner_list_params.rbi
|
|
536
538
|
- rbi/increase/models/beneficial_owner_retrieve_params.rbi
|
|
537
539
|
- rbi/increase/models/beneficial_owner_update_params.rbi
|
|
@@ -946,6 +948,7 @@ files:
|
|
|
946
948
|
- sig/increase/models/ach_transfer_retrieve_params.rbs
|
|
947
949
|
- sig/increase/models/balance_lookup.rbs
|
|
948
950
|
- sig/increase/models/beneficial_owner_archive_params.rbs
|
|
951
|
+
- sig/increase/models/beneficial_owner_create_params.rbs
|
|
949
952
|
- sig/increase/models/beneficial_owner_list_params.rbs
|
|
950
953
|
- sig/increase/models/beneficial_owner_retrieve_params.rbs
|
|
951
954
|
- sig/increase/models/beneficial_owner_update_params.rbs
|