package models type BSSIDParams struct { BSSID string All bool Google bool OSM 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"` GoogleMap string `json:"google_map,omitempty"` OpenStreetMap string `json:"openstreetmap,omitempty"` } type BSSIDLookupResponse []BSSIDResult type ErrorResponse struct { Error string `json:"error"` } type BreachForumSearchParams struct { Search string MaxHits int } type BreachForumSearchResponse struct { Query string `json:"query"` MaxHits int `json:"max_hits"` Results interface{} `json:"results"` }