Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/v1_TeslaMateAPICars.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ func TeslaMateAPICarsV1(c *gin.Context) {
}
// CarExterior struct - child of Cars
type CarExterior struct {
ExteriorColor string `json:"exterior_color"` // text
SpoilerType string `json:"spoiler_type"` // text
WheelType string `json:"wheel_type"` // text
ExteriorColor NullString `json:"exterior_color"` // text
SpoilerType NullString `json:"spoiler_type"` // text
WheelType NullString `json:"wheel_type"` // text
}
// CarSettings struct - child of Cars
type CarSettings struct {
Expand Down
Loading