Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Artist ¶
type Event ¶
type Event struct {
ID int `json:"event_id"`
Version string `json:"event_version"`
Name string `json:"event_name" db:"event_name"`
Description string `json:"event_description" db:"event_description"`
Type int `json:"event_type" db:"event_type"`
Start int `json:"event_start" db:"event_start"`
End int `json:"event_end" db:"event_end"`
IsScheduled bool `json:"event_is_scheduled" db:"event_is_scheduled"`
HasTimeslot bool `json:"event_has_timeslot" db:"event_has_timeslot"`
Include interface{} `json:"include,omitempty"`
}
type Festival ¶
type Festival struct {
ID int `json:"festival_id"`
Version string `json:"festival_version"`
Valid bool `json:"festival_is_valid" db:"festival_is_valid"`
Name string `json:"festival_name" db:"festival_name"`
Start int `json:"festival_start" db:"festival_start"`
End int `json:"festival_end" db:"festival_end"`
Description string `json:"festival_description" db:"festival_description"`
Price string `json:"festival_price" db:"festival_price"`
Include interface{} `json:"include,omitempty"`
}
type Image ¶
type Link ¶
type Location ¶
type Location struct {
ID int `json:"location_id"`
Version string `json:"location_version"`
Name string `json:"location_name" db:"location_name"`
Description string `json:"location_description" db:"location_description"`
Accessible bool `json:"location_accessible" db:"location_accessible"`
Openair bool `json:"location_openair" db:"location_openair"`
Include interface{} `json:"include,omitempty"`
}
type Place ¶
type Place struct {
ID int `json:"place_id"`
Version string `json:"place_version"`
Street string `json:"place_street" db:"place_street"`
ZIP string `json:"place_zip" db:"place_zip"`
Town string `json:"place_town" db:"place_town"`
Addition string `json:"place_street_addition" db:"place_street_addition"`
Country string `json:"place_country" db:"place_country"`
Latitude float32 `json:"place_lat" db:"place_lat"`
Longitude float32 `json:"place_lon" db:"place_lon"`
Description string `json:"place_description" db:"place_description"`
}
Click to show internal directories.
Click to hide internal directories.