Files
cloud-services/pkg/common/hmi_session.go

13 lines
352 B
Go

package common
type HMISessionMessage struct {
Handler string `json:"handler"`
Data HMISessionData `json:"data"`
}
type HMISessionData struct {
Salt string `json:"salt,omitempty"`
SessionID string `json:"session_id,omitempty"`
VIN string `json:"vin,omitempty"` // FOR INSECURE ENDPOINT - DELETE THIS IN FUTURE ITERATIONS
}