File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -820,7 +820,7 @@ class MergeRequestModel(BaseModel):
820
820
with_labels_details : Optional [bool ] = None
821
821
with_merge_status_recheck : Optional [bool ] = None
822
822
wip : Optional [str ] = None
823
- title : str
823
+ title : Optional [ str ]
824
824
allow_collaboration : Optional [bool ] = None
825
825
allow_maintainer_to_push : Optional [bool ] = None
826
826
approvals_before_merge : Optional [int ] = None
@@ -1172,8 +1172,8 @@ class MergeRequestRuleModel(BaseModel):
1172
1172
"""
1173
1173
project_id : Union [int , str ] = None
1174
1174
approval_rule_id : Optional [Union [int , str ]] = None
1175
- approvals_required : int = None
1176
- name : str = None
1175
+ approvals_required : Optional [ int ] = None
1176
+ name : Optional [ str ] = None
1177
1177
applies_to_all_protected_branches : Optional [bool ] = None
1178
1178
group_ids : Optional [List [int ]] = None
1179
1179
merge_request_iid : Optional [Union [int , str ]] = None
You can’t perform that action at this time.
0 commit comments