Changed the way of naming climate profiles
All checks were successful
Golan Testing / testing (1.24.x, ubuntu-latest) (push) Successful in 23s

This commit is contained in:
2025-06-05 10:53:52 -04:00
parent af28d7b2ed
commit 849a544ffa
2 changed files with 105 additions and 90 deletions

View File

@ -105,7 +105,7 @@ type VehicleData struct {
LicensePlate string `json:"licensePlate"` // NJ
LicensePlateState string `json:"licensePlateState"` // ABCDEF
SubscriptionStatus string `json:"subscriptionStatus"` // ACTIVE
SubscriptionFeatures []string `json:"subscriptionFeatures"` // "REMOTE", "SAFETY", "Retail"
SubscriptionFeatures []string `json:"subscriptionFeatures"` // "[ REMOTE ], [ SAFETY ], [ Retail | Finance3 | RetailPHEV ]""
SubscriptionPlans []string `json:"subscriptionPlans"` // []
VehicleGeoPosition GeoPosition `json:"vehicleGeoPosition"` // GeoPosition struct
AccessLevel int `json:"accessLevel"` // -1
@ -128,7 +128,7 @@ type GeoPosition struct {
Longitude float64 `json:"longitude"` // -74.401375
Speed float64 `json:"speed,omitempty"` // 62
Heading int `json:"heading,omitempty"` // 155
Timestamp string `json:"timestamp,string"` // "2021-12-22T13:14:47"
Timestamp string `json:"timestamp"` // "2021-12-22T13:14:47"
}
// type GeoPositionTime time.Time