|
package standardcovoiturage
|
|
|
|
type Preferences struct {
|
|
Smoking *bool `json:"smoking,omitempty"`
|
|
Animals *bool `json:"animals,omitempty"`
|
|
Music *bool `json:"music,omitempty"`
|
|
IsTalker *bool `json:"isTalker,omitempty"`
|
|
LuggageSize *int64 `json:"luggageSize,omitempty"`
|
|
}
|