Skip to main content

Tax

Defines a tax item that can be applied to any payable items.

type Tax {
amount: Float
createdAt: DateTime!
createdBy: String
id: ID!
lastModifiedAt: DateTime!
lastModifiedBy: String
name: String!
percentage: Float
type: TaxType!
uniqueCode: String
}

Fields

Tax.amount ● Float scalar

The fixed amount of the tax (applicable for fixed amount tax types). Optional.

Tax.createdAt ● DateTime! non-null scalar

The date and time the record was created.

Tax.createdBy ● String scalar

UTF-8 string value that represents the username of the user who created the record. Optional.

Tax.id ● ID! non-null scalar

The unique identifier for a tax.

Tax.lastModifiedAt ● DateTime! non-null scalar

The date and time the record was last modified.

Tax.lastModifiedBy ● String scalar

UTF-8 string value that represents the username of the user who last modified the record. Optional.

Tax.name ● String! non-null scalar

A UTF-8 string representing the name of the tax.

Tax.percentage ● Float scalar

The percentage value of the tax (applicable for percantage based tax types). Optional.

Tax.type ● TaxType! non-null enum

The type of the tax.

Tax.uniqueCode ● String scalar

A customer supplied, UTF-8 string value that represents a unique code for the tax. Optional.

The value must be unique across all taxes for an event.

Member Of

InvoiceLineItemTax object