OrderFee
Extra fee associated with an order.
type OrderFee implements Node {
id: ID!
name: String!
notes: String!
transactionAmount: Decimal!
domiciledAmount: Decimal!
currency: NauticalCurrency!
transactionCurrency: NauticalCurrency!
source: SourceFeeEnum!
tenant: Tenant!
order: Order
transactionFee: Money
domiciledFee: Money
data: JSON!
}
Fields
OrderFee.id ● ID! non-null scalar
The Globally Unique ID of this object
OrderFee.name ● String! non-null scalar
Name of the fee
OrderFee.notes ● String! non-null scalar
Notes about the fee
OrderFee.transactionAmount ● Decimal! non-null scalar
OrderFee.domiciledAmount ● Decimal! non-null scalar
OrderFee.currency ● NauticalCurrency! non-null object
Currency of the fee
OrderFee.transactionCurrency ● NauticalCurrency! non-null object
Transaction currency of the fee
OrderFee.source ● SourceFeeEnum! non-null enum
Source of the fee
OrderFee.tenant ● Tenant! non-null object
The tenant this fee belongs to
OrderFee.order ● Order object
The order this fee belongs to
OrderFee.transactionFee ● Money object
Transaction fee as Money
OrderFee.domiciledFee ● Money object
Domiciled fee as Money
OrderFee.data ● JSON! non-null scalar
Additional data as JSON
Interfaces
Node interface
An object with a Globally Unique ID
Member Of
Order object ● OrderFeeCreate object ● OrderFeeDelete object