| Field | Type | Required | Description | Example |
|---|---|---|---|---|
line_number |
OptionalNullable[int] | ➖ | Line number of the resource | 1 |
expense_category |
Optional[models.LinkedExpenseCategory] | ➖ | The expense category this entity is linked to. | |
account |
OptionalNullable[models.LinkedLedgerAccount] | ➖ | N/A | |
description |
OptionalNullable[str] | ➖ | The description of the expense line item. | Flight to New York |
quantity |
OptionalNullable[float] | ➖ | N/A | 1 |
unit_price |
OptionalNullable[float] | ➖ | N/A | 27500.5 |
amount |
float | ✔️ | The amount of the expense line item. | 275 |
tax_rate |
Optional[models.LinkedTaxRateInput] | ➖ | N/A | |
tax_amount |
OptionalNullable[float] | ➖ | Tax amount | 27.5 |
total_amount |
OptionalNullable[float] | ➖ | The total amount of the expense line item including tax. | 302.5 |
transaction_date |
datetime | ➖ | The date of the individual expense. | 2024-05-15 |
billable |
OptionalNullable[bool] | ➖ | Whether the expense is billable to a customer. | true |
reimbursable |
OptionalNullable[bool] | ➖ | Whether the expense is reimbursable to the employee. | true |
customer |
OptionalNullable[models.LinkedCustomerInput] | ➖ | The customer this entity is linked to. | |
department |
OptionalNullable[models.LinkedDepartmentInput] | ➖ | N/A | |
location |
OptionalNullable[models.LinkedLocationInput] | ➖ | N/A | |
tracking_categories |
List[Nullable[models.LinkedTrackingCategory]] | ➖ | A list of linked tracking categories. | |
receipt_url |
OptionalNullable[str] | ➖ | URL to the receipt or attachment for this expense line. | https://example.com/receipts/123.pdf |
currency |
OptionalNullable[models.Currency] | ➖ | Indicates the associated currency for an amount of money. Values correspond to ISO 4217. | USD |