@@ -15,7 +15,7 @@ class FileContainerItem(Model):
1515 :param container_id: Container Id.
1616 :type container_id: long
1717 :param content_id:
18- :type content_id: list of int
18+ :type content_id: str
1919 :param content_location: Download Url for the content of this item.
2020 :type content_location: str
2121 :param created_by: Creator.
@@ -27,7 +27,7 @@ class FileContainerItem(Model):
2727 :param file_encoding: Encoding of the file. Zero if not a file.
2828 :type file_encoding: int
2929 :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
3131 :param file_id: Id of the file content.
3232 :type file_id: int
3333 :param file_length: Length of the file. Zero if not of a file.
@@ -52,13 +52,13 @@ class FileContainerItem(Model):
5252
5353 _attribute_map = {
5454 'container_id' : {'key' : 'containerId' , 'type' : 'long' },
55- 'content_id' : {'key' : 'contentId' , 'type' : '[int] ' },
55+ 'content_id' : {'key' : 'contentId' , 'type' : 'str ' },
5656 'content_location' : {'key' : 'contentLocation' , 'type' : 'str' },
5757 'created_by' : {'key' : 'createdBy' , 'type' : 'str' },
5858 'date_created' : {'key' : 'dateCreated' , 'type' : 'iso-8601' },
5959 'date_last_modified' : {'key' : 'dateLastModified' , 'type' : 'iso-8601' },
6060 'file_encoding' : {'key' : 'fileEncoding' , 'type' : 'int' },
61- 'file_hash' : {'key' : 'fileHash' , 'type' : '[int] ' },
61+ 'file_hash' : {'key' : 'fileHash' , 'type' : 'str ' },
6262 'file_id' : {'key' : 'fileId' , 'type' : 'int' },
6363 'file_length' : {'key' : 'fileLength' , 'type' : 'long' },
6464 'file_type' : {'key' : 'fileType' , 'type' : 'int' },
0 commit comments