interface TaxCategory {
    createdAt: string;
    createdBy?: CreatedBy;
    description?: string;
    id: string;
    key?: string;
    lastModifiedAt: string;
    lastModifiedBy?: LastModifiedBy;
    name: string;
    rates: TaxRate[];
    version: number;
}

Hierarchy

Properties

createdAt: string

Date and time (UTC) the TaxCategory was initially created.

createdBy?: CreatedBy

Present on resources created after 1 February 2019 except for events not tracked.

description?: string

Description of the TaxCategory.

id: string

Unique identifier of the TaxCategory.

key?: string

User-defined unique identifier of the TaxCategory.

lastModifiedAt: string

Date and time (UTC) the TaxCategory was last updated.

lastModifiedBy?: LastModifiedBy

Present on resources created after 1 February 2019 except for events not tracked.

name: string

Name of the TaxCategory.

rates: TaxRate[]

Tax rates and subrates of states and countries. Each TaxRate in the array has a unique ID.

version: number

Current version of the TaxCategory.

Generated using TypeDoc