increase 1.347.0 → 1.348.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/README.md +1 -1
- data/lib/increase/models/ach_prenotification_create_params.rb +2 -2
- data/lib/increase/models/ach_transfer.rb +2 -2
- data/lib/increase/models/ach_transfer_create_params.rb +1 -24
- data/lib/increase/models/balance_lookup.rb +49 -1
- data/lib/increase/models/beneficial_owner_update_params.rb +9 -1
- data/lib/increase/models/card.rb +43 -1
- data/lib/increase/models/card_create_params.rb +42 -1
- data/lib/increase/models/card_dispute.rb +1 -1
- data/lib/increase/models/card_dispute_list_params.rb +1 -1
- data/lib/increase/models/card_payment.rb +18 -1
- data/lib/increase/models/check_transfer.rb +13 -1
- data/lib/increase/models/check_transfer_create_params.rb +25 -13
- data/lib/increase/models/entity.rb +22 -4
- data/lib/increase/models/entity_update_params.rb +754 -1
- data/lib/increase/models/event.rb +9 -0
- data/lib/increase/models/event_list_params.rb +9 -0
- data/lib/increase/models/event_subscription.rb +9 -0
- data/lib/increase/models/event_subscription_create_params.rb +9 -0
- data/lib/increase/models/file.rb +7 -6
- data/lib/increase/models/inbound_ach_transfer.rb +6 -6
- data/lib/increase/models/pending_transaction.rb +18 -1
- data/lib/increase/models/real_time_decision.rb +18 -1
- data/lib/increase/models/real_time_payments_transfer.rb +30 -19
- data/lib/increase/models/real_time_payments_transfer_create_params.rb +12 -1
- data/lib/increase/models/simulations/card_dispute_action_params.rb +30 -1
- data/lib/increase/models/simulations/entity_update_validation_params.rb +3 -0
- data/lib/increase/models/simulations/real_time_payments_transfer_complete_params.rb +18 -18
- data/lib/increase/models/unwrap_webhook_event.rb +9 -0
- data/lib/increase/models/wire_transfer_create_params.rb +100 -42
- data/lib/increase/resources/ach_prenotifications.rb +1 -1
- data/lib/increase/resources/ach_transfers.rb +1 -4
- data/lib/increase/resources/beneficial_owners.rb +3 -1
- data/lib/increase/resources/cards.rb +5 -1
- data/lib/increase/resources/real_time_payments_transfers.rb +5 -1
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/ach_prenotification_create_params.rbi +2 -2
- data/rbi/increase/models/ach_transfer.rbi +2 -2
- data/rbi/increase/models/ach_transfer_create_params.rbi +0 -59
- data/rbi/increase/models/balance_lookup.rbi +48 -0
- data/rbi/increase/models/beneficial_owner_update_params.rbi +11 -0
- data/rbi/increase/models/card.rbi +63 -0
- data/rbi/increase/models/card_create_params.rbi +65 -0
- data/rbi/increase/models/card_dispute.rbi +1 -1
- data/rbi/increase/models/card_dispute_list_params.rbi +1 -1
- data/rbi/increase/models/card_payment.rbi +16 -0
- data/rbi/increase/models/check_transfer.rbi +15 -0
- data/rbi/increase/models/check_transfer_create_params.rbi +26 -12
- data/rbi/increase/models/entity.rbi +61 -3
- data/rbi/increase/models/entity_update_params.rbi +1326 -3
- data/rbi/increase/models/event.rbi +21 -0
- data/rbi/increase/models/event_list_params.rbi +21 -0
- data/rbi/increase/models/event_subscription.rbi +21 -0
- data/rbi/increase/models/event_subscription_create_params.rbi +21 -0
- data/rbi/increase/models/file.rbi +7 -6
- data/rbi/increase/models/inbound_ach_transfer.rbi +6 -6
- data/rbi/increase/models/pending_transaction.rbi +16 -0
- data/rbi/increase/models/real_time_decision.rbi +16 -0
- data/rbi/increase/models/real_time_payments_transfer.rbi +29 -18
- data/rbi/increase/models/real_time_payments_transfer_create_params.rbi +15 -0
- data/rbi/increase/models/simulations/card_dispute_action_params.rbi +60 -0
- data/rbi/increase/models/simulations/entity_update_validation_params.rbi +7 -0
- data/rbi/increase/models/simulations/real_time_payments_transfer_complete_params.rbi +18 -18
- data/rbi/increase/models/unwrap_webhook_event.rbi +21 -0
- data/rbi/increase/models/wire_transfer_create_params.rbi +146 -62
- data/rbi/increase/resources/ach_prenotifications.rbi +1 -1
- data/rbi/increase/resources/ach_transfers.rbi +0 -4
- data/rbi/increase/resources/beneficial_owners.rbi +3 -0
- data/rbi/increase/resources/cards.rbi +4 -0
- data/rbi/increase/resources/real_time_payments_transfers.rbi +4 -0
- data/sig/increase/models/ach_transfer_create_params.rbs +1 -24
- data/sig/increase/models/balance_lookup.rbs +30 -0
- data/sig/increase/models/beneficial_owner_update_params.rbs +7 -0
- data/sig/increase/models/card.rbs +19 -0
- data/sig/increase/models/card_create_params.rbs +25 -0
- data/sig/increase/models/card_dispute.rbs +1 -1
- data/sig/increase/models/card_dispute_list_params.rbs +1 -1
- data/sig/increase/models/card_payment.rbs +5 -0
- data/sig/increase/models/check_transfer.rbs +9 -0
- data/sig/increase/models/check_transfer_create_params.rbs +7 -0
- data/sig/increase/models/entity.rbs +21 -4
- data/sig/increase/models/entity_update_params.rbs +585 -3
- data/sig/increase/models/event.rbs +12 -0
- data/sig/increase/models/event_list_params.rbs +12 -0
- data/sig/increase/models/event_subscription.rbs +12 -0
- data/sig/increase/models/event_subscription_create_params.rbs +12 -0
- data/sig/increase/models/inbound_ach_transfer.rbs +2 -2
- data/sig/increase/models/pending_transaction.rbs +5 -0
- data/sig/increase/models/real_time_decision.rbs +5 -0
- data/sig/increase/models/real_time_payments_transfer.rbs +23 -18
- data/sig/increase/models/real_time_payments_transfer_create_params.rbs +7 -0
- data/sig/increase/models/simulations/card_dispute_action_params.rbs +23 -0
- data/sig/increase/models/simulations/entity_update_validation_params.rbs +4 -0
- data/sig/increase/models/simulations/real_time_payments_transfer_complete_params.rbs +18 -18
- data/sig/increase/models/unwrap_webhook_event.rbs +12 -0
- data/sig/increase/models/wire_transfer_create_params.rbs +78 -32
- data/sig/increase/resources/ach_transfers.rbs +0 -1
- data/sig/increase/resources/beneficial_owners.rbs +1 -0
- data/sig/increase/resources/cards.rbs +1 -0
- data/sig/increase/resources/real_time_payments_transfers.rbs +1 -0
- metadata +2 -2
|
@@ -40,6 +40,12 @@ module Increase
|
|
|
40
40
|
{
|
|
41
41
|
due_at: Time?,
|
|
42
42
|
due_balance: Integer,
|
|
43
|
+
due_fees: Integer?,
|
|
44
|
+
due_interest: Integer?,
|
|
45
|
+
due_principal: Integer?,
|
|
46
|
+
not_due_fees: Integer?,
|
|
47
|
+
not_due_interest: Integer?,
|
|
48
|
+
not_due_principal: Integer?,
|
|
43
49
|
past_due_balance: Integer,
|
|
44
50
|
receivables: Increase::BalanceLookup::Loan::Receivables?
|
|
45
51
|
}
|
|
@@ -49,6 +55,18 @@ module Increase
|
|
|
49
55
|
|
|
50
56
|
attr_accessor due_balance: Integer
|
|
51
57
|
|
|
58
|
+
attr_accessor due_fees: Integer?
|
|
59
|
+
|
|
60
|
+
attr_accessor due_interest: Integer?
|
|
61
|
+
|
|
62
|
+
attr_accessor due_principal: Integer?
|
|
63
|
+
|
|
64
|
+
attr_accessor not_due_fees: Integer?
|
|
65
|
+
|
|
66
|
+
attr_accessor not_due_interest: Integer?
|
|
67
|
+
|
|
68
|
+
attr_accessor not_due_principal: Integer?
|
|
69
|
+
|
|
52
70
|
attr_accessor past_due_balance: Integer
|
|
53
71
|
|
|
54
72
|
attr_accessor receivables: Increase::BalanceLookup::Loan::Receivables?
|
|
@@ -56,6 +74,12 @@ module Increase
|
|
|
56
74
|
def initialize: (
|
|
57
75
|
due_at: Time?,
|
|
58
76
|
due_balance: Integer,
|
|
77
|
+
due_fees: Integer?,
|
|
78
|
+
due_interest: Integer?,
|
|
79
|
+
due_principal: Integer?,
|
|
80
|
+
not_due_fees: Integer?,
|
|
81
|
+
not_due_interest: Integer?,
|
|
82
|
+
not_due_principal: Integer?,
|
|
59
83
|
past_due_balance: Integer,
|
|
60
84
|
receivables: Increase::BalanceLookup::Loan::Receivables?
|
|
61
85
|
) -> void
|
|
@@ -63,6 +87,12 @@ module Increase
|
|
|
63
87
|
def to_hash: -> {
|
|
64
88
|
due_at: Time?,
|
|
65
89
|
due_balance: Integer,
|
|
90
|
+
due_fees: Integer?,
|
|
91
|
+
due_interest: Integer?,
|
|
92
|
+
due_principal: Integer?,
|
|
93
|
+
not_due_fees: Integer?,
|
|
94
|
+
not_due_interest: Integer?,
|
|
95
|
+
not_due_principal: Integer?,
|
|
66
96
|
past_due_balance: Integer,
|
|
67
97
|
receivables: Increase::BalanceLookup::Loan::Receivables?
|
|
68
98
|
}
|
|
@@ -5,6 +5,7 @@ module Increase
|
|
|
5
5
|
entity_beneficial_owner_id: String,
|
|
6
6
|
address: Increase::BeneficialOwnerUpdateParams::Address,
|
|
7
7
|
confirmed_no_us_tax_id: bool,
|
|
8
|
+
date_of_birth: Date,
|
|
8
9
|
identification: Increase::BeneficialOwnerUpdateParams::Identification,
|
|
9
10
|
name: String,
|
|
10
11
|
prongs: ::Array[Increase::Models::BeneficialOwnerUpdateParams::prong]
|
|
@@ -27,6 +28,10 @@ module Increase
|
|
|
27
28
|
|
|
28
29
|
def confirmed_no_us_tax_id=: (bool) -> bool
|
|
29
30
|
|
|
31
|
+
attr_reader date_of_birth: Date?
|
|
32
|
+
|
|
33
|
+
def date_of_birth=: (Date) -> Date
|
|
34
|
+
|
|
30
35
|
attr_reader identification: Increase::BeneficialOwnerUpdateParams::Identification?
|
|
31
36
|
|
|
32
37
|
def identification=: (
|
|
@@ -47,6 +52,7 @@ module Increase
|
|
|
47
52
|
entity_beneficial_owner_id: String,
|
|
48
53
|
?address: Increase::BeneficialOwnerUpdateParams::Address,
|
|
49
54
|
?confirmed_no_us_tax_id: bool,
|
|
55
|
+
?date_of_birth: Date,
|
|
50
56
|
?identification: Increase::BeneficialOwnerUpdateParams::Identification,
|
|
51
57
|
?name: String,
|
|
52
58
|
?prongs: ::Array[Increase::Models::BeneficialOwnerUpdateParams::prong],
|
|
@@ -57,6 +63,7 @@ module Increase
|
|
|
57
63
|
entity_beneficial_owner_id: String,
|
|
58
64
|
address: Increase::BeneficialOwnerUpdateParams::Address,
|
|
59
65
|
confirmed_no_us_tax_id: bool,
|
|
66
|
+
date_of_birth: Date,
|
|
60
67
|
identification: Increase::BeneficialOwnerUpdateParams::Identification,
|
|
61
68
|
name: String,
|
|
62
69
|
prongs: ::Array[Increase::Models::BeneficialOwnerUpdateParams::prong],
|
|
@@ -7,6 +7,7 @@ module Increase
|
|
|
7
7
|
authorization_controls: Increase::Card::AuthorizationControls?,
|
|
8
8
|
billing_address: Increase::Card::BillingAddress,
|
|
9
9
|
bin: String,
|
|
10
|
+
cardholder_name: Increase::Card::CardholderName?,
|
|
10
11
|
created_at: Time,
|
|
11
12
|
description: String?,
|
|
12
13
|
digital_wallet: Increase::Card::DigitalWallet?,
|
|
@@ -30,6 +31,8 @@ module Increase
|
|
|
30
31
|
|
|
31
32
|
attr_accessor bin: String
|
|
32
33
|
|
|
34
|
+
attr_accessor cardholder_name: Increase::Card::CardholderName?
|
|
35
|
+
|
|
33
36
|
attr_accessor created_at: Time
|
|
34
37
|
|
|
35
38
|
attr_accessor description: String?
|
|
@@ -56,6 +59,7 @@ module Increase
|
|
|
56
59
|
authorization_controls: Increase::Card::AuthorizationControls?,
|
|
57
60
|
billing_address: Increase::Card::BillingAddress,
|
|
58
61
|
bin: String,
|
|
62
|
+
cardholder_name: Increase::Card::CardholderName?,
|
|
59
63
|
created_at: Time,
|
|
60
64
|
description: String?,
|
|
61
65
|
digital_wallet: Increase::Card::DigitalWallet?,
|
|
@@ -74,6 +78,7 @@ module Increase
|
|
|
74
78
|
authorization_controls: Increase::Card::AuthorizationControls?,
|
|
75
79
|
billing_address: Increase::Card::BillingAddress,
|
|
76
80
|
bin: String,
|
|
81
|
+
cardholder_name: Increase::Card::CardholderName?,
|
|
77
82
|
created_at: Time,
|
|
78
83
|
description: String?,
|
|
79
84
|
digital_wallet: Increase::Card::DigitalWallet?,
|
|
@@ -453,6 +458,20 @@ module Increase
|
|
|
453
458
|
}
|
|
454
459
|
end
|
|
455
460
|
|
|
461
|
+
type cardholder_name = { first: String, last: String, middle: String? }
|
|
462
|
+
|
|
463
|
+
class CardholderName < Increase::Internal::Type::BaseModel
|
|
464
|
+
attr_accessor first: String
|
|
465
|
+
|
|
466
|
+
attr_accessor last: String
|
|
467
|
+
|
|
468
|
+
attr_accessor middle: String?
|
|
469
|
+
|
|
470
|
+
def initialize: (first: String, last: String, middle: String?) -> void
|
|
471
|
+
|
|
472
|
+
def to_hash: -> { first: String, last: String, middle: String? }
|
|
473
|
+
end
|
|
474
|
+
|
|
456
475
|
type digital_wallet =
|
|
457
476
|
{ digital_card_profile_id: String?, email: String?, phone: String? }
|
|
458
477
|
|
|
@@ -5,6 +5,7 @@ module Increase
|
|
|
5
5
|
account_id: String,
|
|
6
6
|
authorization_controls: Increase::CardCreateParams::AuthorizationControls,
|
|
7
7
|
billing_address: Increase::CardCreateParams::BillingAddress,
|
|
8
|
+
cardholder_name: Increase::CardCreateParams::CardholderName,
|
|
8
9
|
description: String,
|
|
9
10
|
digital_wallet: Increase::CardCreateParams::DigitalWallet,
|
|
10
11
|
entity_id: String
|
|
@@ -29,6 +30,12 @@ module Increase
|
|
|
29
30
|
Increase::CardCreateParams::BillingAddress
|
|
30
31
|
) -> Increase::CardCreateParams::BillingAddress
|
|
31
32
|
|
|
33
|
+
attr_reader cardholder_name: Increase::CardCreateParams::CardholderName?
|
|
34
|
+
|
|
35
|
+
def cardholder_name=: (
|
|
36
|
+
Increase::CardCreateParams::CardholderName
|
|
37
|
+
) -> Increase::CardCreateParams::CardholderName
|
|
38
|
+
|
|
32
39
|
attr_reader description: String?
|
|
33
40
|
|
|
34
41
|
def description=: (String) -> String
|
|
@@ -47,6 +54,7 @@ module Increase
|
|
|
47
54
|
account_id: String,
|
|
48
55
|
?authorization_controls: Increase::CardCreateParams::AuthorizationControls,
|
|
49
56
|
?billing_address: Increase::CardCreateParams::BillingAddress,
|
|
57
|
+
?cardholder_name: Increase::CardCreateParams::CardholderName,
|
|
50
58
|
?description: String,
|
|
51
59
|
?digital_wallet: Increase::CardCreateParams::DigitalWallet,
|
|
52
60
|
?entity_id: String,
|
|
@@ -57,6 +65,7 @@ module Increase
|
|
|
57
65
|
account_id: String,
|
|
58
66
|
authorization_controls: Increase::CardCreateParams::AuthorizationControls,
|
|
59
67
|
billing_address: Increase::CardCreateParams::BillingAddress,
|
|
68
|
+
cardholder_name: Increase::CardCreateParams::CardholderName,
|
|
60
69
|
description: String,
|
|
61
70
|
digital_wallet: Increase::CardCreateParams::DigitalWallet,
|
|
62
71
|
entity_id: String,
|
|
@@ -488,6 +497,22 @@ module Increase
|
|
|
488
497
|
}
|
|
489
498
|
end
|
|
490
499
|
|
|
500
|
+
type cardholder_name = { first: String, last: String, middle: String }
|
|
501
|
+
|
|
502
|
+
class CardholderName < Increase::Internal::Type::BaseModel
|
|
503
|
+
attr_accessor first: String
|
|
504
|
+
|
|
505
|
+
attr_accessor last: String
|
|
506
|
+
|
|
507
|
+
attr_reader middle: String?
|
|
508
|
+
|
|
509
|
+
def middle=: (String) -> String
|
|
510
|
+
|
|
511
|
+
def initialize: (first: String, last: String, ?middle: String) -> void
|
|
512
|
+
|
|
513
|
+
def to_hash: -> { first: String, last: String, middle: String }
|
|
514
|
+
end
|
|
515
|
+
|
|
491
516
|
type digital_wallet =
|
|
492
517
|
{ digital_card_profile_id: String, email: String, phone: String }
|
|
493
518
|
|
|
@@ -179,7 +179,7 @@ module Increase
|
|
|
179
179
|
# The Card Dispute has been won and no further action can be taken.
|
|
180
180
|
WON: :won
|
|
181
181
|
|
|
182
|
-
# The Card Dispute
|
|
182
|
+
# The Card Dispute was rejected before it was submitted to the network, either by Increase or because the user withdrew it. Please review the explanation for more details.
|
|
183
183
|
REJECTED: :rejected
|
|
184
184
|
|
|
185
185
|
def self?.values: -> ::Array[Increase::Models::CardDispute::status]
|
|
@@ -143,7 +143,7 @@ module Increase
|
|
|
143
143
|
# The Card Dispute has been won and no further action can be taken.
|
|
144
144
|
WON: :won
|
|
145
145
|
|
|
146
|
-
# The Card Dispute
|
|
146
|
+
# The Card Dispute was rejected before it was submitted to the network, either by Increase or because the user withdrew it. Please review the explanation for more details.
|
|
147
147
|
REJECTED: :rejected
|
|
148
148
|
|
|
149
149
|
def self?.values: -> ::Array[Increase::Models::CardDisputeListParams::Status::in_]
|
|
@@ -998,6 +998,7 @@ module Increase
|
|
|
998
998
|
network_details: Increase::CardPayment::Element::CardAuthorization::NetworkDetails,
|
|
999
999
|
network_identifiers: Increase::CardPayment::Element::CardAuthorization::NetworkIdentifiers,
|
|
1000
1000
|
network_risk_score: Integer?,
|
|
1001
|
+
original_card_payment_id: String?,
|
|
1001
1002
|
pending_transaction_id: String?,
|
|
1002
1003
|
physical_card_id: String?,
|
|
1003
1004
|
presentment_amount: Integer,
|
|
@@ -1051,6 +1052,8 @@ module Increase
|
|
|
1051
1052
|
|
|
1052
1053
|
attr_accessor network_risk_score: Integer?
|
|
1053
1054
|
|
|
1055
|
+
attr_accessor original_card_payment_id: String?
|
|
1056
|
+
|
|
1054
1057
|
attr_accessor pending_transaction_id: String?
|
|
1055
1058
|
|
|
1056
1059
|
attr_accessor physical_card_id: String?
|
|
@@ -1092,6 +1095,7 @@ module Increase
|
|
|
1092
1095
|
network_details: Increase::CardPayment::Element::CardAuthorization::NetworkDetails,
|
|
1093
1096
|
network_identifiers: Increase::CardPayment::Element::CardAuthorization::NetworkIdentifiers,
|
|
1094
1097
|
network_risk_score: Integer?,
|
|
1098
|
+
original_card_payment_id: String?,
|
|
1095
1099
|
pending_transaction_id: String?,
|
|
1096
1100
|
physical_card_id: String?,
|
|
1097
1101
|
presentment_amount: Integer,
|
|
@@ -1125,6 +1129,7 @@ module Increase
|
|
|
1125
1129
|
network_details: Increase::CardPayment::Element::CardAuthorization::NetworkDetails,
|
|
1126
1130
|
network_identifiers: Increase::CardPayment::Element::CardAuthorization::NetworkIdentifiers,
|
|
1127
1131
|
network_risk_score: Integer?,
|
|
1132
|
+
original_card_payment_id: String?,
|
|
1128
1133
|
pending_transaction_id: String?,
|
|
1129
1134
|
physical_card_id: String?,
|
|
1130
1135
|
presentment_amount: Integer,
|
|
@@ -296,6 +296,7 @@ module Increase
|
|
|
296
296
|
memo: String?,
|
|
297
297
|
note: String?,
|
|
298
298
|
payer: ::Array[Increase::CheckTransfer::PhysicalCheck::Payer],
|
|
299
|
+
physical_check_batch_id: String?,
|
|
299
300
|
recipient_name: String,
|
|
300
301
|
return_address: Increase::CheckTransfer::PhysicalCheck::ReturnAddress?,
|
|
301
302
|
return_address_name: String?,
|
|
@@ -317,6 +318,8 @@ module Increase
|
|
|
317
318
|
|
|
318
319
|
attr_accessor payer: ::Array[Increase::CheckTransfer::PhysicalCheck::Payer]
|
|
319
320
|
|
|
321
|
+
attr_accessor physical_check_batch_id: String?
|
|
322
|
+
|
|
320
323
|
attr_accessor recipient_name: String
|
|
321
324
|
|
|
322
325
|
attr_accessor return_address: Increase::CheckTransfer::PhysicalCheck::ReturnAddress?
|
|
@@ -336,6 +339,7 @@ module Increase
|
|
|
336
339
|
memo: String?,
|
|
337
340
|
note: String?,
|
|
338
341
|
payer: ::Array[Increase::CheckTransfer::PhysicalCheck::Payer],
|
|
342
|
+
physical_check_batch_id: String?,
|
|
339
343
|
recipient_name: String,
|
|
340
344
|
return_address: Increase::CheckTransfer::PhysicalCheck::ReturnAddress?,
|
|
341
345
|
return_address_name: String?,
|
|
@@ -351,6 +355,7 @@ module Increase
|
|
|
351
355
|
memo: String?,
|
|
352
356
|
note: String?,
|
|
353
357
|
payer: ::Array[Increase::CheckTransfer::PhysicalCheck::Payer],
|
|
358
|
+
physical_check_batch_id: String?,
|
|
354
359
|
recipient_name: String,
|
|
355
360
|
return_address: Increase::CheckTransfer::PhysicalCheck::ReturnAddress?,
|
|
356
361
|
return_address_name: String?,
|
|
@@ -562,6 +567,7 @@ module Increase
|
|
|
562
567
|
type status =
|
|
563
568
|
:pending_approval
|
|
564
569
|
| :canceled
|
|
570
|
+
| :pending_batch_completing
|
|
565
571
|
| :pending_submission
|
|
566
572
|
| :pending_reviewing
|
|
567
573
|
| :requires_attention
|
|
@@ -581,6 +587,9 @@ module Increase
|
|
|
581
587
|
# The transfer has been canceled.
|
|
582
588
|
CANCELED: :canceled
|
|
583
589
|
|
|
590
|
+
# The transfer is waiting for its Physical Check Batch to be completed.
|
|
591
|
+
PENDING_BATCH_COMPLETING: :pending_batch_completing
|
|
592
|
+
|
|
584
593
|
# The transfer is pending submission.
|
|
585
594
|
PENDING_SUBMISSION: :pending_submission
|
|
586
595
|
|
|
@@ -122,6 +122,7 @@ module Increase
|
|
|
122
122
|
attachment_file_id: String,
|
|
123
123
|
check_voucher_image_file_id: String,
|
|
124
124
|
note: String,
|
|
125
|
+
physical_check_batch_id: String,
|
|
125
126
|
return_address: Increase::CheckTransferCreateParams::PhysicalCheck::ReturnAddress,
|
|
126
127
|
return_address_name: String,
|
|
127
128
|
shipping_method: Increase::Models::CheckTransferCreateParams::PhysicalCheck::shipping_method,
|
|
@@ -149,6 +150,10 @@ module Increase
|
|
|
149
150
|
|
|
150
151
|
def note=: (String) -> String
|
|
151
152
|
|
|
153
|
+
attr_reader physical_check_batch_id: String?
|
|
154
|
+
|
|
155
|
+
def physical_check_batch_id=: (String) -> String
|
|
156
|
+
|
|
152
157
|
attr_reader return_address: Increase::CheckTransferCreateParams::PhysicalCheck::ReturnAddress?
|
|
153
158
|
|
|
154
159
|
def return_address=: (
|
|
@@ -179,6 +184,7 @@ module Increase
|
|
|
179
184
|
?attachment_file_id: String,
|
|
180
185
|
?check_voucher_image_file_id: String,
|
|
181
186
|
?note: String,
|
|
187
|
+
?physical_check_batch_id: String,
|
|
182
188
|
?return_address: Increase::CheckTransferCreateParams::PhysicalCheck::ReturnAddress,
|
|
183
189
|
?return_address_name: String,
|
|
184
190
|
?shipping_method: Increase::Models::CheckTransferCreateParams::PhysicalCheck::shipping_method,
|
|
@@ -193,6 +199,7 @@ module Increase
|
|
|
193
199
|
attachment_file_id: String,
|
|
194
200
|
check_voucher_image_file_id: String,
|
|
195
201
|
note: String,
|
|
202
|
+
physical_check_batch_id: String,
|
|
196
203
|
return_address: Increase::CheckTransferCreateParams::PhysicalCheck::ReturnAddress,
|
|
197
204
|
return_address_name: String,
|
|
198
205
|
shipping_method: Increase::Models::CheckTransferCreateParams::PhysicalCheck::shipping_method,
|
|
@@ -900,24 +900,24 @@ module Increase
|
|
|
900
900
|
end
|
|
901
901
|
|
|
902
902
|
type terms_agreement =
|
|
903
|
-
{ agreed_at: Time, ip_address: String
|
|
903
|
+
{ agreed_at: Time, ip_address: String?, terms_url: String }
|
|
904
904
|
|
|
905
905
|
class TermsAgreement < Increase::Internal::Type::BaseModel
|
|
906
906
|
attr_accessor agreed_at: Time
|
|
907
907
|
|
|
908
|
-
attr_accessor ip_address: String
|
|
908
|
+
attr_accessor ip_address: String?
|
|
909
909
|
|
|
910
910
|
attr_accessor terms_url: String
|
|
911
911
|
|
|
912
912
|
def initialize: (
|
|
913
913
|
agreed_at: Time,
|
|
914
|
-
ip_address: String
|
|
914
|
+
ip_address: String?,
|
|
915
915
|
terms_url: String
|
|
916
916
|
) -> void
|
|
917
917
|
|
|
918
918
|
def to_hash: -> {
|
|
919
919
|
agreed_at: Time,
|
|
920
|
-
ip_address: String
|
|
920
|
+
ip_address: String?,
|
|
921
921
|
terms_url: String
|
|
922
922
|
}
|
|
923
923
|
end
|
|
@@ -1393,6 +1393,7 @@ module Increase
|
|
|
1393
1393
|
beneficial_owner_identity: Increase::Entity::Validation::Issue::BeneficialOwnerIdentity?,
|
|
1394
1394
|
category: Increase::Models::Entity::Validation::Issue::category,
|
|
1395
1395
|
entity_address: Increase::Entity::Validation::Issue::EntityAddress?,
|
|
1396
|
+
entity_identity: Increase::Entity::Validation::Issue::EntityIdentity?,
|
|
1396
1397
|
entity_tax_identifier: Increase::Entity::Validation::Issue::EntityTaxIdentifier?
|
|
1397
1398
|
}
|
|
1398
1399
|
|
|
@@ -1405,6 +1406,8 @@ module Increase
|
|
|
1405
1406
|
|
|
1406
1407
|
attr_accessor entity_address: Increase::Entity::Validation::Issue::EntityAddress?
|
|
1407
1408
|
|
|
1409
|
+
attr_accessor entity_identity: Increase::Entity::Validation::Issue::EntityIdentity?
|
|
1410
|
+
|
|
1408
1411
|
attr_accessor entity_tax_identifier: Increase::Entity::Validation::Issue::EntityTaxIdentifier?
|
|
1409
1412
|
|
|
1410
1413
|
def initialize: (
|
|
@@ -1412,6 +1415,7 @@ module Increase
|
|
|
1412
1415
|
beneficial_owner_identity: Increase::Entity::Validation::Issue::BeneficialOwnerIdentity?,
|
|
1413
1416
|
category: Increase::Models::Entity::Validation::Issue::category,
|
|
1414
1417
|
entity_address: Increase::Entity::Validation::Issue::EntityAddress?,
|
|
1418
|
+
entity_identity: Increase::Entity::Validation::Issue::EntityIdentity?,
|
|
1415
1419
|
entity_tax_identifier: Increase::Entity::Validation::Issue::EntityTaxIdentifier?
|
|
1416
1420
|
) -> void
|
|
1417
1421
|
|
|
@@ -1420,6 +1424,7 @@ module Increase
|
|
|
1420
1424
|
beneficial_owner_identity: Increase::Entity::Validation::Issue::BeneficialOwnerIdentity?,
|
|
1421
1425
|
category: Increase::Models::Entity::Validation::Issue::category,
|
|
1422
1426
|
entity_address: Increase::Entity::Validation::Issue::EntityAddress?,
|
|
1427
|
+
entity_identity: Increase::Entity::Validation::Issue::EntityIdentity?,
|
|
1423
1428
|
entity_tax_identifier: Increase::Entity::Validation::Issue::EntityTaxIdentifier?
|
|
1424
1429
|
}
|
|
1425
1430
|
|
|
@@ -1469,6 +1474,7 @@ module Increase
|
|
|
1469
1474
|
type category =
|
|
1470
1475
|
:entity_tax_identifier
|
|
1471
1476
|
| :entity_address
|
|
1477
|
+
| :entity_identity
|
|
1472
1478
|
| :beneficial_owner_identity
|
|
1473
1479
|
| :beneficial_owner_address
|
|
1474
1480
|
|
|
@@ -1481,6 +1487,9 @@ module Increase
|
|
|
1481
1487
|
# The entity's address could not be validated. Update the address with the [update an entity API](/documentation/api/entities#update-an-entity.corporation.address).
|
|
1482
1488
|
ENTITY_ADDRESS: :entity_address
|
|
1483
1489
|
|
|
1490
|
+
# The entity's identity could not be verified. Update the identification with the [update an entity API](/documentation/api/entities#update-an-entity.natural_person.identification).
|
|
1491
|
+
ENTITY_IDENTITY: :entity_identity
|
|
1492
|
+
|
|
1484
1493
|
# A beneficial owner's identity could not be verified. Update the identification with the [update a beneficial owner API](/documentation/api/beneficial-owners#update-a-beneficial-owner).
|
|
1485
1494
|
BENEFICIAL_OWNER_IDENTITY: :beneficial_owner_identity
|
|
1486
1495
|
|
|
@@ -1518,6 +1527,14 @@ module Increase
|
|
|
1518
1527
|
end
|
|
1519
1528
|
end
|
|
1520
1529
|
|
|
1530
|
+
type entity_identity = { }
|
|
1531
|
+
|
|
1532
|
+
class EntityIdentity < Increase::Internal::Type::BaseModel
|
|
1533
|
+
def initialize: -> void
|
|
1534
|
+
|
|
1535
|
+
def to_hash: -> { }
|
|
1536
|
+
end
|
|
1537
|
+
|
|
1521
1538
|
type entity_tax_identifier = { }
|
|
1522
1539
|
|
|
1523
1540
|
class EntityTaxIdentifier < Increase::Internal::Type::BaseModel
|