Properties
| Name | Type | Description |
|---|---|---|
| id | string | The unique numerical ID of the tax class. A read-only value which is automatically assigned and increments sequentially. |
| name | string | The name of the tax class. |
| created_at | string | Date and time of the tax class' creation. Read-Only. |
| updated_at | string | Date and time when the tax class was last updated. Read-Only. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/taxClass_Full",
"title": "taxClass_Full",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The unique numerical ID of the tax class. A read-only value which is automatically assigned and increments sequentially.",
"example": "1"
},
"name": {
"type": "string",
"description": "The name of the tax class.",
"example": "Shipping"
},
"created_at": {
"type": "string",
"description": "Date and time of the tax class' creation. Read-Only.",
"format": "date-time",
"example": "2018-05-07 20:14:17+00:00"
},
"updated_at": {
"type": "string",
"description": "Date and time when the tax class was last updated. Read-Only.",
"format": "date-time",
"example": "2018-05-07 20:14:17+00:00"
}
},
"example": {
"id": "1",
"name": "Shipping",
"created_at": "1973-01-20 21:34:57.903000+00:00",
"updated_at": "1990-12-30 00:29:23.515000+00:00"
},
"x-internal": false
}