object WorkOrderFeeType
Fields
| Field | Type | Description |
|---|---|---|
id | String | Public API ID for this identifiable. |
legacy_id | BigInt | Numeric legacy ID for this identifiable; use only where legacy IDs are required. |
unit_rate | Decimal | Monetary amount as a decimal value in the record currency; not cents. |
labor_unit | LaborUnit | Labor unit for this work order fee. |
quantity | Decimal | Monetary amount as a decimal value in the record currency; not cents. |
description | String | Human-readable description for this work order fee. |
created_at | DateTime | Created at as an ISO-8601 datetime, returned in UTC unless otherwise noted. |
updated_at | DateTime | Updated at as an ISO-8601 datetime, returned in UTC unless otherwise noted. |
Referenced By
Example
{
"id": "UmVjb3JkOjEyMzQ=",
"legacy_id": 1234,
"unit_rate": 19.99,
"labor_unit": "{labor_unit: \"HOURS\", unit_rate: 19.99, quantity: 2}",
"quantity": 2,
"description": "Customer requested expedited handling.",
"created_at": "2026-07-09T15:30:00Z",
"updated_at": "2026-07-09T15:30:00Z"
}