package common const ( LockDoor string = "lock" UnlockDoor string = "unlock" ) type CarCommandLocks struct { LeftFront string `json:"left_front,omitempty"` RightFront string `json:"right_front,omitempty"` LeftRear string `json:"left_rear,omitempty"` RightRear string `json:"right_rear,omitempty"` Trunk string `json:"trunk,omitempty"` }