Project monthly budget expense object

The monthly budget for an expense category on a project. Only available for projects that are using a monthly budget and the monthly budget mode is "detailed".

Example

{
  "id": "e888aa5a-454f-447e-92f6-9ce202c550a2",
  "billableAmount": 400,
  "nonBillableAmount": 100,
  "createdAt": "2022-03-18T17:09:01.627Z",
  "project": {
    "id": "095e0780-48bf-472c-8deb-2fc3ebc7d90c",
    "name": "Vendor Portal",
    "client": {
      "id": "4cacdf11-71d1-4fbb-90ee-b091803581b0",
      "name": "Joe's Shop"
    }
  },
  "expenseCategory": {
    "id": "7cfe21fe-1d4e-422b-bec8-923fb842851c",
   	"name": "Gasoline"
  }
}

Attributes

NameTypeDescription
iduuidThe unique identifier for the object.
billableAmountnumberThe total billable amount for the expense category.
nonBillableAmountnumberThe total non-billable amount for the expense category.
createdAttimestampThe timestamp when the object was created.
projectobjectA simple object to the related project. See attributes.
expenseCategoryobjectA simple object to the related expense category. See attributes.

Project attributes

NameTypeDescription
iduuidThe unique identifier for the object.
namestringThe name of the project.
clientobjectA simple object to the related client. See attributes.

Client attributes

NameTypeDescription
iduuidThe unique identifier for the object.
namestringThe name of the client.

Expense category attributes

NameTypeDescription
iduuidThe unique identifier for the object.
namestringThe name of the expense category.