@@ -88,11 +88,12 @@ class ListTransactionsRequest
88
88
public ?string $ buyerEmailAddress = null ;
89
89
90
90
/**
91
+ * Filters the results to only get the items for which some of the buyer data contains exactly the provided `buyer_search` values.
91
92
*
92
- * @var ?string $buyerSearch
93
+ * @var ?array< string> $buyerSearch
93
94
*/
94
95
#[SpeakeasyMetadata('queryParam:style=form,explode=true,name=buyer_search ' )]
95
- public ?string $ buyerSearch = null ;
96
+ public ?array $ buyerSearch = null ;
96
97
97
98
/**
98
99
*
@@ -363,7 +364,7 @@ class ListTransactionsRequest
363
364
* @param ?string $buyerExternalIdentifier
364
365
* @param ?string $buyerId
365
366
* @param ?string $buyerEmailAddress
366
- * @param ?string $buyerSearch
367
+ * @param ?array< string> $buyerSearch
367
368
* @param ?string $ipAddress
368
369
* @param ?array<string> $status
369
370
* @param ?string $id
@@ -398,7 +399,7 @@ class ListTransactionsRequest
398
399
* @param ?bool $used3ds
399
400
* @phpstan-pure
400
401
*/
401
- public function __construct (?string $ merchantAccountId = null , ?string $ cursor = null , ?\DateTime $ createdAtLte = null , ?\DateTime $ createdAtGte = null , ?\DateTime $ updatedAtLte = null , ?\DateTime $ updatedAtGte = null , ?string $ search = null , ?string $ buyerExternalIdentifier = null , ?string $ buyerId = null , ?string $ buyerEmailAddress = null , ?string $ buyerSearch = null , ?string $ ipAddress = null , ?array $ status = null , ?string $ id = null , ?string $ paymentServiceTransactionId = null , ?string $ externalIdentifier = null , ?array $ metadata = null , ?int $ amountEq = null , ?int $ amountLte = null , ?int $ amountGte = null , ?array $ currency = null , ?array $ country = null , ?array $ paymentServiceId = null , ?string $ paymentMethodId = null , ?string $ paymentMethodLabel = null , ?string $ paymentMethodScheme = null , ?string $ paymentMethodCountry = null , ?string $ paymentMethodFingerprint = null , ?array $ method = null , ?array $ errorCode = null , ?bool $ hasRefunds = null , ?bool $ pendingReview = null , ?string $ checkoutSessionId = null , ?string $ reconciliationId = null , ?bool $ hasGiftCardRedemptions = null , ?string $ giftCardId = null , ?string $ giftCardLast4 = null , ?bool $ hasSettlements = null , ?string $ paymentMethodBin = null , ?array $ paymentSource = null , ?bool $ isSubsequentPayment = null , ?bool $ merchantInitiated = null , ?bool $ used3ds = null , ?int $ limit = 20 )
402
+ public function __construct (?string $ merchantAccountId = null , ?string $ cursor = null , ?\DateTime $ createdAtLte = null , ?\DateTime $ createdAtGte = null , ?\DateTime $ updatedAtLte = null , ?\DateTime $ updatedAtGte = null , ?string $ search = null , ?string $ buyerExternalIdentifier = null , ?string $ buyerId = null , ?string $ buyerEmailAddress = null , ?array $ buyerSearch = null , ?string $ ipAddress = null , ?array $ status = null , ?string $ id = null , ?string $ paymentServiceTransactionId = null , ?string $ externalIdentifier = null , ?array $ metadata = null , ?int $ amountEq = null , ?int $ amountLte = null , ?int $ amountGte = null , ?array $ currency = null , ?array $ country = null , ?array $ paymentServiceId = null , ?string $ paymentMethodId = null , ?string $ paymentMethodLabel = null , ?string $ paymentMethodScheme = null , ?string $ paymentMethodCountry = null , ?string $ paymentMethodFingerprint = null , ?array $ method = null , ?array $ errorCode = null , ?bool $ hasRefunds = null , ?bool $ pendingReview = null , ?string $ checkoutSessionId = null , ?string $ reconciliationId = null , ?bool $ hasGiftCardRedemptions = null , ?string $ giftCardId = null , ?string $ giftCardLast4 = null , ?bool $ hasSettlements = null , ?string $ paymentMethodBin = null , ?array $ paymentSource = null , ?bool $ isSubsequentPayment = null , ?bool $ merchantInitiated = null , ?bool $ used3ds = null , ?int $ limit = 20 )
402
403
{
403
404
$ this ->merchantAccountId = $ merchantAccountId ;
404
405
$ this ->cursor = $ cursor ;
0 commit comments