groupdocs-python
Advanced tools
| __pkgname__ = "groupdocs-python" | ||
| __version__ = "1.2.2" |
@@ -17,6 +17,7 @@ #!/usr/bin/env python | ||
| import mimetypes | ||
| import base64 | ||
| from models import * | ||
| from groupdocs.FileStream import FileStream | ||
| import base64 | ||
| from groupdocs import version | ||
@@ -52,3 +53,3 @@ | ||
| self.cookie = None | ||
| self.headers = None | ||
| self.headers = {'Groupdocs-Referer': '/'.join((version.__pkgname__, version.__version__))} | ||
| self.__debug = False | ||
@@ -87,4 +88,6 @@ | ||
| isFileUpload = True | ||
| headers['Content-type'] = postData.contentType | ||
| headers['Content-Length'] = str(postData.size) | ||
| if postData.contentType: | ||
| headers['Content-type'] = postData.contentType | ||
| if postData.size: | ||
| headers['Content-Length'] = str(postData.size) | ||
| else: | ||
@@ -106,3 +109,4 @@ headers['Content-type'] = 'application/json' | ||
| sentQueryParams[param] = value | ||
| url = url + '?' + urllib.urlencode(sentQueryParams) | ||
| if sentQueryParams: | ||
| url = url + '?' + urllib.urlencode(sentQueryParams) | ||
@@ -166,2 +170,7 @@ elif method in ['POST', 'PUT', 'DELETE']: | ||
| finally: | ||
| if isFileUpload: | ||
| try: | ||
| postData.inputStream.close() | ||
| except Exception, e: | ||
| sys.exc_clear() | ||
| if self.__debug and self.__logFilepath: | ||
@@ -168,0 +177,0 @@ sys.stdout = stdOut |
@@ -29,3 +29,3 @@ #!/usr/bin/env python | ||
| def __init__(self, filePath=None, response=None): | ||
| def __init__(self, filePath=None, response=None, stream=None): | ||
| self.__response = response # used for file download | ||
@@ -36,3 +36,3 @@ self.__filePath = filePath # used for file upload | ||
| self.__size = None | ||
| self.__inputStream = None | ||
| self.__inputStream = stream | ||
@@ -46,2 +46,14 @@ @classmethod | ||
| @classmethod | ||
| def fromStream(cls, stream, size, contentType="application/octet-stream"): | ||
| """stream is a file-like object, i.e. stream = fopen(filename) | ||
| """ | ||
| if not size or int(size) <= 0: | ||
| raise ValueError('Invalid stream size provided') | ||
| instance = cls(None, None, stream) | ||
| instance.size = size | ||
| instance.contentType = contentType | ||
| return instance | ||
| @classmethod | ||
| def fromHttp(cls, response): | ||
@@ -55,3 +67,3 @@ """response is a file-like object with two additional methods: geturl() and info() | ||
| if self.__fileName == None and self.__filePath != None: | ||
| self.__fileName = os.path.getsize(self.__filePath) | ||
| self.__fileName = os.path.basename(self.__filePath) | ||
| elif self.__fileName == None and self.__response != None: | ||
@@ -58,0 +70,0 @@ self.__fileName = self.__getValueFromCD('filename') or self.__getFileNameFromUrl(self.__response.url) |
@@ -26,5 +26,5 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'datasource_id': 'float', | ||
| 'job_id': 'float', | ||
| 'document_id': 'float', | ||
| 'job_id': 'float' | ||
| 'datasource_id': 'float' | ||
@@ -34,5 +34,5 @@ } | ||
| self.job_id = None # float | ||
| self.document_id = None # float | ||
| self.datasource_id = None # float | ||
| self.document_id = None # float | ||
| self.job_id = None # float | ||
@@ -27,4 +27,4 @@ #!/usr/bin/env python | ||
| 'document_id': 'float', | ||
| 'questionnaire_id': 'float', | ||
| 'questionnaire_guid': 'str', | ||
| 'questionnaire_id': 'float', | ||
| 'adjusted_name': 'str' | ||
@@ -36,5 +36,5 @@ | ||
| self.document_id = None # float | ||
| self.questionnaire_id = None # float | ||
| self.questionnaire_guid = None # str | ||
| self.questionnaire_id = None # float | ||
| self.adjusted_name = None # str | ||
@@ -26,5 +26,5 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'questionnaire_id': 'float', | ||
| 'collector_id': 'float', | ||
| 'collector_guid': 'str', | ||
| 'questionnaire_id': 'float' | ||
| 'collector_guid': 'str' | ||
@@ -34,5 +34,5 @@ } | ||
| self.questionnaire_id = None # float | ||
| self.collector_id = None # float | ||
| self.collector_guid = None # str | ||
| self.questionnaire_id = None # float | ||
@@ -26,5 +26,5 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'execution_guid': 'str', | ||
| 'collector_id': 'float', | ||
| 'execution_id': 'float' | ||
| 'execution_id': 'float', | ||
| 'execution_guid': 'str' | ||
@@ -34,5 +34,5 @@ } | ||
| self.execution_guid = None # str | ||
| self.collector_id = None # float | ||
| self.execution_id = None # float | ||
| self.execution_guid = None # str | ||
@@ -26,5 +26,5 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'replyDateTime': 'datetime', | ||
| 'replyGuid': 'str', | ||
| 'annotationGuid': 'str', | ||
| 'replyGuid': 'str' | ||
| 'replyDateTime': 'datetime' | ||
@@ -34,5 +34,5 @@ } | ||
| self.replyGuid = None # str | ||
| self.annotationGuid = None # str | ||
| self.replyDateTime = None # datetime | ||
| self.annotationGuid = None # str | ||
| self.replyGuid = None # str | ||
@@ -26,14 +26,14 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'createdOn': 'long', | ||
| 'guid': 'str', | ||
| 'documentGuid': 'str', | ||
| 'sessionGuid': 'str', | ||
| 'documentGuid': 'str', | ||
| 'creatorGuid': 'str', | ||
| 'box': 'Rectangle', | ||
| 'annotationPosition': 'Point', | ||
| 'range': 'Range', | ||
| 'creatorGuid': 'str', | ||
| 'svgPath': 'str', | ||
| 'type': 'str', | ||
| 'access': 'str', | ||
| 'replies': 'list[AnnotationReplyInfo]', | ||
| 'box': 'Rectangle', | ||
| 'access': 'str', | ||
| 'type': 'str' | ||
| 'createdOn': 'long' | ||
@@ -43,14 +43,14 @@ } | ||
| self.createdOn = None # long | ||
| self.guid = None # str | ||
| self.documentGuid = None # str | ||
| self.sessionGuid = None # str | ||
| self.documentGuid = None # str | ||
| self.creatorGuid = None # str | ||
| self.box = None # Rectangle | ||
| self.annotationPosition = None # Point | ||
| self.range = None # Range | ||
| self.creatorGuid = None # str | ||
| self.svgPath = None # str | ||
| self.type = None # str | ||
| self.access = None # str | ||
| self.replies = None # list[AnnotationReplyInfo] | ||
| self.box = None # Rectangle | ||
| self.access = None # str | ||
| self.type = None # str | ||
| self.createdOn = None # long | ||
@@ -27,7 +27,7 @@ #!/usr/bin/env python | ||
| 'guid': 'str', | ||
| 'userGuid': 'str', | ||
| 'userName': 'str', | ||
| 'text': 'str', | ||
| 'repliedOn': 'long', | ||
| 'text': 'str', | ||
| 'userName': 'str', | ||
| 'parentReplyGuid': 'str', | ||
| 'userGuid': 'str' | ||
| 'parentReplyGuid': 'str' | ||
@@ -38,7 +38,7 @@ } | ||
| self.guid = None # str | ||
| self.userGuid = None # str | ||
| self.userName = None # str | ||
| self.text = None # str | ||
| self.repliedOn = None # long | ||
| self.text = None # str | ||
| self.userName = None # str | ||
| self.parentReplyGuid = None # str | ||
| self.userGuid = None # str | ||
@@ -26,14 +26,14 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'zip': 'str', | ||
| 'address1': 'str', | ||
| 'address2': 'str', | ||
| 'city': 'str', | ||
| 'company': 'str', | ||
| 'country': 'str', | ||
| 'email': 'str', | ||
| 'fax': 'str', | ||
| 'firstName': 'str', | ||
| 'lastName': 'str', | ||
| 'phone': 'str', | ||
| 'fax': 'str', | ||
| 'email': 'str', | ||
| 'company': 'str', | ||
| 'state': 'str', | ||
| 'address1': 'str', | ||
| 'address2': 'str', | ||
| 'firstName': 'str', | ||
| 'country': 'str', | ||
| 'city': 'str' | ||
| 'zip': 'str' | ||
@@ -43,14 +43,14 @@ } | ||
| self.zip = None # str | ||
| self.address1 = None # str | ||
| self.address2 = None # str | ||
| self.city = None # str | ||
| self.company = None # str | ||
| self.country = None # str | ||
| self.email = None # str | ||
| self.fax = None # str | ||
| self.firstName = None # str | ||
| self.lastName = None # str | ||
| self.phone = None # str | ||
| self.fax = None # str | ||
| self.email = None # str | ||
| self.company = None # str | ||
| self.state = None # str | ||
| self.address1 = None # str | ||
| self.address2 = None # str | ||
| self.firstName = None # str | ||
| self.country = None # str | ||
| self.city = None # str | ||
| self.zip = None # str | ||
@@ -27,7 +27,7 @@ #!/usr/bin/env python | ||
| 'id': 'float', | ||
| 'text': 'str', | ||
| 'type': 'str', | ||
| 'action': 'str', | ||
| 'page': 'Page', | ||
| 'action': 'str', | ||
| 'box': 'Rectangle', | ||
| 'type': 'str' | ||
| 'text': 'str' | ||
@@ -38,7 +38,7 @@ } | ||
| self.id = None # float | ||
| self.text = None # str | ||
| self.type = None # str | ||
| self.action = None # str | ||
| self.page = None # Page | ||
| self.action = None # str | ||
| self.box = None # Rectangle | ||
| self.type = None # str | ||
| self.text = None # str | ||
@@ -26,4 +26,4 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'guid': 'str', | ||
| 'id': 'float' | ||
| 'id': 'float', | ||
| 'guid': 'str' | ||
@@ -33,4 +33,4 @@ } | ||
| self.id = None # float | ||
| self.guid = None # str | ||
| self.id = None # float | ||
@@ -27,7 +27,7 @@ #!/usr/bin/env python | ||
| 'id': 'float', | ||
| 'annotationGuid': 'str', | ||
| 'replyGuid': 'str', | ||
| 'documentGuid': 'str', | ||
| 'sessionGuid': 'str', | ||
| 'documentGuid': 'str', | ||
| 'annotationGuid': 'str', | ||
| 'access': 'str', | ||
| 'replyGuid': 'str' | ||
| 'access': 'str' | ||
@@ -38,7 +38,7 @@ } | ||
| self.id = None # float | ||
| self.annotationGuid = None # str | ||
| self.replyGuid = None # str | ||
| self.documentGuid = None # str | ||
| self.sessionGuid = None # str | ||
| self.documentGuid = None # str | ||
| self.annotationGuid = None # str | ||
| self.access = None # str | ||
| self.replyGuid = None # str | ||
@@ -26,4 +26,4 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'job_guid': 'str', | ||
| 'job_id': 'float' | ||
| 'job_id': 'float', | ||
| 'job_guid': 'str' | ||
@@ -33,4 +33,4 @@ } | ||
| self.job_id = None # float | ||
| self.job_guid = None # str | ||
| self.job_id = None # float | ||
@@ -26,4 +26,4 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'questionnaire_id': 'float', | ||
| 'questionnaire_guid': 'str', | ||
| 'questionnaire_id': 'float', | ||
| 'adjusted_name': 'str' | ||
@@ -34,5 +34,5 @@ | ||
| self.questionnaire_id = None # float | ||
| self.questionnaire_guid = None # str | ||
| self.questionnaire_id = None # float | ||
| self.adjusted_name = None # str | ||
@@ -27,7 +27,7 @@ #!/usr/bin/env python | ||
| 'id': 'float', | ||
| 'modified_on': 'long', | ||
| 'created_on': 'long', | ||
| 'questionnaire_id': 'float', | ||
| 'descr': 'str', | ||
| 'fields': 'list[DatasourceField]' | ||
| 'fields': 'list[DatasourceField]', | ||
| 'created_on': 'long', | ||
| 'modified_on': 'long' | ||
@@ -38,7 +38,7 @@ } | ||
| self.id = None # float | ||
| self.modified_on = None # long | ||
| self.created_on = None # long | ||
| self.questionnaire_id = None # float | ||
| self.descr = None # str | ||
| self.fields = None # list[DatasourceField] | ||
| self.created_on = None # long | ||
| self.modified_on = None # long | ||
@@ -26,4 +26,4 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'name': 'str', | ||
| 'values': 'str', | ||
| 'name': 'str', | ||
| 'contentType': 'str', | ||
@@ -35,6 +35,6 @@ 'type': 'str' | ||
| self.name = None # str | ||
| self.values = None # str | ||
| self.name = None # str | ||
| self.contentType = None # str | ||
| self.type = None # str | ||
@@ -26,4 +26,4 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'id': 'float', | ||
| 'guid': 'str', | ||
| 'id': 'float', | ||
| 'primary_email': 'str' | ||
@@ -34,5 +34,5 @@ | ||
| self.id = None # float | ||
| self.guid = None # str | ||
| self.id = None # float | ||
| self.primary_email = None # str | ||
@@ -26,4 +26,4 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'guid': 'str', | ||
| 'id': 'float' | ||
| 'id': 'float', | ||
| 'guid': 'str' | ||
@@ -33,4 +33,4 @@ } | ||
| self.id = None # float | ||
| self.guid = None # str | ||
| self.id = None # float | ||
@@ -26,4 +26,4 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'collector_id': 'float', | ||
| 'questionnaire_id': 'float' | ||
| 'questionnaire_id': 'float', | ||
| 'collector_id': 'float' | ||
@@ -33,4 +33,4 @@ } | ||
| self.questionnaire_id = None # float | ||
| self.collector_id = None # float | ||
| self.questionnaire_id = None # float | ||
@@ -26,5 +26,5 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'replies': 'list[AnnotationReplyInfo]', | ||
| 'replyGuid': 'str', | ||
| 'annotationGuid': 'str', | ||
| 'replyGuid': 'str' | ||
| 'replies': 'list[AnnotationReplyInfo]' | ||
@@ -34,5 +34,5 @@ } | ||
| self.replyGuid = None # str | ||
| self.annotationGuid = None # str | ||
| self.replies = None # list[AnnotationReplyInfo] | ||
| self.annotationGuid = None # str | ||
| self.replyGuid = None # str | ||
@@ -26,4 +26,4 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'height': 'int', | ||
| 'width': 'int' | ||
| 'width': 'int', | ||
| 'height': 'int' | ||
@@ -33,4 +33,4 @@ } | ||
| self.width = None # int | ||
| self.height = None # int | ||
| self.width = None # int | ||
@@ -26,18 +26,18 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'status': 'str', | ||
| 'owner': 'UserInfo', | ||
| 'sharers': 'list[UserInfo]', | ||
| 'status': 'str', | ||
| 'type_str': 'str', | ||
| 'shared_on': 'long', | ||
| 'name': 'str', | ||
| 'version': 'int', | ||
| 'size': 'long', | ||
| 'type': 'str', | ||
| 'type_str': 'str', | ||
| 'file_type_str': 'str', | ||
| 'document_path': 'str', | ||
| 'access': 'str', | ||
| 'url': 'str', | ||
| 'file_type': 'str', | ||
| 'version': 'int', | ||
| 'size': 'long', | ||
| 'guid': 'str', | ||
| 'id': 'float', | ||
| 'document_path': 'str', | ||
| 'name': 'str', | ||
| 'owner': 'UserInfo', | ||
| 'file_type_str': 'str' | ||
| 'guid': 'str' | ||
@@ -47,18 +47,18 @@ } | ||
| self.status = None # str | ||
| self.owner = None # UserInfo | ||
| self.sharers = None # list[UserInfo] | ||
| self.status = None # str | ||
| self.type_str = None # str | ||
| self.shared_on = None # long | ||
| self.name = None # str | ||
| self.version = None # int | ||
| self.size = None # long | ||
| self.type = None # str | ||
| self.type_str = None # str | ||
| self.file_type_str = None # str | ||
| self.document_path = None # str | ||
| self.access = None # str | ||
| self.url = None # str | ||
| self.file_type = None # str | ||
| self.version = None # int | ||
| self.size = None # long | ||
| self.id = None # float | ||
| self.guid = None # str | ||
| self.id = None # float | ||
| self.document_path = None # str | ||
| self.name = None # str | ||
| self.owner = None # UserInfo | ||
| self.file_type_str = None # str | ||
@@ -27,4 +27,4 @@ #!/usr/bin/env python | ||
| 'guid': 'str', | ||
| 'supported': 'bool', | ||
| 'name': 'str' | ||
| 'name': 'str', | ||
| 'supported': 'bool' | ||
@@ -35,4 +35,4 @@ } | ||
| self.guid = None # str | ||
| self.name = None # str | ||
| self.supported = None # bool | ||
| self.name = None # str | ||
@@ -26,6 +26,6 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'guid': 'str', | ||
| 'url': 'str', | ||
| 'file_type': 'str', | ||
| 'id': 'float', | ||
| 'url': 'str', | ||
| 'file_type': 'str' | ||
| 'guid': 'str' | ||
@@ -35,6 +35,6 @@ } | ||
| self.guid = None # str | ||
| self.id = None # float | ||
| self.url = None # str | ||
| self.file_type = None # str | ||
| self.id = None # float | ||
| self.guid = None # str | ||
@@ -26,14 +26,14 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'guid': 'str', | ||
| 'id': 'float', | ||
| 'document_path': 'str', | ||
| 'name': 'str', | ||
| 'version': 'int', | ||
| 'size': 'long', | ||
| 'type': 'str', | ||
| 'type_str': 'str', | ||
| 'file_type_str': 'str', | ||
| 'document_path': 'str', | ||
| 'access': 'str', | ||
| 'type': 'str', | ||
| 'url': 'str', | ||
| 'file_type': 'str', | ||
| 'size': 'long', | ||
| 'version': 'int' | ||
| 'id': 'float', | ||
| 'guid': 'str' | ||
@@ -43,14 +43,14 @@ } | ||
| self.guid = None # str | ||
| self.id = None # float | ||
| self.document_path = None # str | ||
| self.name = None # str | ||
| self.version = None # int | ||
| self.size = None # long | ||
| self.type = None # str | ||
| self.type_str = None # str | ||
| self.file_type_str = None # str | ||
| self.document_path = None # str | ||
| self.access = None # str | ||
| self.type = None # str | ||
| self.url = None # str | ||
| self.file_type = None # str | ||
| self.size = None # long | ||
| self.version = None # int | ||
| self.id = None # float | ||
| self.guid = None # str | ||
@@ -28,4 +28,4 @@ #!/usr/bin/env python | ||
| 'owner_id': 'float', | ||
| 'user_status': 'str', | ||
| 'user_id': 'float' | ||
| 'user_id': 'float', | ||
| 'user_status': 'str' | ||
@@ -37,4 +37,4 @@ } | ||
| self.owner_id = None # float | ||
| self.user_id = None # float | ||
| self.user_status = None # str | ||
| self.user_id = None # float | ||
@@ -26,4 +26,4 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'dst_file': 'DocumentInfo', | ||
| 'src_file': 'DocumentInfo' | ||
| 'src_file': 'DocumentInfo', | ||
| 'dst_file': 'DocumentInfo' | ||
@@ -33,4 +33,4 @@ } | ||
| self.src_file = None # DocumentInfo | ||
| self.dst_file = None # DocumentInfo | ||
| self.src_file = None # DocumentInfo | ||
@@ -26,18 +26,18 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'sharers': 'list[UserInfo]', | ||
| 'modified_on': 'long', | ||
| 'created_on': 'long', | ||
| 'type': 'str', | ||
| 'access': 'str', | ||
| 'supported_types': 'list[str]', | ||
| 'url': 'str', | ||
| 'version': 'int', | ||
| 'type': 'str', | ||
| 'file_type': 'str', | ||
| 'size': 'long', | ||
| 'thumbnail': 'str', | ||
| 'supported_types': 'list[str]', | ||
| 'id': 'float', | ||
| 'guid': 'str', | ||
| 'thumbnail': 'str', | ||
| 'name': 'str', | ||
| 'access': 'str', | ||
| 'owner': 'UserInfo', | ||
| 'sharers': 'list[UserInfo]', | ||
| 'dir': 'bool', | ||
| 'name': 'str', | ||
| 'owner': 'UserInfo' | ||
| 'modified_on': 'long', | ||
| 'created_on': 'long' | ||
@@ -47,18 +47,18 @@ } | ||
| self.sharers = None # list[UserInfo] | ||
| self.modified_on = None # long | ||
| self.created_on = None # long | ||
| self.type = None # str | ||
| self.access = None # str | ||
| self.supported_types = None # list[str] | ||
| self.url = None # str | ||
| self.version = None # int | ||
| self.type = None # str | ||
| self.file_type = None # str | ||
| self.size = None # long | ||
| self.thumbnail = None # str | ||
| self.supported_types = None # list[str] | ||
| self.id = None # float | ||
| self.guid = None # str | ||
| self.thumbnail = None # str | ||
| self.dir = None # bool | ||
| self.name = None # str | ||
| self.access = None # str | ||
| self.owner = None # UserInfo | ||
| self.sharers = None # list[UserInfo] | ||
| self.dir = None # bool | ||
| self.modified_on = None # long | ||
| self.created_on = None # long | ||
@@ -26,13 +26,13 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'sharers': 'list[UserInfo]', | ||
| 'folder_count': 'int', | ||
| 'file_count': 'int', | ||
| 'id': 'float', | ||
| 'guid': 'str', | ||
| 'id': 'float', | ||
| 'folder_count': 'int', | ||
| 'modified_on': 'long', | ||
| 'dir': 'bool', | ||
| 'created_on': 'long', | ||
| 'name': 'str', | ||
| 'access': 'str', | ||
| 'owner': 'UserInfo', | ||
| 'file_count': 'int', | ||
| 'access': 'str' | ||
| 'sharers': 'list[UserInfo]', | ||
| 'dir': 'bool', | ||
| 'modified_on': 'long', | ||
| 'created_on': 'long' | ||
@@ -42,13 +42,13 @@ } | ||
| self.folder_count = None # int | ||
| self.file_count = None # int | ||
| self.id = None # float | ||
| self.guid = None # str | ||
| self.name = None # str | ||
| self.access = None # str | ||
| self.owner = None # UserInfo | ||
| self.sharers = None # list[UserInfo] | ||
| self.guid = None # str | ||
| self.id = None # float | ||
| self.folder_count = None # int | ||
| self.dir = None # bool | ||
| self.modified_on = None # long | ||
| self.dir = None # bool | ||
| self.created_on = None # long | ||
| self.name = None # str | ||
| self.owner = None # UserInfo | ||
| self.file_count = None # int | ||
| self.access = None # str | ||
@@ -26,4 +26,4 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'users': 'list[UserInfo]', | ||
| 'max_users': 'int' | ||
| 'max_users': 'int', | ||
| 'users': 'list[UserInfo]' | ||
@@ -33,4 +33,4 @@ } | ||
| self.max_users = None # int | ||
| self.users = None # list[UserInfo] | ||
| self.max_users = None # int | ||
@@ -26,4 +26,4 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'users': 'list[UserInfo]', | ||
| 'max_users': 'int' | ||
| 'max_users': 'int', | ||
| 'users': 'list[UserInfo]' | ||
@@ -33,4 +33,4 @@ } | ||
| self.max_users = None # int | ||
| self.users = None # list[UserInfo] | ||
| self.max_users = None # int | ||
@@ -26,7 +26,7 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'documentGuid': 'str', | ||
| 'sessionGuid': 'str', | ||
| 'documentGuid': 'str', | ||
| 'owner': 'ReviewerInfo', | ||
| 'collaborators': 'list[ReviewerInfo]', | ||
| 'shared_link_access_rights': 'int', | ||
| 'owner': 'ReviewerInfo' | ||
| 'shared_link_access_rights': 'int' | ||
@@ -36,7 +36,7 @@ } | ||
| self.documentGuid = None # str | ||
| self.sessionGuid = None # str | ||
| self.documentGuid = None # str | ||
| self.owner = None # ReviewerInfo | ||
| self.collaborators = None # list[ReviewerInfo] | ||
| self.shared_link_access_rights = None # int | ||
| self.owner = None # ReviewerInfo | ||
@@ -26,7 +26,7 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'guid': 'str', | ||
| 'id': 'float', | ||
| 'page_count': 'int', | ||
| 'views_count': 'int', | ||
| 'last_view': 'DocumentViewInfo', | ||
| 'page_count': 'int' | ||
| 'id': 'float', | ||
| 'guid': 'str' | ||
@@ -36,7 +36,7 @@ } | ||
| self.guid = None # str | ||
| self.id = None # float | ||
| self.page_count = None # int | ||
| self.views_count = None # int | ||
| self.last_view = None # DocumentViewInfo | ||
| self.page_count = None # int | ||
| self.id = None # float | ||
| self.guid = None # str | ||
@@ -26,5 +26,5 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'edit_url': 'str', | ||
| 'doc_guid': 'str', | ||
| 'file_id': 'str', | ||
| 'doc_guid': 'str' | ||
| 'edit_url': 'str' | ||
@@ -34,5 +34,5 @@ } | ||
| self.doc_guid = None # str | ||
| self.file_id = None # str | ||
| self.edit_url = None # str | ||
| self.file_id = None # str | ||
| self.doc_guid = None # str | ||
@@ -26,5 +26,5 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'job_status': 'str', | ||
| 'inputs': 'list[JobInputDocument]', | ||
| 'outputs': 'list[JobOutputDocument]', | ||
| 'job_status': 'str' | ||
| 'outputs': 'list[JobOutputDocument]' | ||
@@ -34,5 +34,5 @@ } | ||
| self.job_status = None # str | ||
| self.inputs = None # list[JobInputDocument] | ||
| self.outputs = None # list[JobOutputDocument] | ||
| self.job_status = None # str | ||
@@ -26,15 +26,15 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'id': 'float', | ||
| 'out_formats': 'list[str]', | ||
| 'actions': 'str', | ||
| 'status': 'str', | ||
| 'documents': 'JobDocumentsEntry', | ||
| 'out_formats': 'list[str]', | ||
| 'email_results': 'bool', | ||
| 'priority': 'float', | ||
| 'url_only': 'bool', | ||
| 'documents': 'JobDocumentsEntry', | ||
| 'requested_time': 'long', | ||
| 'id': 'float', | ||
| 'scheduled_time': 'long', | ||
| 'guid': 'str', | ||
| 'scheduled_time': 'long', | ||
| 'priority': 'float', | ||
| 'name': 'str', | ||
| 'callback_url': 'str', | ||
| 'actions': 'str' | ||
| 'callback_url': 'str' | ||
@@ -44,15 +44,15 @@ } | ||
| self.id = None # float | ||
| self.out_formats = None # list[str] | ||
| self.actions = None # str | ||
| self.status = None # str | ||
| self.documents = None # JobDocumentsEntry | ||
| self.out_formats = None # list[str] | ||
| self.email_results = None # bool | ||
| self.priority = None # float | ||
| self.url_only = None # bool | ||
| self.documents = None # JobDocumentsEntry | ||
| self.requested_time = None # long | ||
| self.id = None # float | ||
| self.scheduled_time = None # long | ||
| self.guid = None # str | ||
| self.scheduled_time = None # long | ||
| self.priority = None # float | ||
| self.name = None # str | ||
| self.callback_url = None # str | ||
| self.actions = None # str | ||
@@ -26,4 +26,4 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'jobs': 'list[JobInfo]', | ||
| 'count': 'int' | ||
| 'count': 'int', | ||
| 'jobs': 'list[JobInfo]' | ||
@@ -33,4 +33,4 @@ } | ||
| self.count = None # int | ||
| self.jobs = None # list[JobInfo] | ||
| self.count = None # int | ||
@@ -26,4 +26,4 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'name': 'str', | ||
| 'ref_id': 'str' | ||
| 'ref_id': 'str', | ||
| 'name': 'str' | ||
@@ -33,4 +33,4 @@ } | ||
| self.ref_id = None # str | ||
| self.name = None # str | ||
| self.ref_id = None # str | ||
@@ -26,4 +26,4 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'executions': 'list[QuestionnaireExecutionInfo]', | ||
| 'questionnaire_guid': 'str' | ||
| 'questionnaire_guid': 'str', | ||
| 'executions': 'list[QuestionnaireExecutionInfo]' | ||
@@ -33,4 +33,4 @@ } | ||
| self.questionnaire_guid = None # str | ||
| self.executions = None # list[QuestionnaireExecutionInfo] | ||
| self.questionnaire_guid = None # str | ||
@@ -26,4 +26,4 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'subscription': 'SubscriptionPlanInfo', | ||
| 'metrics': 'list[ProductMetrics]' | ||
| 'metrics': 'list[ProductMetrics]', | ||
| 'subscription': 'SubscriptionPlanInfo' | ||
@@ -33,4 +33,4 @@ } | ||
| self.metrics = None # list[ProductMetrics] | ||
| self.subscription = None # SubscriptionPlanInfo | ||
| self.metrics = None # list[ProductMetrics] | ||
@@ -26,6 +26,6 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'job_id': 'float', | ||
| 'original_document_id': 'float', | ||
| 'error_code': 'int', | ||
| 'expected_format': 'str', | ||
| 'original_document_id': 'float', | ||
| 'job_id': 'float' | ||
| 'expected_format': 'str' | ||
@@ -35,6 +35,6 @@ } | ||
| self.job_id = None # float | ||
| self.original_document_id = None # float | ||
| self.error_code = None # int | ||
| self.expected_format = None # str | ||
| self.original_document_id = None # float | ||
| self.job_id = None # float | ||
@@ -26,15 +26,15 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'id': 'float', | ||
| 'out_formats': 'list[str]', | ||
| 'actions': 'str', | ||
| 'status': 'str', | ||
| 'documents': 'JobDocumentsEntry', | ||
| 'out_formats': 'list[str]', | ||
| 'email_results': 'bool', | ||
| 'priority': 'float', | ||
| 'url_only': 'bool', | ||
| 'documents': 'JobDocumentsEntry', | ||
| 'requested_time': 'long', | ||
| 'id': 'float', | ||
| 'scheduled_time': 'long', | ||
| 'guid': 'str', | ||
| 'scheduled_time': 'long', | ||
| 'priority': 'float', | ||
| 'name': 'str', | ||
| 'callback_url': 'str', | ||
| 'actions': 'str' | ||
| 'callback_url': 'str' | ||
@@ -44,15 +44,15 @@ } | ||
| self.id = None # float | ||
| self.out_formats = None # list[str] | ||
| self.actions = None # str | ||
| self.status = None # str | ||
| self.documents = None # JobDocumentsEntry | ||
| self.out_formats = None # list[str] | ||
| self.email_results = None # bool | ||
| self.priority = None # float | ||
| self.url_only = None # bool | ||
| self.documents = None # JobDocumentsEntry | ||
| self.requested_time = None # long | ||
| self.id = None # float | ||
| self.scheduled_time = None # long | ||
| self.guid = None # str | ||
| self.scheduled_time = None # long | ||
| self.priority = None # float | ||
| self.name = None # str | ||
| self.callback_url = None # str | ||
| self.actions = None # str | ||
@@ -27,20 +27,20 @@ #!/usr/bin/env python | ||
| 'status': 'str', | ||
| 'proc_date': 'long', | ||
| 'output_formats': 'str', | ||
| 'outputs': 'list[JobOutputDocument]', | ||
| 'job_errors': 'list[JobErrorInfo]', | ||
| 'actions': 'str', | ||
| 'supported_output_file_types': 'list[str]', | ||
| 'name': 'str', | ||
| 'version': 'int', | ||
| 'size': 'long', | ||
| 'type': 'str', | ||
| 'type_str': 'str', | ||
| 'file_type_str': 'str', | ||
| 'document_path': 'str', | ||
| 'access': 'str', | ||
| 'type': 'str', | ||
| 'url': 'str', | ||
| 'file_type': 'str', | ||
| 'version': 'int', | ||
| 'size': 'long', | ||
| 'guid': 'str', | ||
| 'id': 'float', | ||
| 'document_path': 'str', | ||
| 'supported_output_file_types': 'list[str]', | ||
| 'proc_date': 'long', | ||
| 'name': 'str', | ||
| 'file_type_str': 'str', | ||
| 'outputs': 'list[JobOutputDocument]', | ||
| 'actions': 'str', | ||
| 'job_errors': 'list[JobErrorInfo]' | ||
| 'guid': 'str' | ||
@@ -51,20 +51,20 @@ } | ||
| self.status = None # str | ||
| self.proc_date = None # long | ||
| self.output_formats = None # str | ||
| self.outputs = None # list[JobOutputDocument] | ||
| self.job_errors = None # list[JobErrorInfo] | ||
| self.actions = None # str | ||
| self.supported_output_file_types = None # list[str] | ||
| self.name = None # str | ||
| self.version = None # int | ||
| self.size = None # long | ||
| self.type = None # str | ||
| self.type_str = None # str | ||
| self.file_type_str = None # str | ||
| self.document_path = None # str | ||
| self.access = None # str | ||
| self.type = None # str | ||
| self.url = None # str | ||
| self.file_type = None # str | ||
| self.version = None # int | ||
| self.size = None # long | ||
| self.id = None # float | ||
| self.guid = None # str | ||
| self.id = None # float | ||
| self.document_path = None # str | ||
| self.supported_output_file_types = None # list[str] | ||
| self.proc_date = None # long | ||
| self.name = None # str | ||
| self.file_type_str = None # str | ||
| self.outputs = None # list[JobOutputDocument] | ||
| self.actions = None # str | ||
| self.job_errors = None # list[JobErrorInfo] | ||
@@ -27,14 +27,14 @@ #!/usr/bin/env python | ||
| 'error': 'str', | ||
| 'name': 'str', | ||
| 'version': 'int', | ||
| 'size': 'long', | ||
| 'type': 'str', | ||
| 'type_str': 'str', | ||
| 'type': 'str', | ||
| 'file_type_str': 'str', | ||
| 'document_path': 'str', | ||
| 'access': 'str', | ||
| 'url': 'str', | ||
| 'version': 'int', | ||
| 'size': 'long', | ||
| 'file_type': 'str', | ||
| 'id': 'float', | ||
| 'guid': 'str', | ||
| 'document_path': 'str', | ||
| 'name': 'str', | ||
| 'file_type_str': 'str' | ||
| 'guid': 'str' | ||
@@ -45,14 +45,14 @@ } | ||
| self.error = None # str | ||
| self.name = None # str | ||
| self.version = None # int | ||
| self.size = None # long | ||
| self.type = None # str | ||
| self.type_str = None # str | ||
| self.type = None # str | ||
| self.file_type_str = None # str | ||
| self.document_path = None # str | ||
| self.access = None # str | ||
| self.url = None # str | ||
| self.version = None # int | ||
| self.size = None # long | ||
| self.file_type = None # str | ||
| self.id = None # float | ||
| self.guid = None # str | ||
| self.document_path = None # str | ||
| self.name = None # str | ||
| self.file_type_str = None # str | ||
@@ -26,4 +26,4 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'documentGuid': 'str', | ||
| 'sessionGuid': 'str', | ||
| 'documentGuid': 'str', | ||
| 'annotations': 'list[AnnotationInfo]' | ||
@@ -34,5 +34,5 @@ | ||
| self.documentGuid = None # str | ||
| self.sessionGuid = None # str | ||
| self.documentGuid = None # str | ||
| self.annotations = None # list[AnnotationInfo] | ||
@@ -26,6 +26,6 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'files': 'list[FileSystemDocument]', | ||
| 'path': 'str', | ||
| 'count': 'int', | ||
| 'path': 'str', | ||
| 'folders': 'list[FileSystemFolder]' | ||
| 'folders': 'list[FileSystemFolder]', | ||
| 'files': 'list[FileSystemDocument]' | ||
@@ -35,6 +35,6 @@ } | ||
| self.files = None # list[FileSystemDocument] | ||
| self.path = None # str | ||
| self.count = None # int | ||
| self.path = None # str | ||
| self.folders = None # list[FileSystemFolder] | ||
| self.files = None # list[FileSystemDocument] | ||
@@ -26,4 +26,4 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'replies': 'list[AnnotationReplyInfo]', | ||
| 'annotationGuid': 'str' | ||
| 'annotationGuid': 'str', | ||
| 'replies': 'list[AnnotationReplyInfo]' | ||
@@ -33,4 +33,4 @@ } | ||
| self.annotationGuid = None # str | ||
| self.replies = None # list[AnnotationReplyInfo] | ||
| self.annotationGuid = None # str | ||
@@ -26,5 +26,5 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'datasource_id': 'float', | ||
| 'job_id': 'float', | ||
| 'document_id': 'float', | ||
| 'job_id': 'float' | ||
| 'datasource_id': 'float' | ||
@@ -34,5 +34,5 @@ } | ||
| self.job_id = None # float | ||
| self.document_id = None # float | ||
| self.datasource_id = None # float | ||
| self.document_id = None # float | ||
| self.job_id = None # float | ||
@@ -26,4 +26,4 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'id': 'int', | ||
| 'w': 'float', | ||
| 'id': 'int', | ||
| 'h': 'float' | ||
@@ -34,5 +34,5 @@ | ||
| self.id = None # int | ||
| self.w = None # float | ||
| self.id = None # int | ||
| self.h = None # float | ||
@@ -26,4 +26,4 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'y': 'float', | ||
| 'x': 'float' | ||
| 'x': 'float', | ||
| 'y': 'float' | ||
@@ -33,4 +33,4 @@ } | ||
| self.x = None # float | ||
| self.y = None # float | ||
| self.x = None # float | ||
@@ -28,7 +28,7 @@ #!/usr/bin/env python | ||
| 'text': 'str', | ||
| 'answers': 'list[AnswerInfo]', | ||
| 'def_answer': 'str', | ||
| 'required': 'bool', | ||
| 'disabled': 'bool', | ||
| 'type': 'str', | ||
| 'required': 'bool', | ||
| 'disabled': 'bool' | ||
| 'answers': 'list[AnswerInfo]' | ||
@@ -40,7 +40,7 @@ } | ||
| self.text = None # str | ||
| self.answers = None # list[AnswerInfo] | ||
| self.def_answer = None # str | ||
| self.type = None # str | ||
| self.required = None # bool | ||
| self.disabled = None # bool | ||
| self.type = None # str | ||
| self.answers = None # list[AnswerInfo] | ||
@@ -26,9 +26,9 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'id': 'float', | ||
| 'guid': 'str', | ||
| 'id': 'float', | ||
| 'type': 'str', | ||
| 'status': 'str', | ||
| 'questionnaire_id': 'float', | ||
| 'resolved_exectuions': 'int', | ||
| 'questionnaire_id': 'float', | ||
| 'emails': 'list[str]', | ||
| 'type': 'str', | ||
| 'modified': 'long' | ||
@@ -39,10 +39,10 @@ | ||
| self.id = None # float | ||
| self.guid = None # str | ||
| self.id = None # float | ||
| self.type = None # str | ||
| self.status = None # str | ||
| self.questionnaire_id = None # float | ||
| self.resolved_exectuions = None # int | ||
| self.questionnaire_id = None # float | ||
| self.emails = None # list[str] | ||
| self.type = None # str | ||
| self.modified = None # long | ||
@@ -26,14 +26,14 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'id': 'float', | ||
| 'datasource_id': 'float', | ||
| 'status': 'str', | ||
| 'guid': 'str', | ||
| 'executive': 'UserIdentity', | ||
| 'document': 'DocumentDownloadInfo', | ||
| 'collector_id': 'float', | ||
| 'collector_guid': 'str', | ||
| 'status': 'str', | ||
| 'questionnaire_name': 'str', | ||
| 'owner': 'UserIdentity', | ||
| 'executive': 'UserIdentity', | ||
| 'approver': 'UserIdentity', | ||
| 'owner': 'UserIdentity', | ||
| 'questionnaire_name': 'str', | ||
| 'modified': 'long' | ||
| 'datasource_id': 'float', | ||
| 'id': 'float', | ||
| 'modified': 'long', | ||
| 'document': 'DocumentDownloadInfo' | ||
@@ -43,14 +43,14 @@ } | ||
| self.id = None # float | ||
| self.datasource_id = None # float | ||
| self.status = None # str | ||
| self.guid = None # str | ||
| self.executive = None # UserIdentity | ||
| self.document = None # DocumentDownloadInfo | ||
| self.collector_id = None # float | ||
| self.collector_guid = None # str | ||
| self.status = None # str | ||
| self.questionnaire_name = None # str | ||
| self.owner = None # UserIdentity | ||
| self.executive = None # UserIdentity | ||
| self.approver = None # UserIdentity | ||
| self.owner = None # UserIdentity | ||
| self.questionnaire_name = None # str | ||
| self.datasource_id = None # float | ||
| self.id = None # float | ||
| self.modified = None # long | ||
| self.document = None # DocumentDownloadInfo | ||
@@ -26,14 +26,14 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'assigned_questions': 'int', | ||
| 'guid': 'str', | ||
| 'id': 'float', | ||
| 'expires': 'long', | ||
| 'status': 'str', | ||
| 'resolved_executions': 'int', | ||
| 'name': 'str', | ||
| 'pages': 'list[QuestionnairePageInfo]', | ||
| 'document_ids': 'list[str]', | ||
| 'id': 'float', | ||
| 'guid': 'str', | ||
| 'name': 'str', | ||
| 'descr': 'str', | ||
| 'status': 'str', | ||
| 'assigned_questions': 'int', | ||
| 'total_questions': 'int', | ||
| 'modified': 'long', | ||
| 'total_questions': 'int' | ||
| 'expires': 'long' | ||
@@ -43,14 +43,14 @@ } | ||
| self.assigned_questions = None # int | ||
| self.guid = None # str | ||
| self.id = None # float | ||
| self.expires = None # long | ||
| self.status = None # str | ||
| self.resolved_executions = None # int | ||
| self.name = None # str | ||
| self.pages = None # list[QuestionnairePageInfo] | ||
| self.document_ids = None # list[str] | ||
| self.id = None # float | ||
| self.guid = None # str | ||
| self.name = None # str | ||
| self.descr = None # str | ||
| self.status = None # str | ||
| self.assigned_questions = None # int | ||
| self.total_questions = None # int | ||
| self.modified = None # long | ||
| self.total_questions = None # int | ||
| self.expires = None # long | ||
@@ -26,11 +26,11 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'assigned_questions': 'int', | ||
| 'id': 'float', | ||
| 'guid': 'str', | ||
| 'id': 'float', | ||
| 'expires': 'long', | ||
| 'status': 'str', | ||
| 'name': 'str', | ||
| 'descr': 'str', | ||
| 'status': 'str', | ||
| 'assigned_questions': 'int', | ||
| 'total_questions': 'int', | ||
| 'modified': 'long', | ||
| 'total_questions': 'int' | ||
| 'expires': 'long' | ||
@@ -40,11 +40,11 @@ } | ||
| self.assigned_questions = None # int | ||
| self.id = None # float | ||
| self.guid = None # str | ||
| self.id = None # float | ||
| self.expires = None # long | ||
| self.status = None # str | ||
| self.name = None # str | ||
| self.descr = None # str | ||
| self.status = None # str | ||
| self.assigned_questions = None # int | ||
| self.total_questions = None # int | ||
| self.modified = None # long | ||
| self.total_questions = None # int | ||
| self.expires = None # long | ||
@@ -26,5 +26,5 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'number': 'int', | ||
| 'title': 'str', | ||
| 'questions': 'list[QuestionInfo]', | ||
| 'number': 'int' | ||
| 'questions': 'list[QuestionInfo]' | ||
@@ -34,5 +34,5 @@ } | ||
| self.number = None # int | ||
| self.title = None # str | ||
| self.questions = None # list[QuestionInfo] | ||
| self.number = None # int | ||
@@ -26,6 +26,6 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'height': 'float', | ||
| 'x': 'float', | ||
| 'y': 'float', | ||
| 'width': 'float', | ||
| 'y': 'float', | ||
| 'x': 'float' | ||
| 'height': 'float' | ||
@@ -35,6 +35,6 @@ } | ||
| self.x = None # float | ||
| self.y = None # float | ||
| self.width = None # float | ||
| self.height = None # float | ||
| self.width = None # float | ||
| self.y = None # float | ||
| self.x = None # float | ||
@@ -26,4 +26,4 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'FullName': 'str', | ||
| 'emailAddress': 'str' | ||
| 'emailAddress': 'str', | ||
| 'FullName': 'str' | ||
@@ -33,4 +33,4 @@ } | ||
| self.emailAddress = None # str | ||
| self.FullName = None # str | ||
| self.emailAddress = None # str | ||
@@ -26,9 +26,9 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'id': 'float', | ||
| 'guid': 'str', | ||
| 'id': 'float', | ||
| 'customEmailMessage': 'str', | ||
| 'color': 'int', | ||
| 'primary_email': 'str', | ||
| 'firstname': 'str', | ||
| 'access_rights': 'int', | ||
| 'firstname': 'str' | ||
| 'color': 'int', | ||
| 'customEmailMessage': 'str' | ||
@@ -38,9 +38,9 @@ } | ||
| self.id = None # float | ||
| self.guid = None # str | ||
| self.id = None # float | ||
| self.customEmailMessage = None # str | ||
| self.color = None # int | ||
| self.primary_email = None # str | ||
| self.firstname = None # str | ||
| self.access_rights = None # int | ||
| self.firstname = None # str | ||
| self.color = None # int | ||
| self.customEmailMessage = None # str | ||
@@ -26,6 +26,6 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'documentGuid': 'str', | ||
| 'sessionGuid': 'str', | ||
| 'documentGuid': 'str', | ||
| 'collaborators': 'list[ReviewerInfo]', | ||
| 'owner': 'ReviewerInfo' | ||
| 'owner': 'ReviewerInfo', | ||
| 'collaborators': 'list[ReviewerInfo]' | ||
@@ -35,6 +35,6 @@ } | ||
| self.documentGuid = None # str | ||
| self.sessionGuid = None # str | ||
| self.documentGuid = None # str | ||
| self.owner = None # ReviewerInfo | ||
| self.collaborators = None # list[ReviewerInfo] | ||
| self.owner = None # ReviewerInfo | ||
@@ -26,18 +26,18 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'status': 'str', | ||
| 'owner': 'UserInfo', | ||
| 'sharers': 'list[UserInfo]', | ||
| 'status': 'str', | ||
| 'type_str': 'str', | ||
| 'shared_on': 'long', | ||
| 'name': 'str', | ||
| 'version': 'int', | ||
| 'size': 'long', | ||
| 'type': 'str', | ||
| 'type_str': 'str', | ||
| 'file_type_str': 'str', | ||
| 'document_path': 'str', | ||
| 'access': 'str', | ||
| 'url': 'str', | ||
| 'file_type': 'str', | ||
| 'version': 'int', | ||
| 'size': 'long', | ||
| 'guid': 'str', | ||
| 'id': 'float', | ||
| 'document_path': 'str', | ||
| 'name': 'str', | ||
| 'owner': 'UserInfo', | ||
| 'file_type_str': 'str' | ||
| 'guid': 'str' | ||
@@ -47,18 +47,18 @@ } | ||
| self.status = None # str | ||
| self.owner = None # UserInfo | ||
| self.sharers = None # list[UserInfo] | ||
| self.status = None # str | ||
| self.type_str = None # str | ||
| self.shared_on = None # long | ||
| self.name = None # str | ||
| self.version = None # int | ||
| self.size = None # long | ||
| self.type = None # str | ||
| self.type_str = None # str | ||
| self.file_type_str = None # str | ||
| self.document_path = None # str | ||
| self.access = None # str | ||
| self.url = None # str | ||
| self.file_type = None # str | ||
| self.version = None # int | ||
| self.size = None # long | ||
| self.id = None # float | ||
| self.guid = None # str | ||
| self.id = None # float | ||
| self.document_path = None # str | ||
| self.name = None # str | ||
| self.owner = None # UserInfo | ||
| self.file_type_str = None # str | ||
@@ -27,6 +27,6 @@ #!/usr/bin/env python | ||
| 'id': 'str', | ||
| 'firstName': 'str', | ||
| 'lastName': 'str', | ||
| 'email': 'str', | ||
| 'provider': 'str', | ||
| 'firstName': 'str' | ||
| 'provider': 'str' | ||
@@ -37,6 +37,6 @@ } | ||
| self.id = None # str | ||
| self.firstName = None # str | ||
| self.lastName = None # str | ||
| self.email = None # str | ||
| self.provider = None # str | ||
| self.firstName = None # str | ||
@@ -26,5 +26,5 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'firstName': 'str', | ||
| 'lastName': 'str', | ||
| 'email': 'str', | ||
| 'firstName': 'str' | ||
| 'email': 'str' | ||
@@ -34,5 +34,5 @@ } | ||
| self.firstName = None # str | ||
| self.lastName = None # str | ||
| self.email = None # str | ||
| self.firstName = None # str | ||
@@ -26,4 +26,4 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'ignored': 'str', | ||
| 'imported': 'str' | ||
| 'imported': 'str', | ||
| 'ignored': 'str' | ||
@@ -33,4 +33,4 @@ } | ||
| self.imported = None # str | ||
| self.ignored = None # str | ||
| self.imported = None # str | ||
@@ -27,8 +27,8 @@ #!/usr/bin/env python | ||
| 'id': 'str', | ||
| 'acceptableValues': 'str', | ||
| 'name': 'str', | ||
| 'mandatory': 'bool', | ||
| 'signatureFieldId': 'float', | ||
| 'locations': 'list[SignatureDocumentFieldLocationInfo]', | ||
| 'signatureFieldId': 'float', | ||
| 'fieldType': 'int', | ||
| 'mandatory': 'bool', | ||
| 'name': 'str', | ||
| 'acceptableValues': 'str', | ||
| 'defaultValue': 'str', | ||
@@ -41,10 +41,10 @@ 'tooltip': 'str' | ||
| self.id = None # str | ||
| self.acceptableValues = None # str | ||
| self.name = None # str | ||
| self.mandatory = None # bool | ||
| self.signatureFieldId = None # float | ||
| self.locations = None # list[SignatureDocumentFieldLocationInfo] | ||
| self.signatureFieldId = None # float | ||
| self.fieldType = None # int | ||
| self.mandatory = None # bool | ||
| self.name = None # str | ||
| self.acceptableValues = None # str | ||
| self.defaultValue = None # str | ||
| self.tooltip = None # str | ||
@@ -26,12 +26,12 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'locationHeight': 'float', | ||
| 'id': 'str', | ||
| 'fontColor': 'str', | ||
| 'fontName': 'str', | ||
| 'fieldId': 'str', | ||
| 'page': 'int', | ||
| 'locationX': 'float', | ||
| 'locationY': 'float', | ||
| 'locationWidth': 'float', | ||
| 'locationX': 'float', | ||
| 'fontSize': 'float', | ||
| 'fieldId': 'str', | ||
| 'locationY': 'float' | ||
| 'locationHeight': 'float', | ||
| 'fontName': 'str', | ||
| 'fontColor': 'str', | ||
| 'fontSize': 'float' | ||
@@ -41,12 +41,12 @@ } | ||
| self.locationHeight = None # float | ||
| self.id = None # str | ||
| self.fontColor = None # str | ||
| self.fontName = None # str | ||
| self.fieldId = None # str | ||
| self.page = None # int | ||
| self.locationX = None # float | ||
| self.locationY = None # float | ||
| self.locationWidth = None # float | ||
| self.locationX = None # float | ||
| self.locationHeight = None # float | ||
| self.fontName = None # str | ||
| self.fontColor = None # str | ||
| self.fontSize = None # float | ||
| self.fieldId = None # str | ||
| self.locationY = None # float | ||
@@ -27,6 +27,6 @@ #!/usr/bin/env python | ||
| 'id': 'str', | ||
| 'remoteAddress': 'str', | ||
| 'datetime': 'str', | ||
| 'userName': 'str', | ||
| 'action': 'str', | ||
| 'userName': 'str', | ||
| 'datetime': 'str' | ||
| 'remoteAddress': 'str' | ||
@@ -37,6 +37,6 @@ } | ||
| self.id = None # str | ||
| self.datetime = None # str | ||
| self.userName = None # str | ||
| self.action = None # str | ||
| self.remoteAddress = None # str | ||
| self.action = None # str | ||
| self.userName = None # str | ||
| self.datetime = None # str | ||
@@ -26,4 +26,4 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'logs': 'list[SignatureEnvelopeAuditLogInfo]', | ||
| 'envelopeId': 'str' | ||
| 'envelopeId': 'str', | ||
| 'logs': 'list[SignatureEnvelopeAuditLogInfo]' | ||
@@ -33,4 +33,4 @@ } | ||
| self.envelopeId = None # str | ||
| self.logs = None # list[SignatureEnvelopeAuditLogInfo] | ||
| self.envelopeId = None # str | ||
@@ -26,11 +26,11 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'fieldsCount': 'int', | ||
| 'originalDocumentImportedFields': 'list[SignatureDocumentFieldInfo]', | ||
| 'finalDocumentMD5': 'str', | ||
| 'documentId': 'str', | ||
| 'envelopeId': 'str', | ||
| 'order': 'int', | ||
| 'name': 'str', | ||
| 'envelopeId': 'str', | ||
| 'originalDocumentMD5': 'str', | ||
| 'finalDocumentMD5': 'str', | ||
| 'originalDocumentPagesCount': 'int', | ||
| 'originalDocumentMD5': 'str', | ||
| 'documentId': 'str' | ||
| 'fieldsCount': 'int', | ||
| 'originalDocumentImportedFields': 'list[SignatureDocumentFieldInfo]' | ||
@@ -40,11 +40,11 @@ } | ||
| self.fieldsCount = None # int | ||
| self.originalDocumentImportedFields = None # list[SignatureDocumentFieldInfo] | ||
| self.finalDocumentMD5 = None # str | ||
| self.documentId = None # str | ||
| self.envelopeId = None # str | ||
| self.order = None # int | ||
| self.name = None # str | ||
| self.envelopeId = None # str | ||
| self.originalDocumentMD5 = None # str | ||
| self.finalDocumentMD5 = None # str | ||
| self.originalDocumentPagesCount = None # int | ||
| self.originalDocumentMD5 = None # str | ||
| self.documentId = None # str | ||
| self.fieldsCount = None # int | ||
| self.originalDocumentImportedFields = None # list[SignatureDocumentFieldInfo] | ||
@@ -26,4 +26,4 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'document': 'SignatureEnvelopeDocumentInfo', | ||
| 'envelopeId': 'str' | ||
| 'envelopeId': 'str', | ||
| 'document': 'SignatureEnvelopeDocumentInfo' | ||
@@ -33,4 +33,4 @@ } | ||
| self.envelopeId = None # str | ||
| self.document = None # SignatureEnvelopeDocumentInfo | ||
| self.envelopeId = None # str | ||
@@ -26,4 +26,4 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'documents': 'list[SignatureEnvelopeDocumentInfo]', | ||
| 'envelopeId': 'str' | ||
| 'envelopeId': 'str', | ||
| 'documents': 'list[SignatureEnvelopeDocumentInfo]' | ||
@@ -33,4 +33,4 @@ } | ||
| self.envelopeId = None # str | ||
| self.documents = None # list[SignatureEnvelopeDocumentInfo] | ||
| self.envelopeId = None # str | ||
@@ -26,16 +26,16 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'regularExpression': 'str', | ||
| 'fieldType': 'int', | ||
| 'mandatory': 'bool', | ||
| 'data': 'list[int]', | ||
| 'id': 'str', | ||
| 'acceptableValues': 'str', | ||
| 'envelopeId': 'str', | ||
| 'recipientId': 'str', | ||
| 'name': 'str', | ||
| 'mandatory': 'bool', | ||
| 'order': 'float', | ||
| 'regularExpression': 'str', | ||
| 'getDataFrom': 'str', | ||
| 'data': 'str', | ||
| 'fillTimeStamp': 'str', | ||
| 'signatureFieldId': 'float', | ||
| 'locations': 'list[SignatureEnvelopeFieldLocationInfo]', | ||
| 'envelopeId': 'str', | ||
| 'name': 'str', | ||
| 'fillTimeStamp': 'str', | ||
| 'getDataFrom': 'str', | ||
| 'fieldType': 'int', | ||
| 'acceptableValues': 'str', | ||
| 'defaultValue': 'str', | ||
@@ -47,18 +47,18 @@ 'tooltip': 'str' | ||
| self.regularExpression = None # str | ||
| self.fieldType = None # int | ||
| self.mandatory = None # bool | ||
| self.data = None # list[int] | ||
| self.id = None # str | ||
| self.acceptableValues = None # str | ||
| self.envelopeId = None # str | ||
| self.recipientId = None # str | ||
| self.name = None # str | ||
| self.mandatory = None # bool | ||
| self.order = None # float | ||
| self.regularExpression = None # str | ||
| self.getDataFrom = None # str | ||
| self.data = None # str | ||
| self.fillTimeStamp = None # str | ||
| self.signatureFieldId = None # float | ||
| self.locations = None # list[SignatureEnvelopeFieldLocationInfo] | ||
| self.envelopeId = None # str | ||
| self.name = None # str | ||
| self.fillTimeStamp = None # str | ||
| self.getDataFrom = None # str | ||
| self.fieldType = None # int | ||
| self.acceptableValues = None # str | ||
| self.defaultValue = None # str | ||
| self.tooltip = None # str | ||
@@ -26,16 +26,16 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'id': 'str', | ||
| 'documentId': 'str', | ||
| 'fieldId': 'str', | ||
| 'page': 'int', | ||
| 'locationX': 'float', | ||
| 'locationY': 'float', | ||
| 'locationWidth': 'float', | ||
| 'locationHeight': 'float', | ||
| 'fontName': 'str', | ||
| 'fontColor': 'str', | ||
| 'locationX': 'float', | ||
| 'fontSize': 'float', | ||
| 'fontBold': 'bool', | ||
| 'fieldId': 'str', | ||
| 'fontSize': 'float', | ||
| 'locationY': 'float', | ||
| 'id': 'str', | ||
| 'fontItalic': 'bool', | ||
| 'fontUnderline': 'bool', | ||
| 'page': 'int', | ||
| 'locationWidth': 'float', | ||
| 'documentId': 'str' | ||
| 'fontUnderline': 'bool' | ||
@@ -45,16 +45,16 @@ } | ||
| self.id = None # str | ||
| self.documentId = None # str | ||
| self.fieldId = None # str | ||
| self.page = None # int | ||
| self.locationX = None # float | ||
| self.locationY = None # float | ||
| self.locationWidth = None # float | ||
| self.locationHeight = None # float | ||
| self.fontName = None # str | ||
| self.fontColor = None # str | ||
| self.locationX = None # float | ||
| self.fontSize = None # float | ||
| self.fontBold = None # bool | ||
| self.fieldId = None # str | ||
| self.fontSize = None # float | ||
| self.locationY = None # float | ||
| self.id = None # str | ||
| self.fontItalic = None # bool | ||
| self.fontUnderline = None # bool | ||
| self.page = None # int | ||
| self.locationWidth = None # float | ||
| self.documentId = None # str | ||
@@ -26,14 +26,14 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'page': 'int', | ||
| 'locationX': 'float', | ||
| 'locationY': 'float', | ||
| 'locationWidth': 'float', | ||
| 'locationHeight': 'float', | ||
| 'fontName': 'str', | ||
| 'fontColor': 'str', | ||
| 'fontSize': 'float', | ||
| 'fontBold': 'bool', | ||
| 'fontItalic': 'bool', | ||
| 'fontColor': 'str', | ||
| 'fontName': 'str', | ||
| 'forceNewField': 'bool', | ||
| 'fontUnderline': 'bool', | ||
| 'page': 'int', | ||
| 'locationWidth': 'float', | ||
| 'locationX': 'float', | ||
| 'fontBold': 'bool', | ||
| 'fontSize': 'float', | ||
| 'locationY': 'float' | ||
| 'forceNewField': 'bool' | ||
@@ -43,14 +43,14 @@ } | ||
| self.page = None # int | ||
| self.locationX = None # float | ||
| self.locationY = None # float | ||
| self.locationWidth = None # float | ||
| self.locationHeight = None # float | ||
| self.fontName = None # str | ||
| self.fontColor = None # str | ||
| self.fontSize = None # float | ||
| self.fontBold = None # bool | ||
| self.fontItalic = None # bool | ||
| self.fontColor = None # str | ||
| self.fontName = None # str | ||
| self.fontUnderline = None # bool | ||
| self.forceNewField = None # bool | ||
| self.fontUnderline = None # bool | ||
| self.page = None # int | ||
| self.locationWidth = None # float | ||
| self.locationX = None # float | ||
| self.fontBold = None # bool | ||
| self.fontSize = None # float | ||
| self.locationY = None # float | ||
@@ -26,6 +26,6 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'field': 'SignatureEnvelopeFieldInfo', | ||
| 'envelopeId': 'str', | ||
| 'documentId': 'str', | ||
| 'recipientId': 'str', | ||
| 'envelopeId': 'str', | ||
| 'documentId': 'str' | ||
| 'field': 'SignatureEnvelopeFieldInfo' | ||
@@ -35,6 +35,6 @@ } | ||
| self.field = None # SignatureEnvelopeFieldInfo | ||
| self.recipientId = None # str | ||
| self.envelopeId = None # str | ||
| self.documentId = None # str | ||
| self.recipientId = None # str | ||
| self.field = None # SignatureEnvelopeFieldInfo | ||
@@ -26,19 +26,19 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'name': 'str', | ||
| 'mandatory': 'bool', | ||
| 'order': 'int', | ||
| 'page': 'int', | ||
| 'locationX': 'float', | ||
| 'locationY': 'float', | ||
| 'locationWidth': 'float', | ||
| 'locationHeight': 'float', | ||
| 'regularExpression': 'str', | ||
| 'fontName': 'str', | ||
| 'fontColor': 'str', | ||
| 'forceNewField': 'bool', | ||
| 'regularExpression': 'str', | ||
| 'mandatory': 'bool', | ||
| 'locationX': 'float', | ||
| 'fontSize': 'float', | ||
| 'fontBold': 'bool', | ||
| 'fontSize': 'float', | ||
| 'locationY': 'float', | ||
| 'acceptableValues': 'str', | ||
| 'fontItalic': 'bool', | ||
| 'fontUnderline': 'bool', | ||
| 'order': 'int', | ||
| 'page': 'int', | ||
| 'name': 'str', | ||
| 'locationWidth': 'float', | ||
| 'forceNewField': 'bool', | ||
| 'acceptableValues': 'str', | ||
| 'defaultValue': 'str', | ||
@@ -50,21 +50,21 @@ 'tooltip': 'str' | ||
| self.name = None # str | ||
| self.mandatory = None # bool | ||
| self.order = None # int | ||
| self.page = None # int | ||
| self.locationX = None # float | ||
| self.locationY = None # float | ||
| self.locationWidth = None # float | ||
| self.locationHeight = None # float | ||
| self.regularExpression = None # str | ||
| self.fontName = None # str | ||
| self.fontColor = None # str | ||
| self.forceNewField = None # bool | ||
| self.regularExpression = None # str | ||
| self.mandatory = None # bool | ||
| self.locationX = None # float | ||
| self.fontSize = None # float | ||
| self.fontBold = None # bool | ||
| self.fontSize = None # float | ||
| self.locationY = None # float | ||
| self.acceptableValues = None # str | ||
| self.fontItalic = None # bool | ||
| self.fontUnderline = None # bool | ||
| self.order = None # int | ||
| self.page = None # int | ||
| self.name = None # str | ||
| self.locationWidth = None # float | ||
| self.forceNewField = None # bool | ||
| self.acceptableValues = None # str | ||
| self.defaultValue = None # str | ||
| self.tooltip = None # str | ||
@@ -26,18 +26,18 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'id': 'str', | ||
| 'name': 'str', | ||
| 'creationDateTime': 'str', | ||
| 'ownerShouldSign': 'bool', | ||
| 'recipients': 'list[SignatureEnvelopeRecipientInfo]', | ||
| 'ownerGuid': 'str', | ||
| 'status': 'int', | ||
| 'statusDateTime': 'str', | ||
| 'reminderTime': 'float', | ||
| 'stepExpireTime': 'float', | ||
| 'envelopeExpireTime': 'float', | ||
| 'reminderTime': 'float', | ||
| 'ownerShouldSign': 'bool', | ||
| 'orderedSignature': 'bool', | ||
| 'emailSubject': 'str', | ||
| 'statusDateTime': 'str', | ||
| 'id': 'str', | ||
| 'stepExpireTime': 'float', | ||
| 'emailBody': 'str', | ||
| 'documentsCount': 'float', | ||
| 'orderedSignature': 'bool', | ||
| 'documentsPages': 'float', | ||
| 'ownerGuid': 'str', | ||
| 'name': 'str' | ||
| 'recipients': 'list[SignatureEnvelopeRecipientInfo]' | ||
@@ -47,18 +47,18 @@ } | ||
| self.id = None # str | ||
| self.name = None # str | ||
| self.creationDateTime = None # str | ||
| self.ownerShouldSign = None # bool | ||
| self.recipients = None # list[SignatureEnvelopeRecipientInfo] | ||
| self.ownerGuid = None # str | ||
| self.status = None # int | ||
| self.statusDateTime = None # str | ||
| self.reminderTime = None # float | ||
| self.stepExpireTime = None # float | ||
| self.envelopeExpireTime = None # float | ||
| self.reminderTime = None # float | ||
| self.ownerShouldSign = None # bool | ||
| self.orderedSignature = None # bool | ||
| self.emailSubject = None # str | ||
| self.statusDateTime = None # str | ||
| self.id = None # str | ||
| self.stepExpireTime = None # float | ||
| self.emailBody = None # str | ||
| self.documentsCount = None # float | ||
| self.orderedSignature = None # bool | ||
| self.documentsPages = None # float | ||
| self.ownerGuid = None # str | ||
| self.name = None # str | ||
| self.recipients = None # list[SignatureEnvelopeRecipientInfo] | ||
@@ -26,17 +26,17 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'id': 'str', | ||
| 'firstName': 'str', | ||
| 'lastName': 'str', | ||
| 'delegatedRecipientId': 'float', | ||
| 'email': 'str', | ||
| 'userGuid': 'str', | ||
| 'order': 'int', | ||
| 'roleId': 'float', | ||
| 'status': 'int', | ||
| 'statusMessage': 'str', | ||
| 'statusDateTime': 'datetime', | ||
| 'statusMessage': 'str', | ||
| 'id': 'str', | ||
| 'signatureBrowser': 'str', | ||
| 'order': 'int', | ||
| 'email': 'str', | ||
| 'delegatedRecipientId': 'float', | ||
| 'signatureFingerprint': 'str', | ||
| 'signatureHost': 'str', | ||
| 'signatureLocation': 'str', | ||
| 'signatureFingerprint': 'str', | ||
| 'firstName': 'str', | ||
| 'userGuid': 'str', | ||
| 'roleId': 'float', | ||
| 'signatureHost': 'str' | ||
| 'signatureBrowser': 'str' | ||
@@ -46,17 +46,17 @@ } | ||
| self.id = None # str | ||
| self.firstName = None # str | ||
| self.lastName = None # str | ||
| self.delegatedRecipientId = None # float | ||
| self.email = None # str | ||
| self.userGuid = None # str | ||
| self.order = None # int | ||
| self.roleId = None # float | ||
| self.status = None # int | ||
| self.statusMessage = None # str | ||
| self.statusDateTime = None # datetime | ||
| self.statusMessage = None # str | ||
| self.id = None # str | ||
| self.signatureBrowser = None # str | ||
| self.order = None # int | ||
| self.email = None # str | ||
| self.signatureLocation = None # str | ||
| self.delegatedRecipientId = None # float | ||
| self.signatureFingerprint = None # str | ||
| self.firstName = None # str | ||
| self.userGuid = None # str | ||
| self.roleId = None # float | ||
| self.signatureHost = None # str | ||
| self.signatureLocation = None # str | ||
| self.signatureBrowser = None # str | ||
@@ -26,4 +26,4 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'recipients': 'list[SignatureEnvelopeRecipientInfo]', | ||
| 'envelopeId': 'str' | ||
| 'envelopeId': 'str', | ||
| 'recipients': 'list[SignatureEnvelopeRecipientInfo]' | ||
@@ -33,4 +33,4 @@ } | ||
| self.envelopeId = None # str | ||
| self.recipients = None # list[SignatureEnvelopeRecipientInfo] | ||
| self.envelopeId = None # str | ||
@@ -26,5 +26,5 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'dates': 'list[str]', | ||
| 'documents': 'list[SignatureEnvelopeDocumentInfo]', | ||
| 'recipients': 'list[SignatureEnvelopeRecipientInfo]', | ||
| 'documents': 'list[SignatureEnvelopeDocumentInfo]' | ||
| 'dates': 'list[str]' | ||
@@ -34,5 +34,5 @@ } | ||
| self.documents = None # list[SignatureEnvelopeDocumentInfo] | ||
| self.recipients = None # list[SignatureEnvelopeRecipientInfo] | ||
| self.dates = None # list[str] | ||
| self.recipients = None # list[SignatureEnvelopeRecipientInfo] | ||
| self.documents = None # list[SignatureEnvelopeDocumentInfo] | ||
@@ -27,9 +27,9 @@ #!/usr/bin/env python | ||
| 'ownerShouldSign': 'int', | ||
| 'orderedSignature': 'int', | ||
| 'reminderTime': 'float', | ||
| 'stepExpireTime': 'float', | ||
| 'envelopeExpireTime': 'float', | ||
| 'emailSubject': 'str', | ||
| 'emailBody': 'str', | ||
| 'envelopeExpireTime': 'float', | ||
| 'orderedSignature': 'int', | ||
| 'isDemo': 'bool', | ||
| 'reminderTime': 'float', | ||
| 'emailSubject': 'str' | ||
| 'isDemo': 'bool' | ||
@@ -40,9 +40,9 @@ } | ||
| self.ownerShouldSign = None # int | ||
| self.orderedSignature = None # int | ||
| self.reminderTime = None # float | ||
| self.stepExpireTime = None # float | ||
| self.envelopeExpireTime = None # float | ||
| self.emailSubject = None # str | ||
| self.emailBody = None # str | ||
| self.envelopeExpireTime = None # float | ||
| self.orderedSignature = None # int | ||
| self.isDemo = None # bool | ||
| self.reminderTime = None # float | ||
| self.emailSubject = None # str | ||
@@ -26,4 +26,4 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'envelopes': 'list[SignatureEnvelopeInfo]', | ||
| 'envelopesCount': 'int' | ||
| 'envelopesCount': 'int', | ||
| 'envelopes': 'list[SignatureEnvelopeInfo]' | ||
@@ -33,4 +33,4 @@ } | ||
| self.envelopesCount = None # int | ||
| self.envelopes = None # list[SignatureEnvelopeInfo] | ||
| self.envelopesCount = None # int | ||
@@ -26,18 +26,18 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'id': 'str', | ||
| 'name': 'str', | ||
| 'graphSizeW': 'int', | ||
| 'graphSizeH': 'int', | ||
| 'getDataFrom': 'str', | ||
| 'regularExpression': 'str', | ||
| 'fontName': 'str', | ||
| 'fontColor': 'str', | ||
| 'regularExpression': 'str', | ||
| 'fieldType': 'int', | ||
| 'graphSizeH': 'int', | ||
| 'fontSize': 'float', | ||
| 'fontBold': 'bool', | ||
| 'fontSize': 'float', | ||
| 'fontItalic': 'bool', | ||
| 'fontUnderline': 'bool', | ||
| 'isSystem': 'bool', | ||
| 'id': 'str', | ||
| 'fieldType': 'int', | ||
| 'acceptableValues': 'str', | ||
| 'fontItalic': 'bool', | ||
| 'fontUnderline': 'bool', | ||
| 'name': 'str', | ||
| 'getDataFrom': 'str', | ||
| 'defaultValue': 'str', | ||
| 'graphSizeW': 'int' | ||
| 'defaultValue': 'str' | ||
@@ -47,18 +47,18 @@ } | ||
| self.id = None # str | ||
| self.name = None # str | ||
| self.graphSizeW = None # int | ||
| self.graphSizeH = None # int | ||
| self.getDataFrom = None # str | ||
| self.regularExpression = None # str | ||
| self.fontName = None # str | ||
| self.fontColor = None # str | ||
| self.regularExpression = None # str | ||
| self.fieldType = None # int | ||
| self.graphSizeH = None # int | ||
| self.fontSize = None # float | ||
| self.fontBold = None # bool | ||
| self.fontSize = None # float | ||
| self.fontItalic = None # bool | ||
| self.fontUnderline = None # bool | ||
| self.isSystem = None # bool | ||
| self.id = None # str | ||
| self.fieldType = None # int | ||
| self.acceptableValues = None # str | ||
| self.fontItalic = None # bool | ||
| self.fontUnderline = None # bool | ||
| self.name = None # str | ||
| self.getDataFrom = None # str | ||
| self.defaultValue = None # str | ||
| self.graphSizeW = None # int | ||
@@ -26,7 +26,7 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'regularExpression': 'str', | ||
| 'name': 'str', | ||
| 'graphSizeW': 'int', | ||
| 'graphSizeH': 'int', | ||
| 'getDataFrom': 'str', | ||
| 'graphSizeW': 'int' | ||
| 'regularExpression': 'str' | ||
@@ -36,7 +36,7 @@ } | ||
| self.regularExpression = None # str | ||
| self.name = None # str | ||
| self.graphSizeW = None # int | ||
| self.graphSizeH = None # int | ||
| self.getDataFrom = None # str | ||
| self.graphSizeW = None # int | ||
| self.regularExpression = None # str | ||
@@ -27,9 +27,9 @@ #!/usr/bin/env python | ||
| 'id': 'str', | ||
| 'name': 'str', | ||
| 'formGuid': 'str', | ||
| 'documentGuid': 'str', | ||
| 'order': 'int', | ||
| 'originalDocumentGuid': 'str', | ||
| 'name': 'str', | ||
| 'originalDocumentMD5': 'str', | ||
| 'assignedDateTime': 'str', | ||
| 'formGuid': 'str', | ||
| 'originalDocumentMD5': 'str' | ||
| 'order': 'int' | ||
@@ -40,9 +40,9 @@ } | ||
| self.id = None # str | ||
| self.name = None # str | ||
| self.formGuid = None # str | ||
| self.documentGuid = None # str | ||
| self.order = None # int | ||
| self.originalDocumentGuid = None # str | ||
| self.name = None # str | ||
| self.originalDocumentMD5 = None # str | ||
| self.assignedDateTime = None # str | ||
| self.formGuid = None # str | ||
| self.originalDocumentMD5 = None # str | ||
| self.order = None # int | ||
@@ -26,4 +26,4 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'document': 'SignatureFormDocumentInfo', | ||
| 'formId': 'str' | ||
| 'formId': 'str', | ||
| 'document': 'SignatureFormDocumentInfo' | ||
@@ -33,4 +33,4 @@ } | ||
| self.formId = None # str | ||
| self.document = None # SignatureFormDocumentInfo | ||
| self.formId = None # str | ||
@@ -26,4 +26,4 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'documents': 'list[SignatureFormDocumentInfo]', | ||
| 'formId': 'str' | ||
| 'formId': 'str', | ||
| 'documents': 'list[SignatureFormDocumentInfo]' | ||
@@ -33,4 +33,4 @@ } | ||
| self.formId = None # str | ||
| self.documents = None # list[SignatureFormDocumentInfo] | ||
| self.formId = None # str | ||
@@ -27,13 +27,13 @@ #!/usr/bin/env python | ||
| 'id': 'str', | ||
| 'acceptableValues': 'str', | ||
| 'formGuid': 'str', | ||
| 'participantGuid': 'str', | ||
| 'name': 'str', | ||
| 'mandatory': 'bool', | ||
| 'regularExpression': 'str', | ||
| 'data': 'str', | ||
| 'fillTimeStamp': 'str', | ||
| 'locations': 'list[SignatureFormFieldLocationInfo]', | ||
| 'fieldType': 'int', | ||
| 'mandatory': 'bool', | ||
| 'name': 'str', | ||
| 'data': 'list[int]', | ||
| 'fillTimeStamp': 'str', | ||
| 'defaultValue': 'str', | ||
| 'formGuid': 'str' | ||
| 'acceptableValues': 'str', | ||
| 'defaultValue': 'str' | ||
@@ -44,13 +44,13 @@ } | ||
| self.id = None # str | ||
| self.acceptableValues = None # str | ||
| self.formGuid = None # str | ||
| self.participantGuid = None # str | ||
| self.name = None # str | ||
| self.mandatory = None # bool | ||
| self.regularExpression = None # str | ||
| self.data = None # str | ||
| self.fillTimeStamp = None # str | ||
| self.locations = None # list[SignatureFormFieldLocationInfo] | ||
| self.fieldType = None # int | ||
| self.mandatory = None # bool | ||
| self.name = None # str | ||
| self.data = None # list[int] | ||
| self.fillTimeStamp = None # str | ||
| self.acceptableValues = None # str | ||
| self.defaultValue = None # str | ||
| self.formGuid = None # str | ||
@@ -26,16 +26,16 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'id': 'str', | ||
| 'documentGuid': 'str', | ||
| 'fieldGuid': 'str', | ||
| 'page': 'int', | ||
| 'locationX': 'float', | ||
| 'locationY': 'float', | ||
| 'locationWidth': 'float', | ||
| 'locationHeight': 'float', | ||
| 'fontName': 'str', | ||
| 'fontColor': 'str', | ||
| 'locationX': 'float', | ||
| 'fontSize': 'float', | ||
| 'fontBold': 'bool', | ||
| 'fontSize': 'float', | ||
| 'locationY': 'float', | ||
| 'id': 'str', | ||
| 'documentGuid': 'str', | ||
| 'fontItalic': 'bool', | ||
| 'fontUnderline': 'bool', | ||
| 'page': 'int', | ||
| 'fieldGuid': 'str', | ||
| 'locationWidth': 'float' | ||
| 'fontUnderline': 'bool' | ||
@@ -45,16 +45,16 @@ } | ||
| self.id = None # str | ||
| self.documentGuid = None # str | ||
| self.fieldGuid = None # str | ||
| self.page = None # int | ||
| self.locationX = None # float | ||
| self.locationY = None # float | ||
| self.locationWidth = None # float | ||
| self.locationHeight = None # float | ||
| self.fontName = None # str | ||
| self.fontColor = None # str | ||
| self.locationX = None # float | ||
| self.fontSize = None # float | ||
| self.fontBold = None # bool | ||
| self.fontSize = None # float | ||
| self.locationY = None # float | ||
| self.id = None # str | ||
| self.documentGuid = None # str | ||
| self.fontItalic = None # bool | ||
| self.fontUnderline = None # bool | ||
| self.page = None # int | ||
| self.fieldGuid = None # str | ||
| self.locationWidth = None # float | ||
@@ -26,14 +26,14 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'page': 'int', | ||
| 'locationX': 'float', | ||
| 'locationY': 'float', | ||
| 'locationWidth': 'float', | ||
| 'locationHeight': 'float', | ||
| 'fontName': 'str', | ||
| 'fontColor': 'str', | ||
| 'fontSize': 'float', | ||
| 'fontBold': 'bool', | ||
| 'fontItalic': 'bool', | ||
| 'fontColor': 'str', | ||
| 'fontName': 'str', | ||
| 'forceNewField': 'bool', | ||
| 'fontUnderline': 'bool', | ||
| 'page': 'int', | ||
| 'locationWidth': 'float', | ||
| 'locationX': 'float', | ||
| 'fontBold': 'bool', | ||
| 'fontSize': 'float', | ||
| 'locationY': 'float' | ||
| 'forceNewField': 'bool' | ||
@@ -43,14 +43,14 @@ } | ||
| self.page = None # int | ||
| self.locationX = None # float | ||
| self.locationY = None # float | ||
| self.locationWidth = None # float | ||
| self.locationHeight = None # float | ||
| self.fontName = None # str | ||
| self.fontColor = None # str | ||
| self.fontSize = None # float | ||
| self.fontBold = None # bool | ||
| self.fontItalic = None # bool | ||
| self.fontColor = None # str | ||
| self.fontName = None # str | ||
| self.fontUnderline = None # bool | ||
| self.forceNewField = None # bool | ||
| self.fontUnderline = None # bool | ||
| self.page = None # int | ||
| self.locationWidth = None # float | ||
| self.locationX = None # float | ||
| self.fontBold = None # bool | ||
| self.fontSize = None # float | ||
| self.locationY = None # float | ||
@@ -26,6 +26,6 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'field': 'SignatureFormFieldInfo', | ||
| 'formId': 'str', | ||
| 'documentId': 'str', | ||
| 'participantId': 'str', | ||
| 'documentId': 'str' | ||
| 'field': 'SignatureFormFieldInfo' | ||
@@ -35,6 +35,6 @@ } | ||
| self.field = None # SignatureFormFieldInfo | ||
| self.formId = None # str | ||
| self.documentId = None # str | ||
| self.participantId = None # str | ||
| self.documentId = None # str | ||
| self.field = None # SignatureFormFieldInfo | ||
@@ -26,19 +26,19 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'name': 'str', | ||
| 'mandatory': 'bool', | ||
| 'order': 'int', | ||
| 'page': 'int', | ||
| 'locationX': 'float', | ||
| 'locationY': 'float', | ||
| 'locationWidth': 'float', | ||
| 'locationHeight': 'float', | ||
| 'regularExpression': 'str', | ||
| 'fontName': 'str', | ||
| 'fontColor': 'str', | ||
| 'forceNewField': 'bool', | ||
| 'regularExpression': 'str', | ||
| 'mandatory': 'bool', | ||
| 'locationX': 'float', | ||
| 'fontSize': 'float', | ||
| 'fontBold': 'bool', | ||
| 'fontSize': 'float', | ||
| 'locationY': 'float', | ||
| 'acceptableValues': 'str', | ||
| 'fontItalic': 'bool', | ||
| 'fontUnderline': 'bool', | ||
| 'order': 'int', | ||
| 'page': 'int', | ||
| 'name': 'str', | ||
| 'locationWidth': 'float', | ||
| 'forceNewField': 'bool', | ||
| 'acceptableValues': 'str', | ||
| 'defaultValue': 'str', | ||
@@ -50,21 +50,21 @@ 'tooltip': 'str' | ||
| self.name = None # str | ||
| self.mandatory = None # bool | ||
| self.order = None # int | ||
| self.page = None # int | ||
| self.locationX = None # float | ||
| self.locationY = None # float | ||
| self.locationWidth = None # float | ||
| self.locationHeight = None # float | ||
| self.regularExpression = None # str | ||
| self.fontName = None # str | ||
| self.fontColor = None # str | ||
| self.forceNewField = None # bool | ||
| self.regularExpression = None # str | ||
| self.mandatory = None # bool | ||
| self.locationX = None # float | ||
| self.fontSize = None # float | ||
| self.fontBold = None # bool | ||
| self.fontSize = None # float | ||
| self.locationY = None # float | ||
| self.acceptableValues = None # str | ||
| self.fontItalic = None # bool | ||
| self.fontUnderline = None # bool | ||
| self.order = None # int | ||
| self.page = None # int | ||
| self.name = None # str | ||
| self.locationWidth = None # float | ||
| self.forceNewField = None # bool | ||
| self.acceptableValues = None # str | ||
| self.defaultValue = None # str | ||
| self.tooltip = None # str | ||
@@ -27,13 +27,13 @@ #!/usr/bin/env python | ||
| 'id': 'str', | ||
| 'canParticipantDownloadForm': 'bool', | ||
| 'participantsCount': 'float', | ||
| 'name': 'str', | ||
| 'ownerGuid': 'str', | ||
| 'templateGuid': 'str', | ||
| 'createdTimeStamp': 'str', | ||
| 'status': 'int', | ||
| 'statusDateTime': 'str', | ||
| 'documentsCount': 'float', | ||
| 'status': 'int', | ||
| 'documentsPages': 'float', | ||
| 'ownerGuid': 'str', | ||
| 'name': 'str', | ||
| 'participantsCount': 'float', | ||
| 'fieldsInFinalFileName': 'list[str]', | ||
| 'statusDateTime': 'str' | ||
| 'canParticipantDownloadForm': 'bool' | ||
@@ -44,13 +44,13 @@ } | ||
| self.id = None # str | ||
| self.canParticipantDownloadForm = None # bool | ||
| self.participantsCount = None # float | ||
| self.name = None # str | ||
| self.ownerGuid = None # str | ||
| self.templateGuid = None # str | ||
| self.createdTimeStamp = None # str | ||
| self.status = None # int | ||
| self.statusDateTime = None # str | ||
| self.documentsCount = None # float | ||
| self.status = None # int | ||
| self.documentsPages = None # float | ||
| self.ownerGuid = None # str | ||
| self.name = None # str | ||
| self.participantsCount = None # float | ||
| self.fieldsInFinalFileName = None # list[str] | ||
| self.statusDateTime = None # str | ||
| self.canParticipantDownloadForm = None # bool | ||
@@ -26,4 +26,4 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'dates': 'list[str]', | ||
| 'documents': 'list[SignatureFormDocumentInfo]' | ||
| 'documents': 'list[SignatureFormDocumentInfo]', | ||
| 'dates': 'list[str]' | ||
@@ -33,4 +33,4 @@ } | ||
| self.documents = None # list[SignatureFormDocumentInfo] | ||
| self.dates = None # list[str] | ||
| self.documents = None # list[SignatureFormDocumentInfo] | ||
@@ -26,5 +26,5 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'canParticipantDownloadForm': 'bool', | ||
| 'name': 'str', | ||
| 'fieldsInFinalFileName': 'str' | ||
| 'fieldsInFinalFileName': 'str', | ||
| 'canParticipantDownloadForm': 'bool' | ||
@@ -34,5 +34,5 @@ } | ||
| self.canParticipantDownloadForm = None # bool | ||
| self.name = None # str | ||
| self.fieldsInFinalFileName = None # str | ||
| self.canParticipantDownloadForm = None # bool | ||
@@ -27,4 +27,4 @@ #!/usr/bin/env python | ||
| 'id': 'str', | ||
| 'name': 'str', | ||
| 'values': 'str', | ||
| 'name': 'str', | ||
| 'defaultValue': 'str' | ||
@@ -36,5 +36,5 @@ | ||
| self.id = None # str | ||
| self.name = None # str | ||
| self.values = None # str | ||
| self.name = None # str | ||
| self.defaultValue = None # str | ||
@@ -26,4 +26,4 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'name': 'str', | ||
| 'values': 'str', | ||
| 'name': 'str', | ||
| 'defaultValue': 'str' | ||
@@ -34,5 +34,5 @@ | ||
| self.name = None # str | ||
| self.values = None # str | ||
| self.name = None # str | ||
| self.defaultValue = None # str | ||
@@ -27,7 +27,7 @@ #!/usr/bin/env python | ||
| 'id': 'str', | ||
| 'canDelegate': 'int', | ||
| 'canSign': 'int', | ||
| 'name': 'str', | ||
| 'canEdit': 'int', | ||
| 'canAnnotate': 'int' | ||
| 'canSign': 'int', | ||
| 'canAnnotate': 'int', | ||
| 'canDelegate': 'int' | ||
@@ -38,7 +38,7 @@ } | ||
| self.id = None # str | ||
| self.canDelegate = None # int | ||
| self.canSign = None # int | ||
| self.name = None # str | ||
| self.canEdit = None # int | ||
| self.canSign = None # int | ||
| self.canAnnotate = None # int | ||
| self.canDelegate = None # int | ||
@@ -26,17 +26,17 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'id': 'str', | ||
| 'userGuid': 'str', | ||
| 'recipientId': 'float', | ||
| 'name': 'str', | ||
| 'companyName': 'str', | ||
| 'position': 'str', | ||
| 'firstName': 'str', | ||
| 'lastName': 'str', | ||
| 'companyName': 'str', | ||
| 'id': 'str', | ||
| 'fullName': 'str', | ||
| 'textInitials': 'str', | ||
| 'signatureImageFileId': 'float', | ||
| 'recipientId': 'float', | ||
| 'createdTimeStamp': 'datetime', | ||
| 'initialsImageUrl': 'str', | ||
| 'name': 'str', | ||
| 'initialsImageFileId': 'float', | ||
| 'fullName': 'str', | ||
| 'signatureImageUrl': 'str', | ||
| 'firstName': 'str', | ||
| 'textInitials': 'str', | ||
| 'userGuid': 'str' | ||
| 'initialsImageUrl': 'str', | ||
| 'createdTimeStamp': 'datetime' | ||
@@ -46,17 +46,17 @@ } | ||
| self.id = None # str | ||
| self.userGuid = None # str | ||
| self.recipientId = None # float | ||
| self.name = None # str | ||
| self.companyName = None # str | ||
| self.position = None # str | ||
| self.firstName = None # str | ||
| self.lastName = None # str | ||
| self.companyName = None # str | ||
| self.id = None # str | ||
| self.fullName = None # str | ||
| self.textInitials = None # str | ||
| self.signatureImageFileId = None # float | ||
| self.recipientId = None # float | ||
| self.createdTimeStamp = None # datetime | ||
| self.initialsImageUrl = None # str | ||
| self.name = None # str | ||
| self.initialsImageFileId = None # float | ||
| self.fullName = None # str | ||
| self.signatureImageUrl = None # str | ||
| self.firstName = None # str | ||
| self.textInitials = None # str | ||
| self.userGuid = None # str | ||
| self.initialsImageUrl = None # str | ||
| self.createdTimeStamp = None # datetime | ||
@@ -26,10 +26,10 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'name': 'str', | ||
| 'companyName': 'str', | ||
| 'position': 'str', | ||
| 'initialsData': 'str', | ||
| 'firstName': 'str', | ||
| 'lastName': 'str', | ||
| 'textInitials': 'str', | ||
| 'signatureData': 'str', | ||
| 'name': 'str', | ||
| 'firstName': 'str', | ||
| 'companyName': 'str', | ||
| 'textInitials': 'str' | ||
| 'initialsData': 'str' | ||
@@ -39,10 +39,10 @@ } | ||
| self.name = None # str | ||
| self.companyName = None # str | ||
| self.position = None # str | ||
| self.initialsData = None # str | ||
| self.firstName = None # str | ||
| self.lastName = None # str | ||
| self.textInitials = None # str | ||
| self.signatureData = None # str | ||
| self.name = None # str | ||
| self.firstName = None # str | ||
| self.companyName = None # str | ||
| self.textInitials = None # str | ||
| self.initialsData = None # str | ||
@@ -26,9 +26,9 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'name': 'str', | ||
| 'top': 'float', | ||
| 'left': 'float', | ||
| 'width': 'float', | ||
| 'height': 'float', | ||
| 'placeSingatureOn': 'str', | ||
| 'width': 'float', | ||
| 'name': 'str', | ||
| 'data': 'str', | ||
| 'left': 'float', | ||
| 'top': 'float' | ||
| 'data': 'str' | ||
@@ -38,9 +38,9 @@ } | ||
| self.name = None # str | ||
| self.top = None # float | ||
| self.left = None # float | ||
| self.width = None # float | ||
| self.height = None # float | ||
| self.placeSingatureOn = None # str | ||
| self.width = None # float | ||
| self.name = None # str | ||
| self.data = None # str | ||
| self.left = None # float | ||
| self.top = None # float | ||
@@ -26,9 +26,9 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'documentId': 'str', | ||
| 'templateId': 'str', | ||
| 'fieldsCount': 'int', | ||
| 'order': 'int', | ||
| 'name': 'str', | ||
| 'originalDocumentMD5': 'str', | ||
| 'originalDocumentPagesCount': 'int', | ||
| 'originalDocumentMD5': 'str', | ||
| 'documentId': 'str' | ||
| 'fieldsCount': 'int' | ||
@@ -38,9 +38,9 @@ } | ||
| self.documentId = None # str | ||
| self.templateId = None # str | ||
| self.fieldsCount = None # int | ||
| self.order = None # int | ||
| self.name = None # str | ||
| self.originalDocumentMD5 = None # str | ||
| self.originalDocumentPagesCount = None # int | ||
| self.originalDocumentMD5 = None # str | ||
| self.documentId = None # str | ||
| self.fieldsCount = None # int | ||
@@ -26,13 +26,13 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'regularExpression': 'str', | ||
| 'fieldType': 'int', | ||
| 'mandatory': 'bool', | ||
| 'id': 'str', | ||
| 'templateId': 'str', | ||
| 'acceptableValues': 'str', | ||
| 'recipientId': 'str', | ||
| 'name': 'str', | ||
| 'mandatory': 'bool', | ||
| 'order': 'float', | ||
| 'regularExpression': 'str', | ||
| 'signatureFieldId': 'float', | ||
| 'locations': 'list[SignatureTemplateFieldLocationInfo]', | ||
| 'name': 'str', | ||
| 'fieldType': 'int', | ||
| 'acceptableValues': 'str', | ||
| 'defaultValue': 'str', | ||
@@ -44,15 +44,15 @@ 'tooltip': 'str' | ||
| self.regularExpression = None # str | ||
| self.fieldType = None # int | ||
| self.mandatory = None # bool | ||
| self.id = None # str | ||
| self.templateId = None # str | ||
| self.acceptableValues = None # str | ||
| self.recipientId = None # str | ||
| self.name = None # str | ||
| self.mandatory = None # bool | ||
| self.order = None # float | ||
| self.regularExpression = None # str | ||
| self.signatureFieldId = None # float | ||
| self.locations = None # list[SignatureTemplateFieldLocationInfo] | ||
| self.name = None # str | ||
| self.fieldType = None # int | ||
| self.acceptableValues = None # str | ||
| self.defaultValue = None # str | ||
| self.tooltip = None # str | ||
@@ -26,16 +26,16 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'id': 'str', | ||
| 'documentId': 'str', | ||
| 'fieldId': 'str', | ||
| 'page': 'int', | ||
| 'locationX': 'float', | ||
| 'locationY': 'float', | ||
| 'locationWidth': 'float', | ||
| 'locationHeight': 'float', | ||
| 'fontName': 'str', | ||
| 'fontColor': 'str', | ||
| 'locationX': 'float', | ||
| 'fontSize': 'float', | ||
| 'fontBold': 'bool', | ||
| 'fieldId': 'str', | ||
| 'fontSize': 'float', | ||
| 'locationY': 'float', | ||
| 'id': 'str', | ||
| 'fontItalic': 'bool', | ||
| 'fontUnderline': 'bool', | ||
| 'page': 'int', | ||
| 'locationWidth': 'float', | ||
| 'documentId': 'str' | ||
| 'fontUnderline': 'bool' | ||
@@ -45,16 +45,16 @@ } | ||
| self.id = None # str | ||
| self.documentId = None # str | ||
| self.fieldId = None # str | ||
| self.page = None # int | ||
| self.locationX = None # float | ||
| self.locationY = None # float | ||
| self.locationWidth = None # float | ||
| self.locationHeight = None # float | ||
| self.fontName = None # str | ||
| self.fontColor = None # str | ||
| self.locationX = None # float | ||
| self.fontSize = None # float | ||
| self.fontBold = None # bool | ||
| self.fieldId = None # str | ||
| self.fontSize = None # float | ||
| self.locationY = None # float | ||
| self.id = None # str | ||
| self.fontItalic = None # bool | ||
| self.fontUnderline = None # bool | ||
| self.page = None # int | ||
| self.locationWidth = None # float | ||
| self.documentId = None # str | ||
@@ -26,14 +26,14 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'page': 'int', | ||
| 'locationX': 'float', | ||
| 'locationY': 'float', | ||
| 'locationWidth': 'float', | ||
| 'locationHeight': 'float', | ||
| 'fontName': 'str', | ||
| 'fontColor': 'str', | ||
| 'fontSize': 'float', | ||
| 'fontBold': 'bool', | ||
| 'fontItalic': 'bool', | ||
| 'fontColor': 'str', | ||
| 'fontName': 'str', | ||
| 'forceNewField': 'bool', | ||
| 'fontUnderline': 'bool', | ||
| 'page': 'int', | ||
| 'locationWidth': 'float', | ||
| 'locationX': 'float', | ||
| 'fontBold': 'bool', | ||
| 'fontSize': 'float', | ||
| 'locationY': 'float' | ||
| 'forceNewField': 'bool' | ||
@@ -43,14 +43,14 @@ } | ||
| self.page = None # int | ||
| self.locationX = None # float | ||
| self.locationY = None # float | ||
| self.locationWidth = None # float | ||
| self.locationHeight = None # float | ||
| self.fontName = None # str | ||
| self.fontColor = None # str | ||
| self.fontSize = None # float | ||
| self.fontBold = None # bool | ||
| self.fontItalic = None # bool | ||
| self.fontColor = None # str | ||
| self.fontName = None # str | ||
| self.fontUnderline = None # bool | ||
| self.forceNewField = None # bool | ||
| self.fontUnderline = None # bool | ||
| self.page = None # int | ||
| self.locationWidth = None # float | ||
| self.locationX = None # float | ||
| self.fontBold = None # bool | ||
| self.fontSize = None # float | ||
| self.locationY = None # float | ||
@@ -26,6 +26,6 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'field': 'SignatureTemplateFieldInfo', | ||
| 'templateId': 'str', | ||
| 'documentId': 'str', | ||
| 'recipientId': 'str', | ||
| 'documentId': 'str' | ||
| 'field': 'SignatureTemplateFieldInfo' | ||
@@ -35,6 +35,6 @@ } | ||
| self.field = None # SignatureTemplateFieldInfo | ||
| self.templateId = None # str | ||
| self.documentId = None # str | ||
| self.recipientId = None # str | ||
| self.documentId = None # str | ||
| self.field = None # SignatureTemplateFieldInfo | ||
@@ -26,19 +26,19 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'name': 'str', | ||
| 'mandatory': 'bool', | ||
| 'order': 'int', | ||
| 'page': 'int', | ||
| 'locationX': 'float', | ||
| 'locationY': 'float', | ||
| 'locationHeight': 'float', | ||
| 'locationWidth': 'float', | ||
| 'regularExpression': 'str', | ||
| 'fontName': 'str', | ||
| 'fontColor': 'str', | ||
| 'forceNewField': 'bool', | ||
| 'regularExpression': 'str', | ||
| 'mandatory': 'bool', | ||
| 'locationX': 'float', | ||
| 'fontSize': 'float', | ||
| 'fontBold': 'bool', | ||
| 'fontSize': 'float', | ||
| 'locationY': 'float', | ||
| 'acceptableValues': 'str', | ||
| 'fontItalic': 'bool', | ||
| 'fontUnderline': 'bool', | ||
| 'order': 'int', | ||
| 'page': 'int', | ||
| 'name': 'str', | ||
| 'locationWidth': 'float', | ||
| 'forceNewField': 'bool', | ||
| 'acceptableValues': 'str', | ||
| 'defaultValue': 'str', | ||
@@ -50,21 +50,21 @@ 'tooltip': 'str' | ||
| self.name = None # str | ||
| self.mandatory = None # bool | ||
| self.order = None # int | ||
| self.page = None # int | ||
| self.locationX = None # float | ||
| self.locationY = None # float | ||
| self.locationHeight = None # float | ||
| self.locationWidth = None # float | ||
| self.regularExpression = None # str | ||
| self.fontName = None # str | ||
| self.fontColor = None # str | ||
| self.forceNewField = None # bool | ||
| self.regularExpression = None # str | ||
| self.mandatory = None # bool | ||
| self.locationX = None # float | ||
| self.fontSize = None # float | ||
| self.fontBold = None # bool | ||
| self.fontSize = None # float | ||
| self.locationY = None # float | ||
| self.acceptableValues = None # str | ||
| self.fontItalic = None # bool | ||
| self.fontUnderline = None # bool | ||
| self.order = None # int | ||
| self.page = None # int | ||
| self.name = None # str | ||
| self.locationWidth = None # float | ||
| self.forceNewField = None # bool | ||
| self.acceptableValues = None # str | ||
| self.defaultValue = None # str | ||
| self.tooltip = None # str | ||
@@ -26,15 +26,15 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'ownerShouldSign': 'bool', | ||
| 'recipients': 'list[SignatureTemplateRecipientInfo]', | ||
| 'id': 'str', | ||
| 'name': 'str', | ||
| 'ownerGuid': 'str', | ||
| 'reminderTime': 'float', | ||
| 'emailSubject': 'str', | ||
| 'id': 'str', | ||
| 'stepExpireTime': 'float', | ||
| 'templateExpireTime': 'float', | ||
| 'ownerShouldSign': 'bool', | ||
| 'orderedSignature': 'bool', | ||
| 'emailSubject': 'str', | ||
| 'emailBody': 'str', | ||
| 'orderedSignature': 'bool', | ||
| 'documentsCount': 'float', | ||
| 'ownerGuid': 'str', | ||
| 'documentsPages': 'float', | ||
| 'name': 'str' | ||
| 'recipients': 'list[SignatureTemplateRecipientInfo]' | ||
@@ -44,15 +44,15 @@ } | ||
| self.ownerShouldSign = None # bool | ||
| self.recipients = None # list[SignatureTemplateRecipientInfo] | ||
| self.id = None # str | ||
| self.name = None # str | ||
| self.ownerGuid = None # str | ||
| self.reminderTime = None # float | ||
| self.emailSubject = None # str | ||
| self.id = None # str | ||
| self.stepExpireTime = None # float | ||
| self.templateExpireTime = None # float | ||
| self.ownerShouldSign = None # bool | ||
| self.orderedSignature = None # bool | ||
| self.emailSubject = None # str | ||
| self.emailBody = None # str | ||
| self.orderedSignature = None # bool | ||
| self.documentsCount = None # float | ||
| self.ownerGuid = None # str | ||
| self.documentsPages = None # float | ||
| self.name = None # str | ||
| self.recipients = None # list[SignatureTemplateRecipientInfo] | ||
@@ -27,4 +27,4 @@ #!/usr/bin/env python | ||
| 'id': 'str', | ||
| 'nickname': 'str', | ||
| 'order': 'int', | ||
| 'nickname': 'str', | ||
| 'roleId': 'float' | ||
@@ -36,5 +36,5 @@ | ||
| self.id = None # str | ||
| self.nickname = None # str | ||
| self.order = None # int | ||
| self.nickname = None # str | ||
| self.roleId = None # float | ||
@@ -26,4 +26,4 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'recipients': 'list[SignatureTemplateRecipientInfo]', | ||
| 'documents': 'list[SignatureTemplateDocumentInfo]' | ||
| 'documents': 'list[SignatureTemplateDocumentInfo]', | ||
| 'recipients': 'list[SignatureTemplateRecipientInfo]' | ||
@@ -33,4 +33,4 @@ } | ||
| self.documents = None # list[SignatureTemplateDocumentInfo] | ||
| self.recipients = None # list[SignatureTemplateRecipientInfo] | ||
| self.documents = None # list[SignatureTemplateDocumentInfo] | ||
@@ -27,8 +27,8 @@ #!/usr/bin/env python | ||
| 'ownerShouldSign': 'int', | ||
| 'orderedSignature': 'int', | ||
| 'reminderTime': 'float', | ||
| 'stepExpireTime': 'float', | ||
| 'emailBody': 'str', | ||
| 'envelopeExpireTime': 'float', | ||
| 'orderedSignature': 'int', | ||
| 'reminderTime': 'float', | ||
| 'emailSubject': 'str' | ||
| 'emailSubject': 'str', | ||
| 'emailBody': 'str' | ||
@@ -39,8 +39,8 @@ } | ||
| self.ownerShouldSign = None # int | ||
| self.orderedSignature = None # int | ||
| self.reminderTime = None # float | ||
| self.stepExpireTime = None # float | ||
| self.emailBody = None # str | ||
| self.envelopeExpireTime = None # float | ||
| self.orderedSignature = None # int | ||
| self.reminderTime = None # float | ||
| self.emailSubject = None # str | ||
| self.emailBody = None # str | ||
@@ -26,4 +26,4 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'templates': 'list[SignatureTemplateInfo]', | ||
| 'templatesCount': 'int' | ||
| 'templatesCount': 'int', | ||
| 'templates': 'list[SignatureTemplateInfo]' | ||
@@ -33,4 +33,4 @@ } | ||
| self.templatesCount = None # int | ||
| self.templates = None # list[SignatureTemplateInfo] | ||
| self.templatesCount = None # int | ||
@@ -28,4 +28,4 @@ #!/usr/bin/env python | ||
| 'avail_space': 'long', | ||
| 'avail_credits': 'int', | ||
| 'doc_credits': 'int' | ||
| 'doc_credits': 'int', | ||
| 'avail_credits': 'int' | ||
@@ -37,4 +37,4 @@ } | ||
| self.avail_space = None # long | ||
| self.doc_credits = None # int | ||
| self.avail_credits = None # int | ||
| self.doc_credits = None # int | ||
@@ -26,11 +26,11 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'id': 'float', | ||
| 'provider': 'str', | ||
| 'type': 'str', | ||
| 'token': 'str', | ||
| 'publicKey': 'str', | ||
| 'id': 'float', | ||
| 'serviceHost': 'str', | ||
| 'isPrimary': 'bool', | ||
| 'privateKey': 'str', | ||
| 'token': 'list[int]', | ||
| 'rootFolder': 'str', | ||
| 'provider': 'str', | ||
| 'type': 'str' | ||
| 'isPrimary': 'bool', | ||
| 'serviceHost': 'str' | ||
@@ -40,11 +40,11 @@ } | ||
| self.id = None # float | ||
| self.provider = None # str | ||
| self.type = None # str | ||
| self.token = None # str | ||
| self.publicKey = None # str | ||
| self.id = None # float | ||
| self.serviceHost = None # str | ||
| self.isPrimary = None # bool | ||
| self.privateKey = None # str | ||
| self.token = None # list[int] | ||
| self.rootFolder = None # str | ||
| self.provider = None # str | ||
| self.type = None # str | ||
| self.isPrimary = None # bool | ||
| self.serviceHost = None # str | ||
@@ -26,11 +26,11 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'productId': 'int', | ||
| 'name': 'str', | ||
| 'userCount': 'int', | ||
| 'expirationDate': 'datetime', | ||
| 'firstNameOnCard': 'str', | ||
| 'address': 'BillingAddressInfo', | ||
| 'lastNameOnCard': 'str', | ||
| 'name': 'str', | ||
| 'number': 'str', | ||
| 'expirationDate': 'datetime', | ||
| 'cvv': 'str', | ||
| 'number': 'str', | ||
| 'productId': 'int' | ||
| 'address': 'BillingAddressInfo' | ||
@@ -40,11 +40,11 @@ } | ||
| self.productId = None # int | ||
| self.name = None # str | ||
| self.userCount = None # int | ||
| self.expirationDate = None # datetime | ||
| self.firstNameOnCard = None # str | ||
| self.address = None # BillingAddressInfo | ||
| self.lastNameOnCard = None # str | ||
| self.name = None # str | ||
| self.number = None # str | ||
| self.expirationDate = None # datetime | ||
| self.cvv = None # str | ||
| self.number = None # str | ||
| self.productId = None # int | ||
| self.address = None # BillingAddressInfo | ||
@@ -28,4 +28,4 @@ #!/usr/bin/env python | ||
| 'name': 'str', | ||
| 'rect': 'Rectangle', | ||
| 'type': 'str' | ||
| 'type': 'str', | ||
| 'rect': 'Rectangle' | ||
@@ -37,4 +37,4 @@ } | ||
| self.name = None # str | ||
| self.type = None # str | ||
| self.rect = None # Rectangle | ||
| self.type = None # str | ||
@@ -26,6 +26,6 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'guid': 'str', | ||
| 'name': 'str', | ||
| 'field_count': 'int', | ||
| 'id': 'float', | ||
| 'name': 'str', | ||
| 'field_count': 'int' | ||
| 'guid': 'str' | ||
@@ -35,6 +35,6 @@ } | ||
| self.guid = None # str | ||
| self.id = None # float | ||
| self.name = None # str | ||
| self.field_count = None # int | ||
| self.id = None # float | ||
| self.guid = None # str | ||
@@ -26,4 +26,4 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'id': 'float', | ||
| 'guid': 'str', | ||
| 'id': 'float', | ||
| 'primary_email': 'str' | ||
@@ -34,5 +34,5 @@ | ||
| self.id = None # float | ||
| self.guid = None # str | ||
| self.id = None # float | ||
| self.primary_email = None # str | ||
@@ -26,11 +26,11 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'guid': 'str', | ||
| 'id': 'float', | ||
| 'thumbnail': 'str', | ||
| 'adj_name': 'str', | ||
| 'url': 'str', | ||
| 'type': 'str', | ||
| 'url': 'str', | ||
| 'file_type': 'str', | ||
| 'size': 'long', | ||
| 'version': 'int', | ||
| 'size': 'long', | ||
| 'file_type': 'str' | ||
| 'thumbnail': 'str', | ||
| 'id': 'float', | ||
| 'guid': 'str' | ||
@@ -40,11 +40,11 @@ } | ||
| self.guid = None # str | ||
| self.id = None # float | ||
| self.thumbnail = None # str | ||
| self.adj_name = None # str | ||
| self.url = None # str | ||
| self.type = None # str | ||
| self.url = None # str | ||
| self.file_type = None # str | ||
| self.size = None # long | ||
| self.version = None # int | ||
| self.size = None # long | ||
| self.file_type = None # str | ||
| self.thumbnail = None # str | ||
| self.id = None # float | ||
| self.guid = None # str | ||
@@ -26,7 +26,7 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'user': 'UserIdentity', | ||
| 'guid': 'str', | ||
| 'area': 'str', | ||
| 'active': 'bool', | ||
| 'hit_count': 'int', | ||
| 'user': 'UserIdentity' | ||
| 'hit_count': 'int' | ||
@@ -36,2 +36,3 @@ } | ||
| self.user = None # UserIdentity | ||
| self.guid = None # str | ||
@@ -41,3 +42,2 @@ self.area = None # str | ||
| self.hit_count = None # int | ||
| self.user = None # UserIdentity | ||
@@ -26,4 +26,4 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'id': 'float', | ||
| 'guid': 'str', | ||
| 'id': 'float', | ||
| 'primary_email': 'str' | ||
@@ -34,5 +34,5 @@ | ||
| self.id = None # float | ||
| self.guid = None # str | ||
| self.id = None # float | ||
| self.primary_email = None # str | ||
@@ -26,24 +26,24 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'signin_count': 'int', | ||
| 'signedupOn': 'long', | ||
| 'nickname': 'str', | ||
| 'firstname': 'str', | ||
| 'lastname': 'str', | ||
| 'pkey': 'str', | ||
| 'lastname': 'str', | ||
| 'pswd_salt': 'str', | ||
| 'claimed_id': 'str', | ||
| 'token': 'str', | ||
| 'storage': 'int', | ||
| 'photo': 'str', | ||
| 'active': 'bool', | ||
| 'trial': 'bool', | ||
| 'news_eanbled': 'bool', | ||
| 'alerts_eanbled': 'bool', | ||
| 'firstname': 'str', | ||
| 'news_eanbled': 'bool', | ||
| 'support_eanbled': 'bool', | ||
| 'photo': 'list[int]', | ||
| 'support_email': 'str', | ||
| 'signedupOn': 'long', | ||
| 'signedinOn': 'long', | ||
| 'signin_count': 'int', | ||
| 'roles': 'list[RoleInfo]', | ||
| 'id': 'float', | ||
| 'guid': 'str', | ||
| 'id': 'float', | ||
| 'pswd_salt': 'str', | ||
| 'token': 'str', | ||
| 'primary_email': 'str', | ||
| 'roles': 'list[RoleInfo]', | ||
| 'active': 'bool', | ||
| 'signedinOn': 'long', | ||
| 'trial': 'bool', | ||
| 'claimed_id': 'str', | ||
| 'storage': 'int' | ||
| 'primary_email': 'str' | ||
@@ -53,24 +53,24 @@ } | ||
| self.signin_count = None # int | ||
| self.signedupOn = None # long | ||
| self.nickname = None # str | ||
| self.firstname = None # str | ||
| self.lastname = None # str | ||
| self.pkey = None # str | ||
| self.lastname = None # str | ||
| self.pswd_salt = None # str | ||
| self.claimed_id = None # str | ||
| self.token = None # str | ||
| self.storage = None # int | ||
| self.photo = None # str | ||
| self.active = None # bool | ||
| self.trial = None # bool | ||
| self.news_eanbled = None # bool | ||
| self.alerts_eanbled = None # bool | ||
| self.firstname = None # str | ||
| self.news_eanbled = None # bool | ||
| self.support_eanbled = None # bool | ||
| self.photo = None # list[int] | ||
| self.support_email = None # str | ||
| self.signedupOn = None # long | ||
| self.signedinOn = None # long | ||
| self.signin_count = None # int | ||
| self.roles = None # list[RoleInfo] | ||
| self.id = None # float | ||
| self.guid = None # str | ||
| self.id = None # float | ||
| self.pswd_salt = None # str | ||
| self.token = None # str | ||
| self.primary_email = None # str | ||
| self.roles = None # list[RoleInfo] | ||
| self.active = None # bool | ||
| self.signedinOn = None # long | ||
| self.trial = None # bool | ||
| self.claimed_id = None # str | ||
| self.storage = None # int | ||
@@ -26,5 +26,5 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'reset_token': 'str', | ||
| 'old_pswd_salt': 'str', | ||
| 'new_pswd_salt': 'str' | ||
| 'new_pswd_salt': 'str', | ||
| 'reset_token': 'str' | ||
@@ -34,5 +34,5 @@ } | ||
| self.reset_token = None # str | ||
| self.old_pswd_salt = None # str | ||
| self.new_pswd_salt = None # str | ||
| self.reset_token = None # str | ||
@@ -26,12 +26,12 @@ #!/usr/bin/env python | ||
| self.swaggerTypes = { | ||
| 'guid': 'str', | ||
| 'id': 'float', | ||
| 'name': 'str', | ||
| 'version': 'int', | ||
| 'page_count': 'int', | ||
| 'page_size': 'Dimension', | ||
| 'url': 'str', | ||
| 'doc_type': 'str', | ||
| 'image_urls': 'list[str]', | ||
| 'token': 'str', | ||
| 'name': 'str', | ||
| 'image_urls': 'list[str]', | ||
| 'doc_type': 'str', | ||
| 'url': 'str', | ||
| 'page_count': 'int', | ||
| 'version': 'int' | ||
| 'id': 'float', | ||
| 'guid': 'str' | ||
@@ -41,12 +41,12 @@ } | ||
| self.guid = None # str | ||
| self.id = None # float | ||
| self.name = None # str | ||
| self.version = None # int | ||
| self.page_count = None # int | ||
| self.page_size = None # Dimension | ||
| self.url = None # str | ||
| self.doc_type = None # str | ||
| self.image_urls = None # list[str] | ||
| self.token = None # str | ||
| self.name = None # str | ||
| self.image_urls = None # list[str] | ||
| self.doc_type = None # str | ||
| self.url = None # str | ||
| self.page_count = None # int | ||
| self.version = None # int | ||
| self.id = None # float | ||
| self.guid = None # str | ||
+2
-2
@@ -1,4 +0,4 @@ | ||
| Metadata-Version: 1.0 | ||
| Metadata-Version: 1.1 | ||
| Name: groupdocs-python | ||
| Version: 1.2 | ||
| Version: 1.2.2 | ||
| Summary: A Python interface to the GroupDocs API | ||
@@ -5,0 +5,0 @@ Home-page: http://groupdocs.com/ |
+6
-2
@@ -0,1 +1,3 @@ | ||
| #!/usr/bin/env python | ||
| from distutils.core import setup | ||
@@ -5,6 +7,8 @@ | ||
| import sys | ||
| execfile("groupdocs/version.py") | ||
| setup( | ||
| name = 'groupdocs-python', | ||
| version = '1.2', | ||
| name = __pkgname__, | ||
| version = __version__, | ||
| author = "GroupDocs Team", | ||
@@ -11,0 +15,0 @@ author_email = "support@groupdocs.com", |
Alert delta unavailable
Currently unable to show alert delta for PyPI packages.
940174
0.1%374
0.27%19904
0.12%