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 CreditorShape from \Increase\WireTransfers\WireTransferCreateParams\Creditor
18
19
* @phpstan-import-type RemittanceShape from \Increase\WireTransfers\WireTransferCreateParams\Remittance
19
20
* @phpstan-import-type DebtorShape from \Increase\WireTransfers\WireTransferCreateParams\Debtor
20
21
* @phpstan-import-type CreatedAtShape from \Increase\WireTransfers\WireTransferListParams\CreatedAt
22
+
* @phpstan-import-type StatusShape from \Increase\WireTransfers\WireTransferListParams\Status
21
23
* @phpstan-import-type RequestOpts from \Increase\RequestOptions
22
24
*/
23
25
interface WireTransfersContract
@@ -77,6 +79,7 @@ public function retrieve(
77
79
* @param string $externalAccountID filter Wire Transfers to those made to the specified External Account
78
80
* @param string $idempotencyKey Filter records to the one with the specified `idempotency_key` you chose for that object. This value is unique across Increase and is used to ensure that a request is only processed once. Learn more about [idempotency](https://increase.com/documentation/idempotency-keys).
79
81
* @param int $limit Limit the size of the list that is returned. The default (and maximum) is 100 objects.
* @param string $externalAccountID filter Wire Transfers to those made to the specified External Account
126
128
* @param string $idempotencyKey Filter records to the one with the specified `idempotency_key` you chose for that object. This value is unique across Increase and is used to ensure that a request is only processed once. Learn more about [idempotency](https://increase.com/documentation/idempotency-keys).
127
129
* @param int $limit Limit the size of the list that is returned. The default (and maximum) is 100 objects.
* Return results whose value is in the provided list. For GET requests, this should be encoded as a comma-delimited string, such as `?in=one,two,three`.
22
+
*
23
+
* @var list<value-of<In>>|null $in
24
+
*/
25
+
#[Optional(list: In::class)]
26
+
public ?array$in;
27
+
28
+
publicfunction__construct()
29
+
{
30
+
$this->initialize();
31
+
}
32
+
33
+
/**
34
+
* Construct an instance from the required parameters.
35
+
*
36
+
* You must use named parameters to construct any parameters with a default value.
37
+
*
38
+
* @param list<In|value-of<In>>|null $in
39
+
*/
40
+
publicstaticfunctionwith(?array$in = null): self
41
+
{
42
+
$self = newself;
43
+
44
+
null !== $in && $self['in'] = $in;
45
+
46
+
return$self;
47
+
}
48
+
49
+
/**
50
+
* Return results whose value is in the provided list. For GET requests, this should be encoded as a comma-delimited string, such as `?in=one,two,three`.
0 commit comments