@@ -15,7 +15,7 @@ class FileContainerItem(Model):
15
15
:param container_id: Container Id.
16
16
:type container_id: long
17
17
:param content_id:
18
- :type content_id: list of int
18
+ :type content_id: str
19
19
:param content_location: Download Url for the content of this item.
20
20
:type content_location: str
21
21
:param created_by: Creator.
@@ -27,7 +27,7 @@ class FileContainerItem(Model):
27
27
:param file_encoding: Encoding of the file. Zero if not a file.
28
28
:type file_encoding: int
29
29
:param file_hash: Hash value of the file. Null if not a file.
30
- :type file_hash: list of int
30
+ :type file_hash: str
31
31
:param file_id: Id of the file content.
32
32
:type file_id: int
33
33
:param file_length: Length of the file. Zero if not of a file.
@@ -52,13 +52,13 @@ class FileContainerItem(Model):
52
52
53
53
_attribute_map = {
54
54
'container_id' : {'key' : 'containerId' , 'type' : 'long' },
55
- 'content_id' : {'key' : 'contentId' , 'type' : '[int] ' },
55
+ 'content_id' : {'key' : 'contentId' , 'type' : 'str ' },
56
56
'content_location' : {'key' : 'contentLocation' , 'type' : 'str' },
57
57
'created_by' : {'key' : 'createdBy' , 'type' : 'str' },
58
58
'date_created' : {'key' : 'dateCreated' , 'type' : 'iso-8601' },
59
59
'date_last_modified' : {'key' : 'dateLastModified' , 'type' : 'iso-8601' },
60
60
'file_encoding' : {'key' : 'fileEncoding' , 'type' : 'int' },
61
- 'file_hash' : {'key' : 'fileHash' , 'type' : '[int] ' },
61
+ 'file_hash' : {'key' : 'fileHash' , 'type' : 'str ' },
62
62
'file_id' : {'key' : 'fileId' , 'type' : 'int' },
63
63
'file_length' : {'key' : 'fileLength' , 'type' : 'long' },
64
64
'file_type' : {'key' : 'fileType' , 'type' : 'int' },
0 commit comments