Instance Method

transactionsByStatusAndTypeStrings(statuses:types:)

Retrieves transactions by matching multiple status and type strings.

Declaration

func transactionsByStatusAndTypeStrings(statuses: [String], types: [String]) async throws -> TransactionHistoryResponse

Parameters

statuses

A list of status values as strings (e.g., "captured").

types

A list of type strings (e.g., "sale", "refund").

Return Value

A filtered list of matching transactions.

Discussion