You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* @phpstan-import-type AccountTransferInstructionShape from \Increase\PendingTransactions\PendingTransaction\Source\AccountTransferInstruction
29
31
* @phpstan-import-type ACHTransferInstructionShape from \Increase\PendingTransactions\PendingTransaction\Source\ACHTransferInstruction
32
+
* @phpstan-import-type BlockchainOfframpTransferIntentionShape from \Increase\PendingTransactions\PendingTransaction\Source\BlockchainOfframpTransferIntention
33
+
* @phpstan-import-type BlockchainOnrampTransferInstructionShape from \Increase\PendingTransactions\PendingTransaction\Source\BlockchainOnrampTransferInstruction
30
34
* @phpstan-import-type CardAuthorizationShape from \Increase\PendingTransactions\PendingTransaction\Source\CardAuthorization
31
35
* @phpstan-import-type CardPushTransferInstructionShape from \Increase\PendingTransactions\PendingTransaction\Source\CardPushTransferInstruction
32
36
* @phpstan-import-type CheckDepositInstructionShape from \Increase\PendingTransactions\PendingTransaction\Source\CheckDepositInstruction
@@ -74,6 +80,18 @@ final class Source implements BaseModel
74
80
#[Required('ach_transfer_instruction')]
75
81
public ?ACHTransferInstruction$achTransferInstruction;
76
82
83
+
/**
84
+
* A Blockchain Off-Ramp Transfer Intention object. This field will be present in the JSON response if and only if `category` is equal to `blockchain_offramp_transfer_intention`.
public ?BlockchainOfframpTransferIntention$blockchainOfframpTransferIntention;
88
+
89
+
/**
90
+
* A Blockchain On-Ramp Transfer Instruction object. This field will be present in the JSON response if and only if `category` is equal to `blockchain_onramp_transfer_instruction`.
public ?BlockchainOnrampTransferInstruction$blockchainOnrampTransferInstruction;
94
+
77
95
/**
78
96
* A Card Authorization object. This field will be present in the JSON response if and only if `category` is equal to `card_authorization`. Card Authorizations are temporary holds placed on a customers funds with the intent to later clear a transaction.
79
97
*/
@@ -164,6 +182,8 @@ final class Source implements BaseModel
164
182
* Source::with(
165
183
* accountTransferInstruction: ...,
166
184
* achTransferInstruction: ...,
185
+
* blockchainOfframpTransferIntention: ...,
186
+
* blockchainOnrampTransferInstruction: ...,
167
187
* cardAuthorization: ...,
168
188
* cardPushTransferInstruction: ...,
169
189
* category: ...,
@@ -186,6 +206,8 @@ final class Source implements BaseModel
@@ -293,6 +321,34 @@ public function withACHTransferInstruction(
293
321
return$self;
294
322
}
295
323
324
+
/**
325
+
* A Blockchain Off-Ramp Transfer Intention object. This field will be present in the JSON response if and only if `category` is equal to `blockchain_offramp_transfer_intention`.
* A Blockchain On-Ramp Transfer Instruction object. This field will be present in the JSON response if and only if `category` is equal to `blockchain_onramp_transfer_instruction`.
* A Card Authorization object. This field will be present in the JSON response if and only if `category` is equal to `card_authorization`. Card Authorizations are temporary holds placed on a customers funds with the intent to later clear a transaction.
* A Blockchain Off-Ramp Transfer Intention object. This field will be present in the JSON response if and only if `category` is equal to `blockchain_offramp_transfer_intention`.
0 commit comments