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
31
32
* @phpstan-import-type ACHTransferInstructionShape from \Increase\PendingTransactions\PendingTransaction\Source\ACHTransferInstruction
33
+
* @phpstan-import-type BlockchainOfframpTransferInstructionShape from \Increase\PendingTransactions\PendingTransaction\Source\BlockchainOfframpTransferInstruction
32
34
* @phpstan-import-type BlockchainOfframpTransferIntentionShape from \Increase\PendingTransactions\PendingTransaction\Source\BlockchainOfframpTransferIntention
33
35
* @phpstan-import-type BlockchainOnrampTransferInstructionShape from \Increase\PendingTransactions\PendingTransaction\Source\BlockchainOnrampTransferInstruction
34
36
* @phpstan-import-type CardAuthorizationShape from \Increase\PendingTransactions\PendingTransaction\Source\CardAuthorization
@@ -80,6 +83,12 @@ final class Source implements BaseModel
80
83
#[Required('ach_transfer_instruction')]
81
84
public ?ACHTransferInstruction$achTransferInstruction;
82
85
86
+
/**
87
+
* A Blockchain Off-Ramp Transfer Instruction object. This field will be present in the JSON response if and only if `category` is equal to `blockchain_offramp_transfer_instruction`.
public ?BlockchainOfframpTransferInstruction$blockchainOfframpTransferInstruction;
91
+
83
92
/**
84
93
* 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`.
85
94
*/
@@ -182,6 +191,7 @@ final class Source implements BaseModel
182
191
* Source::with(
183
192
* accountTransferInstruction: ...,
184
193
* achTransferInstruction: ...,
194
+
* blockchainOfframpTransferInstruction: ...,
185
195
* blockchainOfframpTransferIntention: ...,
186
196
* blockchainOnrampTransferInstruction: ...,
187
197
* cardAuthorization: ...,
@@ -206,6 +216,7 @@ final class Source implements BaseModel
@@ -321,6 +335,20 @@ public function withACHTransferInstruction(
321
335
return$self;
322
336
}
323
337
338
+
/**
339
+
* A Blockchain Off-Ramp Transfer Instruction object. This field will be present in the JSON response if and only if `category` is equal to `blockchain_offramp_transfer_instruction`.
* 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 Off-Ramp Transfer Instruction object. This field will be present in the JSON response if and only if `category` is equal to `blockchain_offramp_transfer_instruction`.
0 commit comments