16 lines
313 B
Go
16 lines
313 B
Go
package common
|
|
|
|
type CarSearch struct {
|
|
Search string `json:"search" validate:"max=1024"`
|
|
VINs string `json:"vins" validate:"omitempty"`
|
|
Online *CarOnlineFilter
|
|
NoEU bool `json:"no_eu", validate:"omitempty"`
|
|
Car
|
|
}
|
|
|
|
type CarOnlineFilter struct {
|
|
Online *bool
|
|
HMI *bool
|
|
VINsOnline []string
|
|
}
|