Skip to main content

OrderFee

Extra fee associated with an order

type OrderFee implements Node {
id: ID!
tenant: Tenant!
order: Order
currency: NauticalCurrency!
transactionAmount: Decimal!
transactionCurrency: NauticalCurrency!
transactionFee: Money
domiciledAmount: Decimal!
domiciledFee: Money
source: SourceFeeEnum
name: String!
notes: String!
data: JSONString!
}

Fields

OrderFee.id ● ID! non-null scalar

The ID of the object

OrderFee.tenant ● Tenant! non-null object

OrderFee.order ● Order object

OrderFee.currency ● NauticalCurrency! non-null object

Currency of the fee.

OrderFee.transactionAmount ● Decimal! non-null scalar

OrderFee.transactionCurrency ● NauticalCurrency! non-null object

Transaction currency of the fee.

OrderFee.transactionFee ● Money object

OrderFee.domiciledAmount ● Decimal! non-null scalar

OrderFee.domiciledFee ● Money object

OrderFee.source ● SourceFeeEnum enum

Source fee type.

OrderFee.name ● String! non-null scalar

OrderFee.notes ● String! non-null scalar

OrderFee.data ● JSONString! non-null scalar

Interfaces

Node interface

An object with an ID

Member Of

Order object ● OrderFeeCreate object ● OrderFeeDelete object

Was this page helpful?