increase 1.195.0 → 1.196.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/export.rb +451 -1
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/export.rbi +888 -3
- data/sig/increase/models/export.rbs +320 -3
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 870b3602b179970412803bb9696c028f84c8ec9f3465bd621a04a73dbd65e46e
|
|
4
|
+
data.tar.gz: a9797b8e4e4141a1381a775a3a4a9c949695fbdaa5bcb447b086b5f6cd5f6111
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 258789945ea8d63e6c05d595c566d57598b996ae1f5401a923fb923d0a34aef44c346eefcd25f32033e011263a166fea49f7882e083594354bed4ee729f3fbc4
|
|
7
|
+
data.tar.gz: cd2cf8cd02f453e80da1d0c98d12bda42803fc8bbcd17d24b913a36f750ad0ac06004f6bb046deabd0eacd1c1801719e3b4d03780518fc7690093712af6bcb99
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.196.0 (2026-02-03)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.195.0...v1.196.0](https://github.com/Increase/increase-ruby/compare/v1.195.0...v1.196.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([f6a121d](https://github.com/Increase/increase-ruby/commit/f6a121df12f7c54dc6fa6581f8d84681e0e9a656))
|
|
10
|
+
|
|
3
11
|
## 1.195.0 (2026-02-03)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v1.194.0...v1.195.0](https://github.com/Increase/increase-ruby/compare/v1.194.0...v1.195.0)
|
data/README.md
CHANGED
|
@@ -10,6 +10,43 @@ module Increase
|
|
|
10
10
|
# @return [String]
|
|
11
11
|
required :id, String
|
|
12
12
|
|
|
13
|
+
# @!attribute account_statement_bai2
|
|
14
|
+
# Details of the account statement BAI2 export. This field will be present when
|
|
15
|
+
# the `category` is equal to `account_statement_bai2`.
|
|
16
|
+
#
|
|
17
|
+
# @return [Increase::Models::Export::AccountStatementBai2, nil]
|
|
18
|
+
required :account_statement_bai2, -> { Increase::Export::AccountStatementBai2 }, nil?: true
|
|
19
|
+
|
|
20
|
+
# @!attribute account_statement_ofx
|
|
21
|
+
# Details of the account statement OFX export. This field will be present when the
|
|
22
|
+
# `category` is equal to `account_statement_ofx`.
|
|
23
|
+
#
|
|
24
|
+
# @return [Increase::Models::Export::AccountStatementOfx, nil]
|
|
25
|
+
required :account_statement_ofx, -> { Increase::Export::AccountStatementOfx }, nil?: true
|
|
26
|
+
|
|
27
|
+
# @!attribute account_verification_letter
|
|
28
|
+
# Details of the account verification letter export. This field will be present
|
|
29
|
+
# when the `category` is equal to `account_verification_letter`.
|
|
30
|
+
#
|
|
31
|
+
# @return [Increase::Models::Export::AccountVerificationLetter, nil]
|
|
32
|
+
required :account_verification_letter, -> { Increase::Export::AccountVerificationLetter }, nil?: true
|
|
33
|
+
|
|
34
|
+
# @!attribute balance_csv
|
|
35
|
+
# Details of the balance CSV export. This field will be present when the
|
|
36
|
+
# `category` is equal to `balance_csv`.
|
|
37
|
+
#
|
|
38
|
+
# @return [Increase::Models::Export::BalanceCsv, nil]
|
|
39
|
+
required :balance_csv, -> { Increase::Export::BalanceCsv }, nil?: true
|
|
40
|
+
|
|
41
|
+
# @!attribute bookkeeping_account_balance_csv
|
|
42
|
+
# Details of the bookkeeping account balance CSV export. This field will be
|
|
43
|
+
# present when the `category` is equal to `bookkeeping_account_balance_csv`.
|
|
44
|
+
#
|
|
45
|
+
# @return [Increase::Models::Export::BookkeepingAccountBalanceCsv, nil]
|
|
46
|
+
required :bookkeeping_account_balance_csv,
|
|
47
|
+
-> { Increase::Export::BookkeepingAccountBalanceCsv },
|
|
48
|
+
nil?: true
|
|
49
|
+
|
|
13
50
|
# @!attribute category
|
|
14
51
|
# The category of the Export. We may add additional possible values for this enum
|
|
15
52
|
# over time; your application should be able to handle that gracefully.
|
|
@@ -23,6 +60,20 @@ module Increase
|
|
|
23
60
|
# @return [Time]
|
|
24
61
|
required :created_at, Time
|
|
25
62
|
|
|
63
|
+
# @!attribute dashboard_table_csv
|
|
64
|
+
# Details of the dashboard table CSV export. This field will be present when the
|
|
65
|
+
# `category` is equal to `dashboard_table_csv`.
|
|
66
|
+
#
|
|
67
|
+
# @return [Increase::Models::Export::DashboardTableCsv, nil]
|
|
68
|
+
required :dashboard_table_csv, -> { Increase::Export::DashboardTableCsv }, nil?: true
|
|
69
|
+
|
|
70
|
+
# @!attribute entity_csv
|
|
71
|
+
# Details of the entity CSV export. This field will be present when the `category`
|
|
72
|
+
# is equal to `entity_csv`.
|
|
73
|
+
#
|
|
74
|
+
# @return [Increase::Models::Export::EntityCsv, nil]
|
|
75
|
+
required :entity_csv, -> { Increase::Export::EntityCsv }, nil?: true
|
|
76
|
+
|
|
26
77
|
# @!attribute file_download_url
|
|
27
78
|
# A URL at which the Export's file can be downloaded. This will be present when
|
|
28
79
|
# the Export's status transitions to `complete`.
|
|
@@ -37,6 +88,27 @@ module Increase
|
|
|
37
88
|
# @return [String, nil]
|
|
38
89
|
required :file_id, String, nil?: true
|
|
39
90
|
|
|
91
|
+
# @!attribute form_1099_int
|
|
92
|
+
# Details of the Form 1099-INT export. This field will be present when the
|
|
93
|
+
# `category` is equal to `form_1099_int`.
|
|
94
|
+
#
|
|
95
|
+
# @return [Increase::Models::Export::Form1099Int, nil]
|
|
96
|
+
required :form_1099_int, -> { Increase::Export::Form1099Int }, nil?: true
|
|
97
|
+
|
|
98
|
+
# @!attribute form_1099_misc
|
|
99
|
+
# Details of the Form 1099-MISC export. This field will be present when the
|
|
100
|
+
# `category` is equal to `form_1099_misc`.
|
|
101
|
+
#
|
|
102
|
+
# @return [Increase::Models::Export::Form1099Misc, nil]
|
|
103
|
+
required :form_1099_misc, -> { Increase::Export::Form1099Misc }, nil?: true
|
|
104
|
+
|
|
105
|
+
# @!attribute funding_instructions
|
|
106
|
+
# Details of the funding instructions export. This field will be present when the
|
|
107
|
+
# `category` is equal to `funding_instructions`.
|
|
108
|
+
#
|
|
109
|
+
# @return [Increase::Models::Export::FundingInstructions, nil]
|
|
110
|
+
required :funding_instructions, -> { Increase::Export::FundingInstructions }, nil?: true
|
|
111
|
+
|
|
40
112
|
# @!attribute idempotency_key
|
|
41
113
|
# The idempotency key you chose for this object. This value is unique across
|
|
42
114
|
# Increase and is used to ensure that a request is only processed once. Learn more
|
|
@@ -51,6 +123,13 @@ module Increase
|
|
|
51
123
|
# @return [Symbol, Increase::Models::Export::Status]
|
|
52
124
|
required :status, enum: -> { Increase::Export::Status }
|
|
53
125
|
|
|
126
|
+
# @!attribute transaction_csv
|
|
127
|
+
# Details of the transaction CSV export. This field will be present when the
|
|
128
|
+
# `category` is equal to `transaction_csv`.
|
|
129
|
+
#
|
|
130
|
+
# @return [Increase::Models::Export::TransactionCsv, nil]
|
|
131
|
+
required :transaction_csv, -> { Increase::Export::TransactionCsv }, nil?: true
|
|
132
|
+
|
|
54
133
|
# @!attribute type
|
|
55
134
|
# A constant representing the object's type. For this resource it will always be
|
|
56
135
|
# `export`.
|
|
@@ -58,7 +137,14 @@ module Increase
|
|
|
58
137
|
# @return [Symbol, Increase::Models::Export::Type]
|
|
59
138
|
required :type, enum: -> { Increase::Export::Type }
|
|
60
139
|
|
|
61
|
-
# @!
|
|
140
|
+
# @!attribute vendor_csv
|
|
141
|
+
# Details of the vendor CSV export. This field will be present when the `category`
|
|
142
|
+
# is equal to `vendor_csv`.
|
|
143
|
+
#
|
|
144
|
+
# @return [Increase::Models::Export::VendorCsv, nil]
|
|
145
|
+
required :vendor_csv, -> { Increase::Export::VendorCsv }, nil?: true
|
|
146
|
+
|
|
147
|
+
# @!method initialize(id:, account_statement_bai2:, account_statement_ofx:, account_verification_letter:, balance_csv:, bookkeeping_account_balance_csv:, category:, created_at:, dashboard_table_csv:, entity_csv:, file_download_url:, file_id:, form_1099_int:, form_1099_misc:, funding_instructions:, idempotency_key:, status:, transaction_csv:, type:, vendor_csv:)
|
|
62
148
|
# Some parameter documentations has been truncated, see {Increase::Models::Export}
|
|
63
149
|
# for more details.
|
|
64
150
|
#
|
|
@@ -70,19 +156,232 @@ module Increase
|
|
|
70
156
|
#
|
|
71
157
|
# @param id [String] The Export identifier.
|
|
72
158
|
#
|
|
159
|
+
# @param account_statement_bai2 [Increase::Models::Export::AccountStatementBai2, nil] Details of the account statement BAI2 export. This field will be present when th
|
|
160
|
+
#
|
|
161
|
+
# @param account_statement_ofx [Increase::Models::Export::AccountStatementOfx, nil] Details of the account statement OFX export. This field will be present when the
|
|
162
|
+
#
|
|
163
|
+
# @param account_verification_letter [Increase::Models::Export::AccountVerificationLetter, nil] Details of the account verification letter export. This field will be present wh
|
|
164
|
+
#
|
|
165
|
+
# @param balance_csv [Increase::Models::Export::BalanceCsv, nil] Details of the balance CSV export. This field will be present when the `category
|
|
166
|
+
#
|
|
167
|
+
# @param bookkeeping_account_balance_csv [Increase::Models::Export::BookkeepingAccountBalanceCsv, nil] Details of the bookkeeping account balance CSV export. This field will be presen
|
|
168
|
+
#
|
|
73
169
|
# @param category [Symbol, Increase::Models::Export::Category] The category of the Export. We may add additional possible values for this enum
|
|
74
170
|
#
|
|
75
171
|
# @param created_at [Time] The time the Export was created.
|
|
76
172
|
#
|
|
173
|
+
# @param dashboard_table_csv [Increase::Models::Export::DashboardTableCsv, nil] Details of the dashboard table CSV export. This field will be present when the `
|
|
174
|
+
#
|
|
175
|
+
# @param entity_csv [Increase::Models::Export::EntityCsv, nil] Details of the entity CSV export. This field will be present when the `category`
|
|
176
|
+
#
|
|
77
177
|
# @param file_download_url [String, nil] A URL at which the Export's file can be downloaded. This will be present when th
|
|
78
178
|
#
|
|
79
179
|
# @param file_id [String, nil] The File containing the contents of the Export. This will be present when the Ex
|
|
80
180
|
#
|
|
181
|
+
# @param form_1099_int [Increase::Models::Export::Form1099Int, nil] Details of the Form 1099-INT export. This field will be present when the `catego
|
|
182
|
+
#
|
|
183
|
+
# @param form_1099_misc [Increase::Models::Export::Form1099Misc, nil] Details of the Form 1099-MISC export. This field will be present when the `categ
|
|
184
|
+
#
|
|
185
|
+
# @param funding_instructions [Increase::Models::Export::FundingInstructions, nil] Details of the funding instructions export. This field will be present when the
|
|
186
|
+
#
|
|
81
187
|
# @param idempotency_key [String, nil] The idempotency key you chose for this object. This value is unique across Incre
|
|
82
188
|
#
|
|
83
189
|
# @param status [Symbol, Increase::Models::Export::Status] The status of the Export.
|
|
84
190
|
#
|
|
191
|
+
# @param transaction_csv [Increase::Models::Export::TransactionCsv, nil] Details of the transaction CSV export. This field will be present when the `cate
|
|
192
|
+
#
|
|
85
193
|
# @param type [Symbol, Increase::Models::Export::Type] A constant representing the object's type. For this resource it will always be `
|
|
194
|
+
#
|
|
195
|
+
# @param vendor_csv [Increase::Models::Export::VendorCsv, nil] Details of the vendor CSV export. This field will be present when the `category`
|
|
196
|
+
|
|
197
|
+
# @see Increase::Models::Export#account_statement_bai2
|
|
198
|
+
class AccountStatementBai2 < Increase::Internal::Type::BaseModel
|
|
199
|
+
# @!attribute account_id
|
|
200
|
+
# Filter results by Account.
|
|
201
|
+
#
|
|
202
|
+
# @return [String, nil]
|
|
203
|
+
required :account_id, String, nil?: true
|
|
204
|
+
|
|
205
|
+
# @!attribute effective_date
|
|
206
|
+
# The date for which to retrieve the balance.
|
|
207
|
+
#
|
|
208
|
+
# @return [Date, nil]
|
|
209
|
+
required :effective_date, Date, nil?: true
|
|
210
|
+
|
|
211
|
+
# @!attribute program_id
|
|
212
|
+
# Filter results by Program.
|
|
213
|
+
#
|
|
214
|
+
# @return [String, nil]
|
|
215
|
+
required :program_id, String, nil?: true
|
|
216
|
+
|
|
217
|
+
# @!method initialize(account_id:, effective_date:, program_id:)
|
|
218
|
+
# Details of the account statement BAI2 export. This field will be present when
|
|
219
|
+
# the `category` is equal to `account_statement_bai2`.
|
|
220
|
+
#
|
|
221
|
+
# @param account_id [String, nil] Filter results by Account.
|
|
222
|
+
#
|
|
223
|
+
# @param effective_date [Date, nil] The date for which to retrieve the balance.
|
|
224
|
+
#
|
|
225
|
+
# @param program_id [String, nil] Filter results by Program.
|
|
226
|
+
end
|
|
227
|
+
|
|
228
|
+
# @see Increase::Models::Export#account_statement_ofx
|
|
229
|
+
class AccountStatementOfx < Increase::Internal::Type::BaseModel
|
|
230
|
+
# @!attribute account_id
|
|
231
|
+
# The Account to create a statement for.
|
|
232
|
+
#
|
|
233
|
+
# @return [String]
|
|
234
|
+
required :account_id, String
|
|
235
|
+
|
|
236
|
+
# @!attribute created_at
|
|
237
|
+
# Filter transactions by their created date.
|
|
238
|
+
#
|
|
239
|
+
# @return [Increase::Models::Export::AccountStatementOfx::CreatedAt, nil]
|
|
240
|
+
required :created_at, -> { Increase::Export::AccountStatementOfx::CreatedAt }, nil?: true
|
|
241
|
+
|
|
242
|
+
# @!method initialize(account_id:, created_at:)
|
|
243
|
+
# Details of the account statement OFX export. This field will be present when the
|
|
244
|
+
# `category` is equal to `account_statement_ofx`.
|
|
245
|
+
#
|
|
246
|
+
# @param account_id [String] The Account to create a statement for.
|
|
247
|
+
#
|
|
248
|
+
# @param created_at [Increase::Models::Export::AccountStatementOfx::CreatedAt, nil] Filter transactions by their created date.
|
|
249
|
+
|
|
250
|
+
# @see Increase::Models::Export::AccountStatementOfx#created_at
|
|
251
|
+
class CreatedAt < Increase::Internal::Type::BaseModel
|
|
252
|
+
# @!attribute after
|
|
253
|
+
# Filter results to transactions created after this time.
|
|
254
|
+
#
|
|
255
|
+
# @return [Time, nil]
|
|
256
|
+
required :after, Time, nil?: true
|
|
257
|
+
|
|
258
|
+
# @!attribute before
|
|
259
|
+
# Filter results to transactions created before this time.
|
|
260
|
+
#
|
|
261
|
+
# @return [Time, nil]
|
|
262
|
+
required :before, Time, nil?: true
|
|
263
|
+
|
|
264
|
+
# @!method initialize(after:, before:)
|
|
265
|
+
# Filter transactions by their created date.
|
|
266
|
+
#
|
|
267
|
+
# @param after [Time, nil] Filter results to transactions created after this time.
|
|
268
|
+
#
|
|
269
|
+
# @param before [Time, nil] Filter results to transactions created before this time.
|
|
270
|
+
end
|
|
271
|
+
end
|
|
272
|
+
|
|
273
|
+
# @see Increase::Models::Export#account_verification_letter
|
|
274
|
+
class AccountVerificationLetter < Increase::Internal::Type::BaseModel
|
|
275
|
+
# @!attribute account_number_id
|
|
276
|
+
# The Account Number to create a letter for.
|
|
277
|
+
#
|
|
278
|
+
# @return [String]
|
|
279
|
+
required :account_number_id, String
|
|
280
|
+
|
|
281
|
+
# @!attribute balance_date
|
|
282
|
+
# The date of the balance to include in the letter.
|
|
283
|
+
#
|
|
284
|
+
# @return [Date, nil]
|
|
285
|
+
required :balance_date, Date, nil?: true
|
|
286
|
+
|
|
287
|
+
# @!method initialize(account_number_id:, balance_date:)
|
|
288
|
+
# Details of the account verification letter export. This field will be present
|
|
289
|
+
# when the `category` is equal to `account_verification_letter`.
|
|
290
|
+
#
|
|
291
|
+
# @param account_number_id [String] The Account Number to create a letter for.
|
|
292
|
+
#
|
|
293
|
+
# @param balance_date [Date, nil] The date of the balance to include in the letter.
|
|
294
|
+
end
|
|
295
|
+
|
|
296
|
+
# @see Increase::Models::Export#balance_csv
|
|
297
|
+
class BalanceCsv < Increase::Internal::Type::BaseModel
|
|
298
|
+
# @!attribute account_id
|
|
299
|
+
# Filter results by Account.
|
|
300
|
+
#
|
|
301
|
+
# @return [String, nil]
|
|
302
|
+
required :account_id, String, nil?: true
|
|
303
|
+
|
|
304
|
+
# @!attribute created_at
|
|
305
|
+
# Filter balances by their created date.
|
|
306
|
+
#
|
|
307
|
+
# @return [Increase::Models::Export::BalanceCsv::CreatedAt, nil]
|
|
308
|
+
required :created_at, -> { Increase::Export::BalanceCsv::CreatedAt }, nil?: true
|
|
309
|
+
|
|
310
|
+
# @!method initialize(account_id:, created_at:)
|
|
311
|
+
# Details of the balance CSV export. This field will be present when the
|
|
312
|
+
# `category` is equal to `balance_csv`.
|
|
313
|
+
#
|
|
314
|
+
# @param account_id [String, nil] Filter results by Account.
|
|
315
|
+
#
|
|
316
|
+
# @param created_at [Increase::Models::Export::BalanceCsv::CreatedAt, nil] Filter balances by their created date.
|
|
317
|
+
|
|
318
|
+
# @see Increase::Models::Export::BalanceCsv#created_at
|
|
319
|
+
class CreatedAt < Increase::Internal::Type::BaseModel
|
|
320
|
+
# @!attribute after
|
|
321
|
+
# Filter balances created after this time.
|
|
322
|
+
#
|
|
323
|
+
# @return [Time, nil]
|
|
324
|
+
required :after, Time, nil?: true
|
|
325
|
+
|
|
326
|
+
# @!attribute before
|
|
327
|
+
# Filter balances created before this time.
|
|
328
|
+
#
|
|
329
|
+
# @return [Time, nil]
|
|
330
|
+
required :before, Time, nil?: true
|
|
331
|
+
|
|
332
|
+
# @!method initialize(after:, before:)
|
|
333
|
+
# Filter balances by their created date.
|
|
334
|
+
#
|
|
335
|
+
# @param after [Time, nil] Filter balances created after this time.
|
|
336
|
+
#
|
|
337
|
+
# @param before [Time, nil] Filter balances created before this time.
|
|
338
|
+
end
|
|
339
|
+
end
|
|
340
|
+
|
|
341
|
+
# @see Increase::Models::Export#bookkeeping_account_balance_csv
|
|
342
|
+
class BookkeepingAccountBalanceCsv < Increase::Internal::Type::BaseModel
|
|
343
|
+
# @!attribute bookkeeping_account_id
|
|
344
|
+
# Filter results by Bookkeeping Account.
|
|
345
|
+
#
|
|
346
|
+
# @return [String, nil]
|
|
347
|
+
required :bookkeeping_account_id, String, nil?: true
|
|
348
|
+
|
|
349
|
+
# @!attribute created_at
|
|
350
|
+
# Filter balances by their created date.
|
|
351
|
+
#
|
|
352
|
+
# @return [Increase::Models::Export::BookkeepingAccountBalanceCsv::CreatedAt, nil]
|
|
353
|
+
required :created_at, -> { Increase::Export::BookkeepingAccountBalanceCsv::CreatedAt }, nil?: true
|
|
354
|
+
|
|
355
|
+
# @!method initialize(bookkeeping_account_id:, created_at:)
|
|
356
|
+
# Details of the bookkeeping account balance CSV export. This field will be
|
|
357
|
+
# present when the `category` is equal to `bookkeeping_account_balance_csv`.
|
|
358
|
+
#
|
|
359
|
+
# @param bookkeeping_account_id [String, nil] Filter results by Bookkeeping Account.
|
|
360
|
+
#
|
|
361
|
+
# @param created_at [Increase::Models::Export::BookkeepingAccountBalanceCsv::CreatedAt, nil] Filter balances by their created date.
|
|
362
|
+
|
|
363
|
+
# @see Increase::Models::Export::BookkeepingAccountBalanceCsv#created_at
|
|
364
|
+
class CreatedAt < Increase::Internal::Type::BaseModel
|
|
365
|
+
# @!attribute after
|
|
366
|
+
# Filter balances created after this time.
|
|
367
|
+
#
|
|
368
|
+
# @return [Time, nil]
|
|
369
|
+
required :after, Time, nil?: true
|
|
370
|
+
|
|
371
|
+
# @!attribute before
|
|
372
|
+
# Filter balances created before this time.
|
|
373
|
+
#
|
|
374
|
+
# @return [Time, nil]
|
|
375
|
+
required :before, Time, nil?: true
|
|
376
|
+
|
|
377
|
+
# @!method initialize(after:, before:)
|
|
378
|
+
# Filter balances by their created date.
|
|
379
|
+
#
|
|
380
|
+
# @param after [Time, nil] Filter balances created after this time.
|
|
381
|
+
#
|
|
382
|
+
# @param before [Time, nil] Filter balances created before this time.
|
|
383
|
+
end
|
|
384
|
+
end
|
|
86
385
|
|
|
87
386
|
# The category of the Export. We may add additional possible values for this enum
|
|
88
387
|
# over time; your application should be able to handle that gracefully.
|
|
@@ -131,6 +430,105 @@ module Increase
|
|
|
131
430
|
# @return [Array<Symbol>]
|
|
132
431
|
end
|
|
133
432
|
|
|
433
|
+
# @see Increase::Models::Export#dashboard_table_csv
|
|
434
|
+
class DashboardTableCsv < Increase::Internal::Type::BaseModel
|
|
435
|
+
# @!method initialize
|
|
436
|
+
# Details of the dashboard table CSV export. This field will be present when the
|
|
437
|
+
# `category` is equal to `dashboard_table_csv`.
|
|
438
|
+
end
|
|
439
|
+
|
|
440
|
+
# @see Increase::Models::Export#entity_csv
|
|
441
|
+
class EntityCsv < Increase::Internal::Type::BaseModel
|
|
442
|
+
# @!method initialize
|
|
443
|
+
# Details of the entity CSV export. This field will be present when the `category`
|
|
444
|
+
# is equal to `entity_csv`.
|
|
445
|
+
end
|
|
446
|
+
|
|
447
|
+
# @see Increase::Models::Export#form_1099_int
|
|
448
|
+
class Form1099Int < Increase::Internal::Type::BaseModel
|
|
449
|
+
# @!attribute account_id
|
|
450
|
+
# The Account the tax form is for.
|
|
451
|
+
#
|
|
452
|
+
# @return [String]
|
|
453
|
+
required :account_id, String
|
|
454
|
+
|
|
455
|
+
# @!attribute corrected
|
|
456
|
+
# Whether the tax form is a corrected form.
|
|
457
|
+
#
|
|
458
|
+
# @return [Boolean]
|
|
459
|
+
required :corrected, Increase::Internal::Type::Boolean
|
|
460
|
+
|
|
461
|
+
# @!attribute description
|
|
462
|
+
# A description of the tax form.
|
|
463
|
+
#
|
|
464
|
+
# @return [String]
|
|
465
|
+
required :description, String
|
|
466
|
+
|
|
467
|
+
# @!attribute year
|
|
468
|
+
# The tax year for the tax form.
|
|
469
|
+
#
|
|
470
|
+
# @return [Integer]
|
|
471
|
+
required :year, Integer
|
|
472
|
+
|
|
473
|
+
# @!method initialize(account_id:, corrected:, description:, year:)
|
|
474
|
+
# Details of the Form 1099-INT export. This field will be present when the
|
|
475
|
+
# `category` is equal to `form_1099_int`.
|
|
476
|
+
#
|
|
477
|
+
# @param account_id [String] The Account the tax form is for.
|
|
478
|
+
#
|
|
479
|
+
# @param corrected [Boolean] Whether the tax form is a corrected form.
|
|
480
|
+
#
|
|
481
|
+
# @param description [String] A description of the tax form.
|
|
482
|
+
#
|
|
483
|
+
# @param year [Integer] The tax year for the tax form.
|
|
484
|
+
end
|
|
485
|
+
|
|
486
|
+
# @see Increase::Models::Export#form_1099_misc
|
|
487
|
+
class Form1099Misc < Increase::Internal::Type::BaseModel
|
|
488
|
+
# @!attribute account_id
|
|
489
|
+
# The Account the tax form is for.
|
|
490
|
+
#
|
|
491
|
+
# @return [String]
|
|
492
|
+
required :account_id, String
|
|
493
|
+
|
|
494
|
+
# @!attribute corrected
|
|
495
|
+
# Whether the tax form is a corrected form.
|
|
496
|
+
#
|
|
497
|
+
# @return [Boolean]
|
|
498
|
+
required :corrected, Increase::Internal::Type::Boolean
|
|
499
|
+
|
|
500
|
+
# @!attribute year
|
|
501
|
+
# The tax year for the tax form.
|
|
502
|
+
#
|
|
503
|
+
# @return [Integer]
|
|
504
|
+
required :year, Integer
|
|
505
|
+
|
|
506
|
+
# @!method initialize(account_id:, corrected:, year:)
|
|
507
|
+
# Details of the Form 1099-MISC export. This field will be present when the
|
|
508
|
+
# `category` is equal to `form_1099_misc`.
|
|
509
|
+
#
|
|
510
|
+
# @param account_id [String] The Account the tax form is for.
|
|
511
|
+
#
|
|
512
|
+
# @param corrected [Boolean] Whether the tax form is a corrected form.
|
|
513
|
+
#
|
|
514
|
+
# @param year [Integer] The tax year for the tax form.
|
|
515
|
+
end
|
|
516
|
+
|
|
517
|
+
# @see Increase::Models::Export#funding_instructions
|
|
518
|
+
class FundingInstructions < Increase::Internal::Type::BaseModel
|
|
519
|
+
# @!attribute account_number_id
|
|
520
|
+
# The Account Number to create funding instructions for.
|
|
521
|
+
#
|
|
522
|
+
# @return [String]
|
|
523
|
+
required :account_number_id, String
|
|
524
|
+
|
|
525
|
+
# @!method initialize(account_number_id:)
|
|
526
|
+
# Details of the funding instructions export. This field will be present when the
|
|
527
|
+
# `category` is equal to `funding_instructions`.
|
|
528
|
+
#
|
|
529
|
+
# @param account_number_id [String] The Account Number to create funding instructions for.
|
|
530
|
+
end
|
|
531
|
+
|
|
134
532
|
# The status of the Export.
|
|
135
533
|
#
|
|
136
534
|
# @see Increase::Models::Export#status
|
|
@@ -150,6 +548,51 @@ module Increase
|
|
|
150
548
|
# @return [Array<Symbol>]
|
|
151
549
|
end
|
|
152
550
|
|
|
551
|
+
# @see Increase::Models::Export#transaction_csv
|
|
552
|
+
class TransactionCsv < Increase::Internal::Type::BaseModel
|
|
553
|
+
# @!attribute account_id
|
|
554
|
+
# Filter results by Account.
|
|
555
|
+
#
|
|
556
|
+
# @return [String, nil]
|
|
557
|
+
required :account_id, String, nil?: true
|
|
558
|
+
|
|
559
|
+
# @!attribute created_at
|
|
560
|
+
# Filter transactions by their created date.
|
|
561
|
+
#
|
|
562
|
+
# @return [Increase::Models::Export::TransactionCsv::CreatedAt, nil]
|
|
563
|
+
required :created_at, -> { Increase::Export::TransactionCsv::CreatedAt }, nil?: true
|
|
564
|
+
|
|
565
|
+
# @!method initialize(account_id:, created_at:)
|
|
566
|
+
# Details of the transaction CSV export. This field will be present when the
|
|
567
|
+
# `category` is equal to `transaction_csv`.
|
|
568
|
+
#
|
|
569
|
+
# @param account_id [String, nil] Filter results by Account.
|
|
570
|
+
#
|
|
571
|
+
# @param created_at [Increase::Models::Export::TransactionCsv::CreatedAt, nil] Filter transactions by their created date.
|
|
572
|
+
|
|
573
|
+
# @see Increase::Models::Export::TransactionCsv#created_at
|
|
574
|
+
class CreatedAt < Increase::Internal::Type::BaseModel
|
|
575
|
+
# @!attribute after
|
|
576
|
+
# Filter transactions created after this time.
|
|
577
|
+
#
|
|
578
|
+
# @return [Time, nil]
|
|
579
|
+
required :after, Time, nil?: true
|
|
580
|
+
|
|
581
|
+
# @!attribute before
|
|
582
|
+
# Filter transactions created before this time.
|
|
583
|
+
#
|
|
584
|
+
# @return [Time, nil]
|
|
585
|
+
required :before, Time, nil?: true
|
|
586
|
+
|
|
587
|
+
# @!method initialize(after:, before:)
|
|
588
|
+
# Filter transactions by their created date.
|
|
589
|
+
#
|
|
590
|
+
# @param after [Time, nil] Filter transactions created after this time.
|
|
591
|
+
#
|
|
592
|
+
# @param before [Time, nil] Filter transactions created before this time.
|
|
593
|
+
end
|
|
594
|
+
end
|
|
595
|
+
|
|
153
596
|
# A constant representing the object's type. For this resource it will always be
|
|
154
597
|
# `export`.
|
|
155
598
|
#
|
|
@@ -162,6 +605,13 @@ module Increase
|
|
|
162
605
|
# @!method self.values
|
|
163
606
|
# @return [Array<Symbol>]
|
|
164
607
|
end
|
|
608
|
+
|
|
609
|
+
# @see Increase::Models::Export#vendor_csv
|
|
610
|
+
class VendorCsv < Increase::Internal::Type::BaseModel
|
|
611
|
+
# @!method initialize
|
|
612
|
+
# Details of the vendor CSV export. This field will be present when the `category`
|
|
613
|
+
# is equal to `vendor_csv`.
|
|
614
|
+
end
|
|
165
615
|
end
|
|
166
616
|
end
|
|
167
617
|
end
|
data/lib/increase/version.rb
CHANGED