package models type BreachForumSearchParams struct { Search string MaxHits int } type BreachForumSearchResponse struct { Query string `json:"query"` MaxHits int `json:"max_hits"` Results interface{} `json:"results"` }