package models type BSSIDParams struct { BSSID string All bool Map bool } type LocationInfo struct { Latitude float64 `json:"latitude"` Longitude float64 `json:"longitude"` Accuracy int `json:"accuracy"` } type BSSIDResult struct { BSSID string `json:"bssid"` Location *LocationInfo `json:"location"` MapURL string `json:"map_url,omitempty"` } type BSSIDLookupResponse struct { BSSID string `json:"bssid"` Results []BSSIDResult `json:"results"` MapURL string `json:"map_url,omitempty"` } type ErrorResponse struct { Error string `json:"error"` }