TransactionLimits

  • Defines transaction limits for a given entity, including maximum limits per transaction.

  • TransactionLimit object specifies either a maximum transaction amount or indicates no limit.

  • limitAmount field defines the allowable transaction value, used for determining integrator options.

  • noLimit field indicates the absence of a transaction limit, also used for determining integrator options.

Defines transaction limits for the enclosing entity.

JSON representation
{
  "transactionMaxLimit": {
    object (TransactionLimit)
  }
}
Fields
transactionMaxLimit

object (TransactionLimit)

REQUIRED: Defines the value and currency of a maximum per transaction limit for the enclosing type, or states that no maximum per transaction limit exists.

TransactionLimit

Defines a transaction limit amount or the absence of a limit.

JSON representation
{

  // The following is a list of mutually exclusive fields. At most one of the
  // fields will be set in a response:
  "limitAmount": {
    object (Amount)
  },
  "noLimit": {
    object (Empty)
  }
  // End of mutually exclusive fields.
}
Fields
REQUIRED: The transaction limit case. The following is a list of mutually exclusive fields. At most one of the fields will be set in a response:
limitAmount

object (Amount)

The value of the allowable transaction. This is used to determine whether or not the user should be given this integrator as an option to process a specific transaction.

noLimit

object (Empty)

Indicates that there is no transaction limit. This is used to determine whether or not the user should be given this integrator as an option to process a specific transaction.

End of mutually exclusive fields.