Initial cloud-services repo - gateway service + pkg modules
This commit is contained in:
18
pkg/common/sap.go
Normal file
18
pkg/common/sap.go
Normal file
@@ -0,0 +1,18 @@
|
||||
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"`
|
||||
}
|
||||
Reference in New Issue
Block a user