TransactionLimitsQuery

public struct TransactionLimitsQuery : Sendable

The transactions limits query model.

  • The unique ID of the Account.

    Declaration

    Swift

    public let accountUuid: String
  • The unique ID of the Wallet.

    Declaration

    Swift

    public let walletUuid: String?
  • The type of the transaction.

    Declaration

    Swift

    public let transactionType: TransactionType?
  • The type of wallet.

    Declaration

    Swift

    public let walletType: WalletType?
  • Auxiliary constructor

    Declaration

    Swift

    public init(
        accountUuid: String,
        walletUuid: String? = nil,
        transactionType: TransactionType? = nil,
        walletType: WalletType? = nil)

    Parameters

    accountUuid

    The unique ID of the Account.

    walletUuid

    The unique ID of the Wallet.

    transactionType

    The type of the transaction.

    walletType

    The type of wallet.