TaxableObject
Taxable object.
type TaxableObject {
sourceObject: TaxSourceObject!
pricesEnteredWithTax: Boolean!
currency: String!
shippingPrice: Money!
address: Address
discounts: [TaxableObjectDiscount!]!
lines: [TaxableObjectLine!]!
channel: Channel!
}
Fields
TaxableObject.sourceObject
● TaxSourceObject!
non-null union miscellaneous
The source object related to this tax object.
TaxableObject.pricesEnteredWithTax
● Boolean!
non-null scalar miscellaneous
Determines if prices contain entered tax..
TaxableObject.currency
● String!
non-null scalar miscellaneous
The currency of the object.
TaxableObject.shippingPrice
● Money!
non-null object miscellaneous
The price of shipping method, includes shipping voucher discount if applied.
TaxableObject.address
● Address
object users
The address data.
TaxableObject.discounts
● [TaxableObjectDiscount!]!
non-null object taxes
List of discounts.
TaxableObject.lines
● [TaxableObjectLine!]!
non-null object taxes
List of lines assigned to the object.
TaxableObject.channel
● Channel!
non-null object channels
Member Of
CalculateTaxes
object