(
path string,
requestBody interface{},
responseBody interface{},
)
| 38 | } |
| 39 | |
| 40 | func (c *client) Patch( |
| 41 | path string, |
| 42 | requestBody interface{}, |
| 43 | responseBody interface{}, |
| 44 | ) (statusCode int, err error) { |
| 45 | return c.request( |
| 46 | http.MethodPatch, |
| 47 | path, |
| 48 | requestBody, |
| 49 | responseBody, |
| 50 | ) |
| 51 | } |
| 52 | |
| 53 | func (c *client) Delete( |
| 54 | path string, |