package models type BucketsSearchParams struct { Limit int Start int } type BucketsFilesSearchParams struct { Keywords string Extensions string Buckets string Limit int Start int } type CreditsInfo struct { Remaining int `json:"remaining"` Unlimited bool `json:"unlimited"` } type BucketsSearchResponse struct { Credits CreditsInfo `json:"credits"` Results interface{} `json:"results"` } type BucketsFilesSearchResponse struct { Credits CreditsInfo `json:"credits"` Results interface{} `json:"results"` }