Commit from m3o/m3o action

This commit is contained in:
m3o-actions
2021-11-22 12:25:01 +00:00
parent c2fb06ae73
commit ed691ec515
38 changed files with 806 additions and 806 deletions

View File

@@ -31,33 +31,33 @@ type LookupRequest struct {
type LookupResponse struct {
// co2 emmissions
Co2emissions float64 `json:"co2emissions"`
Co2Emissions float64 `json:"co2_emissions"`
// colour of vehicle
Colour string `json:"colour"`
// engine capacity
EngineCapacity int32 `json:"engineCapacity"`
EngineCapacity int32 `json:"engine_capacity"`
// fuel type e.g petrol, diesel
FuelType string `json:"fuelType"`
FuelType string `json:"fuel_type"`
// date of last v5 issue
LastV5issued string `json:"lastV5issued"`
LastV5Issued string `json:"last_v5_issued"`
// make of vehicle
Make string `json:"make"`
// month of first registration
MonthOfFirstRegistration string `json:"monthOfFirstRegistration"`
MonthOfFirstRegistration string `json:"month_of_first_registration"`
// mot expiry
MotExpiry string `json:"motExpiry"`
MotExpiry string `json:"mot_expiry"`
// mot status
MotStatus string `json:"motStatus"`
MotStatus string `json:"mot_status"`
// registration number
Registration string `json:"registration"`
// tax due data
TaxDueDate string `json:"taxDueDate"`
TaxDueDate string `json:"tax_due_date"`
// tax status
TaxStatus string `json:"taxStatus"`
TaxStatus string `json:"tax_status"`
// type approvale
TypeApproval string `json:"typeApproval"`
TypeApproval string `json:"type_approval"`
// wheel plan
Wheelplan string `json:"wheelplan"`
// year of manufacture
YearOfManufacture int32 `json:"yearOfManufacture"`
YearOfManufacture int32 `json:"year_of_manufacture"`
}