ListBeneficiariesQuery
public struct ListBeneficiariesQuery : Sendable
The beneficiaries query model.
-
The number of items per page.
Declaration
Swift
public let limit: UInt? -
Start after offset amount of items.
Declaration
Swift
public let offset: UInt? -
The type of beneficiary.
Declaration
Swift
public let type: String? -
The status of the beneficiary.
Declaration
Swift
public let status: BeneficiaryStatus? -
The legal type of the beneficiary.
Declaration
Swift
public let legalType: BeneficiaryLegalType? -
Exclude beneficiaries without transactions.
Declaration
Swift
public let withTransactionsOnly: Bool? -
Auxiliary constructor.
Declaration
Swift
public init(limit: UInt? = nil, offset: UInt? = nil, type: String? = nil, status: BeneficiaryStatus? = nil, legalType: BeneficiaryLegalType? = nil, withTransactionsOnly: Bool? = nil)Parameters
limitThe number of items per page.
offsetStart after offset amount of items.
typeThe type of beneficiary.
statusThe status of the beneficiary.
legalTypeThe legal type of the beneficiary.
withTransactionsOnlyExclude beneficiaries without transactions.
View on GitHub