@@ -30,6 +30,29 @@ def __init__(self, api_client=None):
3030 api_client = ApiClient (Configuration ())
3131 self .api_client = api_client
3232
33+ self ._delete_issue_assignee_endpoint = _Endpoint (
34+ settings = {
35+ "response_type" : None ,
36+ "auth" : ["apiKeyAuth" , "appKeyAuth" , "AuthZ" ],
37+ "endpoint_path" : "/api/v2/error-tracking/issues/{issue_id}/assignee" ,
38+ "operation_id" : "delete_issue_assignee" ,
39+ "http_method" : "DELETE" ,
40+ "version" : "v2" ,
41+ },
42+ params_map = {
43+ "issue_id" : {
44+ "required" : True ,
45+ "openapi_types" : (str ,),
46+ "attribute" : "issue_id" ,
47+ "location" : "path" ,
48+ },
49+ },
50+ headers_map = {
51+ "accept" : ["*/*" ],
52+ },
53+ api_client = api_client ,
54+ )
55+
3356 self ._get_issue_endpoint = _Endpoint (
3457 settings = {
3558 "response_type" : (IssueResponse ,),
@@ -137,6 +160,23 @@ def __init__(self, api_client=None):
137160 api_client = api_client ,
138161 )
139162
163+ def delete_issue_assignee (
164+ self ,
165+ issue_id : str ,
166+ ) -> None :
167+ """Remove the assignee of an issue.
168+
169+ Remove the assignee of an issue by ``issue_id``.
170+
171+ :param issue_id: The identifier of the issue.
172+ :type issue_id: str
173+ :rtype: None
174+ """
175+ kwargs : Dict [str , Any ] = {}
176+ kwargs ["issue_id" ] = issue_id
177+
178+ return self ._delete_issue_assignee_endpoint .call_with_http_info (** kwargs )
179+
140180 def get_issue (
141181 self ,
142182 issue_id : str ,
0 commit comments