var (
ErrGoogleAPIReportedProblem = herror.New("google api reported problem")
ErrCouldNotFindAvgBusyData = errors.New("could not find average busy data")
ErrCouldNotFindCurBusyData = errors.New("could not find current busy data")
)
type PlaceDetail struct {
Id PlaceId `json:"id"`
Url string `json:"url"`
Timestamp time.Time `json:"timestamp"`
Lat float32 `json:"lat"`
Long float32 `json:"long"`
AvgBusy int `json:"average_busy,omitempty"`
CurBusy int `json:"current_busy,omitempty"`
Error error `json:"error,omitempty"`
}