19 lines
492 B
Go
19 lines
492 B
Go
package common
|
|
|
|
type SAPResponse struct {
|
|
ModelYear int `json:"modelYear"`
|
|
VersionDuringModelYear string `json:"versionDuringModelYear"`
|
|
ModelType string `json:"modelType"`
|
|
Features []SAPFeature `json:"features"`
|
|
}
|
|
|
|
type SAPFeature struct {
|
|
FamilyCode string `json:"familyCode"`
|
|
FeatureCode string `json:"featureCode"`
|
|
}
|
|
|
|
type CarConfigData struct {
|
|
Vin string `json:"vin"`
|
|
ConfigData string `json:"config_data"`
|
|
}
|