Shorthand for self.oauth_request(url, 'patch') :param str url: url to send patch oauth request to :param dict data: patch data to update the service :param kwargs: extra params to send to request api :return: Response of the request :rtype: requests.Response
(self, url: str, data: Optional[dict] = None, **kwargs)
| 942 | return self.oauth_request(url, 'put', data=data, **kwargs) |
| 943 | |
| 944 | def patch(self, url: str, data: Optional[dict] = None, **kwargs) -> Response: |
| 945 | """ Shorthand for self.oauth_request(url, 'patch') |
| 946 | |
| 947 | :param str url: url to send patch oauth request to |
| 948 | :param dict data: patch data to update the service |
| 949 | :param kwargs: extra params to send to request api |
| 950 | :return: Response of the request |
| 951 | :rtype: requests.Response |
| 952 | """ |
| 953 | return self.oauth_request(url, 'patch', data=data, **kwargs) |
| 954 | |
| 955 | def delete(self, url: str, **kwargs) -> Response: |
| 956 | """ Shorthand for self.request(url, 'delete') |
no test coverage detected