package remote type loadListsResponse struct { Total int `json:"total"` Lists []List `json:"list"` } type List struct { ID string `json:"id"` Name string `json:"name"` }