10 lines
280 B
Go
10 lines
280 B
Go
|
package ocss
|
||
|
|
||
|
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"`
|
||
|
}
|