PaymentTypeFee
The details of the fee associated with a payment type.
type PaymentTypeFee {
account: Account
type: PaymentTypeFeeType!
value: NonNegativeFloat!
}
Fields
PaymentTypeFee.account
● Account
object
The account on which the fee component of the payment will be transferred. Optional.
This will be null
if type
is NONE
.
PaymentTypeFee.type
● PaymentTypeFeeType!
non-null enum
The type of fee.
PaymentTypeFee.value
● NonNegativeFloat!
non-null scalar
The value of the fee.
Rules:
- If
type
isFIXED_AMOUNT
, then this will be the fixed amount. - If
type
isPERCENTAGE
, then this will represent the precentage applied to calculate the payment fee.
Member Of
PaymentType
object