SetCommonPathParam set a path parameter for requests fired from the client.
(key, value string)
| 461 | |
| 462 | // SetCommonPathParam set a path parameter for requests fired from the client. |
| 463 | func (c *Client) SetCommonPathParam(key, value string) *Client { |
| 464 | c.pathParams()[key] = value |
| 465 | return c |
| 466 | } |
| 467 | |
| 468 | // SetCommonPathParams set path parameters for requests fired from the client. |
| 469 | func (c *Client) SetCommonPathParams(pathParams map[string]string) *Client { |