The budget for an expense category on a project. Only available for projects that are using a budget and the budget mode is either "detailed"
or "aggregated"
.
Example
{
"id": "58cf3450-dc0f-4b59-b875-e00bc3e4651e",
"billableAmount": 2000,
"nonBillableAmount": 100,
"createdAt": "2022-03-18T19:15:08.431Z",
"project": {
"id": "095e0780-48bf-472c-8deb-2fc3ebc7d90c",
"name": "Vendor Portal",
"client": {
"id": "4cacdf11-71d1-4fbb-90ee-b091803581b0",
"name": "Joe's Shop"
}
},
"expenseCategory": {
"id": "175e0635-ac9e-4880-8492-07fa584f1b15",
"name": "Airfare"
}
}
Attributes
Name | Type | Description |
---|---|---|
id | uuid | The unique identifier for the object. |
billableAmount | number | The total billable amount for the expense category. |
nonBillableAmount | number | The total non-billable amount for the expense category. |
createdAt | timestamp | The timestamp when the object was created. |
project | object | A simple object to the related project. See attributes. |
expenseCategory | object | A simple object to the related expense category. See attributes. |
Project attributes
Name | Type | Description |
---|---|---|
id | uuid | The unique identifier for the object. |
name | string | The name of the project. |
client | object | A simple object to the related client. See attributes. |
Client attributes
Name | Type | Description |
---|---|---|
id | uuid | The unique identifier for the object. |
name | string | The name of the client. |
Expense category attributes
Name | Type | Description |
---|---|---|
id | uuid | The unique identifier for the object. |
name | string | The name of the expense category. |