Service History
Represents a service history entry for a vehicle — a past service invoice with its labor and part lines.
| Property | Summary |
|---|---|
ServiceType string |
The type of service performed (e.g., Warranty, Paid, Internal). |
ServiceDate DateTime? |
The date the service was performed. |
Mileage int? |
The vehicle's odometer reading at the time of service. |
CompanyName string |
The localized name of the company that performed the service. |
BranchName string |
The localized name of the branch that performed the service. |
AccountNumber string |
The dealer account number. |
InvoiceNumber string |
The service invoice number. |
ParentInvoiceNumber string |
The parent invoice number (in case of credit/debit notes). |
JobNumber string |
The job/work order number. |
LaborLines IEnumerable<VehicleLaborDTO> |
The labor lines on this service invoice. |
PartLines IEnumerable<VehiclePartDTO> |
The part lines on this service invoice. |