File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -3783,6 +3783,8 @@ type RegistrarAPISearchAvailableDomainsRequest struct {
37833783 Domains []string `json:"-"`
37843784 // Tlds: array of tlds to search on
37853785 Tlds []string `json:"-"`
3786+ // StrictSearch: search exact match
3787+ StrictSearch bool `json:"-"`
37863788}
37873789
37883790// SearchAvailableDomains: search available domains
@@ -3797,6 +3799,7 @@ func (s *RegistrarAPI) SearchAvailableDomains(req *RegistrarAPISearchAvailableDo
37973799 query := url.Values {}
37983800 parameter .AddToQuery (query , "domains" , req .Domains )
37993801 parameter .AddToQuery (query , "tlds" , req .Tlds )
3802+ parameter .AddToQuery (query , "strict_search" , req .StrictSearch )
38003803
38013804 scwReq := & scw.ScalewayRequest {
38023805 Method : "GET" ,
You can’t perform that action at this time.
0 commit comments