Patch makes a PATCH request with the given URL, params, and optionally.
func (
r *Client) Patch(ctx context.Context,
path string,
params interface{},
res interface{},
opts ...option.RequestOption
) errorPatch makes a PATCH request with the given URL, params, and optionally deserializes to a response. See [Execute] documentation on the params and response.
| Name | Type | Description |
|---|---|---|
ctx* | context.Context | |
path* | string | |
params* | interface{} | |
res* | interface{} | |
opts* | ...option.RequestOption |