We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8fe92ff commit 739bcccCopy full SHA for 739bccc
sdk/diffgram/schema/attribute.py
@@ -36,7 +36,8 @@ def update(self,
36
name = None,
37
is_global = False,
38
label_file_list = None,
39
- global_type = 'file'
+ is_read_only = False,
40
+ global_type = 'file',
41
):
42
url = f'/api/v1/project/{self.project.project_string_id}/attribute/group/update'
43
payload = {
@@ -47,7 +48,8 @@ def update(self,
47
48
"kind": kind,
49
"is_global": is_global,
50
"label_file_list": label_file_list,
- "global_type": global_type
51
+ "global_type": global_type,
52
+ "is_read_only": is_read_only
53
}
54
55
response = self.project.session.post(url = self.project.host + url, json=payload)
0 commit comments