@@ -119,6 +119,7 @@ class Details:
119119 origin_team : Optional [str ]
120120 target_team : Optional [str ]
121121 is_internal_integration : Optional [bool ]
122+ cleared_resolution : Optional [str ]
122123 app_owner_id : Optional [str ]
123124 bot_scopes : Optional [List [str ]]
124125 new_scopes : Optional [List [str ]]
@@ -178,6 +179,7 @@ def __init__(
178179 origin_team : Optional [str ] = None ,
179180 target_team : Optional [str ] = None ,
180181 is_internal_integration : Optional [bool ] = None ,
182+ cleared_resolution : Optional [str ] = None ,
181183 app_owner_id : Optional [str ] = None ,
182184 bot_scopes : Optional [List [str ]] = None ,
183185 new_scopes : Optional [List [str ]] = None ,
@@ -234,6 +236,7 @@ def __init__(
234236 self .origin_team = origin_team
235237 self .target_team = target_team
236238 self .is_internal_integration = is_internal_integration
239+ self .cleared_resolution = cleared_resolution
237240 self .app_owner_id = app_owner_id
238241 self .bot_scopes = bot_scopes
239242 self .new_scopes = new_scopes
0 commit comments