SetCommonQueryParams set URL query parameters with a map for requests fired from the client.
(params map[string]string)
| 424 | // SetCommonQueryParams set URL query parameters with a map |
| 425 | // for requests fired from the client. |
| 426 | func (c *Client) SetCommonQueryParams(params map[string]string) *Client { |
| 427 | for k, v := range params { |
| 428 | c.SetCommonQueryParam(k, v) |
| 429 | } |
| 430 | return c |
| 431 | } |
| 432 | |
| 433 | // AddCommonQueryParam add a URL query parameter with a key-value |
| 434 | // pair for requests fired from the client. |