groupdocs-python
Advanced tools
| #!/usr/bin/env python | ||
| """ | ||
| Copyright 2012 GroupDocs. | ||
| Licensed under the Apache License, Version 2.0 (the "License"); | ||
| you may not use this file except in compliance with the License. | ||
| You may obtain a copy of the License at | ||
| http://www.apache.org/licenses/LICENSE-2.0 | ||
| Unless required by applicable law or agreed to in writing, software | ||
| distributed under the License is distributed on an "AS IS" BASIS, | ||
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| See the License for the specific language governing permissions and | ||
| limitations under the License. | ||
| """ | ||
| class GetTermSuggestionsResponse: | ||
| """ | ||
| NOTE: This class is auto generated by the swagger code generator program. | ||
| Do not edit the class manually.""" | ||
| def __init__(self): | ||
| self.swaggerTypes = { | ||
| 'result': 'GetTermSuggestionsResult', | ||
| 'status': 'str', | ||
| 'error_message': 'str', | ||
| 'composedOn': 'long' | ||
| } | ||
| self.result = None # GetTermSuggestionsResult | ||
| self.status = None # str | ||
| self.error_message = None # str | ||
| self.composedOn = None # long | ||
| #!/usr/bin/env python | ||
| """ | ||
| Copyright 2012 GroupDocs. | ||
| Licensed under the Apache License, Version 2.0 (the "License"); | ||
| you may not use this file except in compliance with the License. | ||
| You may obtain a copy of the License at | ||
| http://www.apache.org/licenses/LICENSE-2.0 | ||
| Unless required by applicable law or agreed to in writing, software | ||
| distributed under the License is distributed on an "AS IS" BASIS, | ||
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| See the License for the specific language governing permissions and | ||
| limitations under the License. | ||
| """ | ||
| class GetTermSuggestionsResult: | ||
| """ | ||
| NOTE: This class is auto generated by the swagger code generator program. | ||
| Do not edit the class manually.""" | ||
| def __init__(self): | ||
| self.swaggerTypes = { | ||
| 'suggestions': 'list[str]' | ||
| } | ||
| self.suggestions = None # list[str] | ||
| #!/usr/bin/env python | ||
| """ | ||
| Copyright 2012 GroupDocs. | ||
| Licensed under the Apache License, Version 2.0 (the "License"); | ||
| you may not use this file except in compliance with the License. | ||
| You may obtain a copy of the License at | ||
| http://www.apache.org/licenses/LICENSE-2.0 | ||
| Unless required by applicable law or agreed to in writing, software | ||
| distributed under the License is distributed on an "AS IS" BASIS, | ||
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| See the License for the specific language governing permissions and | ||
| limitations under the License. | ||
| """ | ||
| class PublicSignatureSignDocumentSignerSettingsInfo: | ||
| """ | ||
| NOTE: This class is auto generated by the swagger code generator program. | ||
| Do not edit the class manually.""" | ||
| def __init__(self): | ||
| self.swaggerTypes = { | ||
| 'waterMarkText': 'str', | ||
| 'waterMarkImage': 'str', | ||
| 'name': 'str', | ||
| 'top': 'float', | ||
| 'left': 'float', | ||
| 'width': 'float', | ||
| 'height': 'float', | ||
| 'placeSignatureOn': 'str', | ||
| 'data': 'str' | ||
| } | ||
| self.waterMarkText = None # str | ||
| self.waterMarkImage = None # str | ||
| self.name = None # str | ||
| self.top = None # float | ||
| self.left = None # float | ||
| self.width = None # float | ||
| self.height = None # float | ||
| self.placeSignatureOn = None # str | ||
| self.data = None # str | ||
| #!/usr/bin/env python | ||
| """ | ||
| Copyright 2012 GroupDocs. | ||
| Licensed under the Apache License, Version 2.0 (the "License"); | ||
| you may not use this file except in compliance with the License. | ||
| You may obtain a copy of the License at | ||
| http://www.apache.org/licenses/LICENSE-2.0 | ||
| Unless required by applicable law or agreed to in writing, software | ||
| distributed under the License is distributed on an "AS IS" BASIS, | ||
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| See the License for the specific language governing permissions and | ||
| limitations under the License. | ||
| """ | ||
| class RevokeResponse: | ||
| """ | ||
| NOTE: This class is auto generated by the swagger code generator program. | ||
| Do not edit the class manually.""" | ||
| def __init__(self): | ||
| self.swaggerTypes = { | ||
| 'result': 'RevokeResult', | ||
| 'status': 'str', | ||
| 'error_message': 'str', | ||
| 'composedOn': 'long' | ||
| } | ||
| self.result = None # RevokeResult | ||
| self.status = None # str | ||
| self.error_message = None # str | ||
| self.composedOn = None # long | ||
| #!/usr/bin/env python | ||
| """ | ||
| Copyright 2012 GroupDocs. | ||
| Licensed under the Apache License, Version 2.0 (the "License"); | ||
| you may not use this file except in compliance with the License. | ||
| You may obtain a copy of the License at | ||
| http://www.apache.org/licenses/LICENSE-2.0 | ||
| Unless required by applicable law or agreed to in writing, software | ||
| distributed under the License is distributed on an "AS IS" BASIS, | ||
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| See the License for the specific language governing permissions and | ||
| limitations under the License. | ||
| """ | ||
| class RevokeResult: | ||
| """ | ||
| NOTE: This class is auto generated by the swagger code generator program. | ||
| Do not edit the class manually.""" | ||
| def __init__(self): | ||
| self.swaggerTypes = { | ||
| 'user_guid': 'str', | ||
| 'user_privatekey': 'str' | ||
| } | ||
| self.user_guid = None # str | ||
| self.user_privatekey = None # str | ||
| #!/usr/bin/env python | ||
| """ | ||
| Copyright 2012 GroupDocs. | ||
| Licensed under the Apache License, Version 2.0 (the "License"); | ||
| you may not use this file except in compliance with the License. | ||
| You may obtain a copy of the License at | ||
| http://www.apache.org/licenses/LICENSE-2.0 | ||
| Unless required by applicable law or agreed to in writing, software | ||
| distributed under the License is distributed on an "AS IS" BASIS, | ||
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| See the License for the specific language governing permissions and | ||
| limitations under the License. | ||
| """ | ||
| class SignatureContactSettingsInfo: | ||
| """ | ||
| NOTE: This class is auto generated by the swagger code generator program. | ||
| Do not edit the class manually.""" | ||
| def __init__(self): | ||
| self.swaggerTypes = { | ||
| 'firstName': 'str', | ||
| 'lastName': 'str', | ||
| 'email': 'str' | ||
| } | ||
| self.firstName = None # str | ||
| self.lastName = None # str | ||
| self.email = None # str | ||
| #!/usr/bin/env python | ||
| """ | ||
| Copyright 2012 GroupDocs. | ||
| Licensed under the Apache License, Version 2.0 (the "License"); | ||
| you may not use this file except in compliance with the License. | ||
| You may obtain a copy of the License at | ||
| http://www.apache.org/licenses/LICENSE-2.0 | ||
| Unless required by applicable law or agreed to in writing, software | ||
| distributed under the License is distributed on an "AS IS" BASIS, | ||
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| See the License for the specific language governing permissions and | ||
| limitations under the License. | ||
| """ | ||
| class SignatureEnvelopeAssignFieldSettingsInfo: | ||
| """ | ||
| NOTE: This class is auto generated by the swagger code generator program. | ||
| Do not edit the class manually.""" | ||
| def __init__(self): | ||
| self.swaggerTypes = { | ||
| 'currentRecipientId': 'str', | ||
| 'newRecipientId': 'str' | ||
| } | ||
| self.currentRecipientId = None # str | ||
| self.newRecipientId = None # str | ||
| #!/usr/bin/env python | ||
| """ | ||
| Copyright 2012 GroupDocs. | ||
| Licensed under the Apache License, Version 2.0 (the "License"); | ||
| you may not use this file except in compliance with the License. | ||
| You may obtain a copy of the License at | ||
| http://www.apache.org/licenses/LICENSE-2.0 | ||
| Unless required by applicable law or agreed to in writing, software | ||
| distributed under the License is distributed on an "AS IS" BASIS, | ||
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| See the License for the specific language governing permissions and | ||
| limitations under the License. | ||
| """ | ||
| class SignatureEnvelopeFieldLocationSettingsInfo: | ||
| """ | ||
| NOTE: This class is auto generated by the swagger code generator program. | ||
| Do not edit the class manually.""" | ||
| def __init__(self): | ||
| self.swaggerTypes = { | ||
| 'page': 'int', | ||
| 'locationX': 'float', | ||
| 'locationY': 'float', | ||
| 'locationWidth': 'float', | ||
| 'locationHeight': 'float', | ||
| 'fontName': 'str', | ||
| 'fontColor': 'str', | ||
| 'fontSize': 'float', | ||
| 'fontBold': 'bool', | ||
| 'fontItalic': 'bool', | ||
| 'fontUnderline': 'bool', | ||
| 'forceNewField': 'bool', | ||
| 'align': 'int' | ||
| } | ||
| 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.fontUnderline = None # bool | ||
| self.forceNewField = None # bool | ||
| self.align = None # int | ||
| #!/usr/bin/env python | ||
| """ | ||
| Copyright 2012 GroupDocs. | ||
| Licensed under the Apache License, Version 2.0 (the "License"); | ||
| you may not use this file except in compliance with the License. | ||
| You may obtain a copy of the License at | ||
| http://www.apache.org/licenses/LICENSE-2.0 | ||
| Unless required by applicable law or agreed to in writing, software | ||
| distributed under the License is distributed on an "AS IS" BASIS, | ||
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| See the License for the specific language governing permissions and | ||
| limitations under the License. | ||
| """ | ||
| class SignatureEnvelopeFieldSettingsInfo: | ||
| """ | ||
| NOTE: This class is auto generated by the swagger code generator program. | ||
| Do not edit the class manually.""" | ||
| def __init__(self): | ||
| self.swaggerTypes = { | ||
| 'name': 'str', | ||
| 'mandatory': 'bool', | ||
| 'order': 'int', | ||
| 'page': 'int', | ||
| 'locationX': 'float', | ||
| 'locationY': 'float', | ||
| 'locationWidth': 'float', | ||
| 'locationHeight': 'float', | ||
| 'regularExpression': 'str', | ||
| 'fontName': 'str', | ||
| 'fontColor': 'str', | ||
| 'fontSize': 'float', | ||
| 'fontBold': 'bool', | ||
| 'fontItalic': 'bool', | ||
| 'fontUnderline': 'bool', | ||
| 'forceNewField': 'bool', | ||
| 'acceptableValues': 'str', | ||
| 'defaultValue': 'str', | ||
| 'tooltip': 'str', | ||
| 'align': 'int', | ||
| 'guidanceText': '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.fontSize = None # float | ||
| self.fontBold = None # bool | ||
| self.fontItalic = None # bool | ||
| self.fontUnderline = None # bool | ||
| self.forceNewField = None # bool | ||
| self.acceptableValues = None # str | ||
| self.defaultValue = None # str | ||
| self.tooltip = None # str | ||
| self.align = None # int | ||
| self.guidanceText = None # str | ||
| #!/usr/bin/env python | ||
| """ | ||
| Copyright 2012 GroupDocs. | ||
| Licensed under the Apache License, Version 2.0 (the "License"); | ||
| you may not use this file except in compliance with the License. | ||
| You may obtain a copy of the License at | ||
| http://www.apache.org/licenses/LICENSE-2.0 | ||
| Unless required by applicable law or agreed to in writing, software | ||
| distributed under the License is distributed on an "AS IS" BASIS, | ||
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| See the License for the specific language governing permissions and | ||
| limitations under the License. | ||
| """ | ||
| class SignatureEnvelopeSettingsInfo: | ||
| """ | ||
| NOTE: This class is auto generated by the swagger code generator program. | ||
| Do not edit the class manually.""" | ||
| def __init__(self): | ||
| self.swaggerTypes = { | ||
| 'ownerShouldSign': 'bool', | ||
| 'orderedSignature': 'bool', | ||
| 'reminderTime': 'float', | ||
| 'stepExpireTime': 'float', | ||
| 'envelopeExpireTime': 'float', | ||
| 'emailSubject': 'str', | ||
| 'emailBody': 'str', | ||
| 'isDemo': 'bool', | ||
| 'waterMarkText': 'str', | ||
| 'waterMarkImage': 'str', | ||
| 'attachSignedDocument': 'bool', | ||
| 'includeViewLink': 'bool', | ||
| 'canBeCommented': 'bool', | ||
| 'inPersonSign': 'bool' | ||
| } | ||
| self.ownerShouldSign = None # bool | ||
| self.orderedSignature = None # bool | ||
| self.reminderTime = None # float | ||
| self.stepExpireTime = None # float | ||
| self.envelopeExpireTime = None # float | ||
| self.emailSubject = None # str | ||
| self.emailBody = None # str | ||
| self.isDemo = None # bool | ||
| self.waterMarkText = None # str | ||
| self.waterMarkImage = None # str | ||
| self.attachSignedDocument = None # bool | ||
| self.includeViewLink = None # bool | ||
| self.canBeCommented = None # bool | ||
| self.inPersonSign = None # bool | ||
| #!/usr/bin/env python | ||
| """ | ||
| Copyright 2012 GroupDocs. | ||
| Licensed under the Apache License, Version 2.0 (the "License"); | ||
| you may not use this file except in compliance with the License. | ||
| You may obtain a copy of the License at | ||
| http://www.apache.org/licenses/LICENSE-2.0 | ||
| Unless required by applicable law or agreed to in writing, software | ||
| distributed under the License is distributed on an "AS IS" BASIS, | ||
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| See the License for the specific language governing permissions and | ||
| limitations under the License. | ||
| """ | ||
| class SignatureFieldSettingsInfo: | ||
| """ | ||
| NOTE: This class is auto generated by the swagger code generator program. | ||
| Do not edit the class manually.""" | ||
| def __init__(self): | ||
| self.swaggerTypes = { | ||
| 'name': 'str', | ||
| 'graphSizeW': 'int', | ||
| 'graphSizeH': 'int', | ||
| 'getDataFrom': 'str', | ||
| 'regularExpression': 'str' | ||
| } | ||
| self.name = None # str | ||
| self.graphSizeW = None # int | ||
| self.graphSizeH = None # int | ||
| self.getDataFrom = None # str | ||
| self.regularExpression = None # str | ||
| #!/usr/bin/env python | ||
| """ | ||
| Copyright 2012 GroupDocs. | ||
| Licensed under the Apache License, Version 2.0 (the "License"); | ||
| you may not use this file except in compliance with the License. | ||
| You may obtain a copy of the License at | ||
| http://www.apache.org/licenses/LICENSE-2.0 | ||
| Unless required by applicable law or agreed to in writing, software | ||
| distributed under the License is distributed on an "AS IS" BASIS, | ||
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| See the License for the specific language governing permissions and | ||
| limitations under the License. | ||
| """ | ||
| class SignatureFormDocumentSettingsInfo: | ||
| """ | ||
| NOTE: This class is auto generated by the swagger code generator program. | ||
| Do not edit the class manually.""" | ||
| def __init__(self): | ||
| self.swaggerTypes = { | ||
| 'Order': 'int', | ||
| 'newDocumentGuid': 'str' | ||
| } | ||
| self.Order = None # int | ||
| self.newDocumentGuid = None # str | ||
| #!/usr/bin/env python | ||
| """ | ||
| Copyright 2012 GroupDocs. | ||
| Licensed under the Apache License, Version 2.0 (the "License"); | ||
| you may not use this file except in compliance with the License. | ||
| You may obtain a copy of the License at | ||
| http://www.apache.org/licenses/LICENSE-2.0 | ||
| Unless required by applicable law or agreed to in writing, software | ||
| distributed under the License is distributed on an "AS IS" BASIS, | ||
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| See the License for the specific language governing permissions and | ||
| limitations under the License. | ||
| """ | ||
| class SignatureFormFieldLocationSettingsInfo: | ||
| """ | ||
| NOTE: This class is auto generated by the swagger code generator program. | ||
| Do not edit the class manually.""" | ||
| def __init__(self): | ||
| self.swaggerTypes = { | ||
| 'page': 'int', | ||
| 'locationX': 'float', | ||
| 'locationY': 'float', | ||
| 'locationWidth': 'float', | ||
| 'locationHeight': 'float', | ||
| 'fontName': 'str', | ||
| 'fontColor': 'str', | ||
| 'fontSize': 'float', | ||
| 'fontBold': 'bool', | ||
| 'fontItalic': 'bool', | ||
| 'fontUnderline': 'bool', | ||
| 'forceNewField': 'bool', | ||
| 'align': 'int' | ||
| } | ||
| 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.fontUnderline = None # bool | ||
| self.forceNewField = None # bool | ||
| self.align = None # int | ||
| #!/usr/bin/env python | ||
| """ | ||
| Copyright 2012 GroupDocs. | ||
| Licensed under the Apache License, Version 2.0 (the "License"); | ||
| you may not use this file except in compliance with the License. | ||
| You may obtain a copy of the License at | ||
| http://www.apache.org/licenses/LICENSE-2.0 | ||
| Unless required by applicable law or agreed to in writing, software | ||
| distributed under the License is distributed on an "AS IS" BASIS, | ||
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| See the License for the specific language governing permissions and | ||
| limitations under the License. | ||
| """ | ||
| class SignatureFormFieldSettingsInfo: | ||
| """ | ||
| NOTE: This class is auto generated by the swagger code generator program. | ||
| Do not edit the class manually.""" | ||
| def __init__(self): | ||
| self.swaggerTypes = { | ||
| 'name': 'str', | ||
| 'mandatory': 'bool', | ||
| 'order': 'int', | ||
| 'page': 'int', | ||
| 'locationX': 'float', | ||
| 'locationY': 'float', | ||
| 'locationWidth': 'float', | ||
| 'locationHeight': 'float', | ||
| 'regularExpression': 'str', | ||
| 'fontName': 'str', | ||
| 'fontColor': 'str', | ||
| 'fontSize': 'float', | ||
| 'fontBold': 'bool', | ||
| 'fontItalic': 'bool', | ||
| 'fontUnderline': 'bool', | ||
| 'forceNewField': 'bool', | ||
| 'acceptableValues': 'str', | ||
| 'defaultValue': 'str', | ||
| 'tooltip': 'str', | ||
| 'align': 'int', | ||
| 'guidanceText': '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.fontSize = None # float | ||
| self.fontBold = None # bool | ||
| self.fontItalic = None # bool | ||
| self.fontUnderline = None # bool | ||
| self.forceNewField = None # bool | ||
| self.acceptableValues = None # str | ||
| self.defaultValue = None # str | ||
| self.tooltip = None # str | ||
| self.align = None # int | ||
| self.guidanceText = None # str | ||
| #!/usr/bin/env python | ||
| """ | ||
| Copyright 2012 GroupDocs. | ||
| Licensed under the Apache License, Version 2.0 (the "License"); | ||
| you may not use this file except in compliance with the License. | ||
| You may obtain a copy of the License at | ||
| http://www.apache.org/licenses/LICENSE-2.0 | ||
| Unless required by applicable law or agreed to in writing, software | ||
| distributed under the License is distributed on an "AS IS" BASIS, | ||
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| See the License for the specific language governing permissions and | ||
| limitations under the License. | ||
| """ | ||
| class SignatureFormSettingsInfo: | ||
| """ | ||
| NOTE: This class is auto generated by the swagger code generator program. | ||
| Do not edit the class manually.""" | ||
| def __init__(self): | ||
| self.swaggerTypes = { | ||
| 'name': 'str', | ||
| 'fieldsInFinalFileName': 'str', | ||
| 'canParticipantDownloadForm': 'bool', | ||
| 'waterMarkText': 'str', | ||
| 'waterMarkImage': 'str', | ||
| 'notifyOwnerOnSign ': 'bool', | ||
| 'attachSignedDocument': 'bool' | ||
| } | ||
| self.name = None # str | ||
| self.fieldsInFinalFileName = None # str | ||
| self.canParticipantDownloadForm = None # bool | ||
| self.waterMarkText = None # str | ||
| self.waterMarkImage = None # str | ||
| self.notifyOwnerOnSign = None # bool | ||
| self.attachSignedDocument = None # bool | ||
| #!/usr/bin/env python | ||
| """ | ||
| Copyright 2012 GroupDocs. | ||
| Licensed under the Apache License, Version 2.0 (the "License"); | ||
| you may not use this file except in compliance with the License. | ||
| You may obtain a copy of the License at | ||
| http://www.apache.org/licenses/LICENSE-2.0 | ||
| Unless required by applicable law or agreed to in writing, software | ||
| distributed under the License is distributed on an "AS IS" BASIS, | ||
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| See the License for the specific language governing permissions and | ||
| limitations under the License. | ||
| """ | ||
| class SignaturePredefinedListSettingsInfo: | ||
| """ | ||
| NOTE: This class is auto generated by the swagger code generator program. | ||
| Do not edit the class manually.""" | ||
| def __init__(self): | ||
| self.swaggerTypes = { | ||
| 'name': 'str', | ||
| 'values': 'str', | ||
| 'defaultValue': 'str' | ||
| } | ||
| self.name = None # str | ||
| self.values = None # str | ||
| self.defaultValue = None # str | ||
| #!/usr/bin/env python | ||
| """ | ||
| Copyright 2012 GroupDocs. | ||
| Licensed under the Apache License, Version 2.0 (the "License"); | ||
| you may not use this file except in compliance with the License. | ||
| You may obtain a copy of the License at | ||
| http://www.apache.org/licenses/LICENSE-2.0 | ||
| Unless required by applicable law or agreed to in writing, software | ||
| distributed under the License is distributed on an "AS IS" BASIS, | ||
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| See the License for the specific language governing permissions and | ||
| limitations under the License. | ||
| """ | ||
| class SignatureSignatureSettingsInfo: | ||
| """ | ||
| NOTE: This class is auto generated by the swagger code generator program. | ||
| Do not edit the class manually.""" | ||
| def __init__(self): | ||
| self.swaggerTypes = { | ||
| 'name': 'str', | ||
| 'companyName': 'str', | ||
| 'position': 'str', | ||
| 'firstName': 'str', | ||
| 'lastName': 'str', | ||
| 'textInitials': 'str', | ||
| 'signatureData': 'str', | ||
| 'initialsData': 'str' | ||
| } | ||
| self.name = None # str | ||
| self.companyName = None # str | ||
| self.position = None # str | ||
| self.firstName = None # str | ||
| self.lastName = None # str | ||
| self.textInitials = None # str | ||
| self.signatureData = None # str | ||
| self.initialsData = None # str | ||
| #!/usr/bin/env python | ||
| """ | ||
| Copyright 2012 GroupDocs. | ||
| Licensed under the Apache License, Version 2.0 (the "License"); | ||
| you may not use this file except in compliance with the License. | ||
| You may obtain a copy of the License at | ||
| http://www.apache.org/licenses/LICENSE-2.0 | ||
| Unless required by applicable law or agreed to in writing, software | ||
| distributed under the License is distributed on an "AS IS" BASIS, | ||
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| See the License for the specific language governing permissions and | ||
| limitations under the License. | ||
| """ | ||
| class SignatureSignDocumentDocumentSettingsInfo: | ||
| """ | ||
| NOTE: This class is auto generated by the swagger code generator program. | ||
| Do not edit the class manually.""" | ||
| def __init__(self): | ||
| self.swaggerTypes = { | ||
| 'name': 'str', | ||
| 'data': 'str' | ||
| } | ||
| self.name = None # str | ||
| self.data = None # str | ||
| #!/usr/bin/env python | ||
| """ | ||
| Copyright 2012 GroupDocs. | ||
| Licensed under the Apache License, Version 2.0 (the "License"); | ||
| you may not use this file except in compliance with the License. | ||
| You may obtain a copy of the License at | ||
| http://www.apache.org/licenses/LICENSE-2.0 | ||
| Unless required by applicable law or agreed to in writing, software | ||
| distributed under the License is distributed on an "AS IS" BASIS, | ||
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| See the License for the specific language governing permissions and | ||
| limitations under the License. | ||
| """ | ||
| class SignatureSignDocumentSettingsInfo: | ||
| """ | ||
| NOTE: This class is auto generated by the swagger code generator program. | ||
| Do not edit the class manually.""" | ||
| def __init__(self): | ||
| self.swaggerTypes = { | ||
| 'documents': 'list[SignatureSignDocumentDocumentSettingsInfo]', | ||
| 'signers': 'list[SignatureSignDocumentSignerSettingsInfo]', | ||
| 'waterMarkText': 'str', | ||
| 'waterMarkImage': 'str' | ||
| } | ||
| self.documents = None # list[SignatureSignDocumentDocumentSettingsInfo] | ||
| self.signers = None # list[SignatureSignDocumentSignerSettingsInfo] | ||
| self.waterMarkText = None # str | ||
| self.waterMarkImage = None # str | ||
| #!/usr/bin/env python | ||
| """ | ||
| Copyright 2012 GroupDocs. | ||
| Licensed under the Apache License, Version 2.0 (the "License"); | ||
| you may not use this file except in compliance with the License. | ||
| You may obtain a copy of the License at | ||
| http://www.apache.org/licenses/LICENSE-2.0 | ||
| Unless required by applicable law or agreed to in writing, software | ||
| distributed under the License is distributed on an "AS IS" BASIS, | ||
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| See the License for the specific language governing permissions and | ||
| limitations under the License. | ||
| """ | ||
| class SignatureSignDocumentSignerSettingsInfo: | ||
| """ | ||
| NOTE: This class is auto generated by the swagger code generator program. | ||
| Do not edit the class manually.""" | ||
| def __init__(self): | ||
| self.swaggerTypes = { | ||
| 'name': 'str', | ||
| 'top': 'float', | ||
| 'left': 'float', | ||
| 'width': 'float', | ||
| 'height': 'float', | ||
| 'placeSignatureOn': 'str', | ||
| 'data': 'str' | ||
| } | ||
| self.name = None # str | ||
| self.top = None # float | ||
| self.left = None # float | ||
| self.width = None # float | ||
| self.height = None # float | ||
| self.placeSignatureOn = None # str | ||
| self.data = None # str | ||
| #!/usr/bin/env python | ||
| """ | ||
| Copyright 2012 GroupDocs. | ||
| Licensed under the Apache License, Version 2.0 (the "License"); | ||
| you may not use this file except in compliance with the License. | ||
| You may obtain a copy of the License at | ||
| http://www.apache.org/licenses/LICENSE-2.0 | ||
| Unless required by applicable law or agreed to in writing, software | ||
| distributed under the License is distributed on an "AS IS" BASIS, | ||
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| See the License for the specific language governing permissions and | ||
| limitations under the License. | ||
| """ | ||
| class SignatureTemplateAssignFieldSettingsInfo: | ||
| """ | ||
| NOTE: This class is auto generated by the swagger code generator program. | ||
| Do not edit the class manually.""" | ||
| def __init__(self): | ||
| self.swaggerTypes = { | ||
| 'currentRecipientId': 'str', | ||
| 'newRecipientId': 'str' | ||
| } | ||
| self.currentRecipientId = None # str | ||
| self.newRecipientId = None # str | ||
| #!/usr/bin/env python | ||
| """ | ||
| Copyright 2012 GroupDocs. | ||
| Licensed under the Apache License, Version 2.0 (the "License"); | ||
| you may not use this file except in compliance with the License. | ||
| You may obtain a copy of the License at | ||
| http://www.apache.org/licenses/LICENSE-2.0 | ||
| Unless required by applicable law or agreed to in writing, software | ||
| distributed under the License is distributed on an "AS IS" BASIS, | ||
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| See the License for the specific language governing permissions and | ||
| limitations under the License. | ||
| """ | ||
| class SignatureTemplateFieldLocationSettingsInfo: | ||
| """ | ||
| NOTE: This class is auto generated by the swagger code generator program. | ||
| Do not edit the class manually.""" | ||
| def __init__(self): | ||
| self.swaggerTypes = { | ||
| 'page': 'int', | ||
| 'locationX': 'float', | ||
| 'locationY': 'float', | ||
| 'locationWidth': 'float', | ||
| 'locationHeight': 'float', | ||
| 'fontName': 'str', | ||
| 'fontColor': 'str', | ||
| 'fontSize': 'float', | ||
| 'fontBold': 'bool', | ||
| 'fontItalic': 'bool', | ||
| 'fontUnderline': 'bool', | ||
| 'forceNewField': 'bool', | ||
| 'align': 'int' | ||
| } | ||
| 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.fontUnderline = None # bool | ||
| self.forceNewField = None # bool | ||
| self.align = None # int | ||
| #!/usr/bin/env python | ||
| """ | ||
| Copyright 2012 GroupDocs. | ||
| Licensed under the Apache License, Version 2.0 (the "License"); | ||
| you may not use this file except in compliance with the License. | ||
| You may obtain a copy of the License at | ||
| http://www.apache.org/licenses/LICENSE-2.0 | ||
| Unless required by applicable law or agreed to in writing, software | ||
| distributed under the License is distributed on an "AS IS" BASIS, | ||
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| See the License for the specific language governing permissions and | ||
| limitations under the License. | ||
| """ | ||
| class SignatureTemplateFieldSettingsInfo: | ||
| """ | ||
| NOTE: This class is auto generated by the swagger code generator program. | ||
| Do not edit the class manually.""" | ||
| def __init__(self): | ||
| self.swaggerTypes = { | ||
| 'name': 'str', | ||
| 'mandatory': 'bool', | ||
| 'order': 'int', | ||
| 'page': 'int', | ||
| 'locationX': 'float', | ||
| 'locationY': 'float', | ||
| 'locationHeight': 'float', | ||
| 'locationWidth': 'float', | ||
| 'regularExpression': 'str', | ||
| 'fontName': 'str', | ||
| 'fontColor': 'str', | ||
| 'fontSize': 'float', | ||
| 'fontBold': 'bool', | ||
| 'fontItalic': 'bool', | ||
| 'fontUnderline': 'bool', | ||
| 'forceNewField': 'bool', | ||
| 'acceptableValues': 'str', | ||
| 'defaultValue': 'str', | ||
| 'tooltip': 'str', | ||
| 'align': 'int', | ||
| 'guidanceText': '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.fontSize = None # float | ||
| self.fontBold = None # bool | ||
| self.fontItalic = None # bool | ||
| self.fontUnderline = None # bool | ||
| self.forceNewField = None # bool | ||
| self.acceptableValues = None # str | ||
| self.defaultValue = None # str | ||
| self.tooltip = None # str | ||
| self.align = None # int | ||
| self.guidanceText = None # str | ||
| #!/usr/bin/env python | ||
| """ | ||
| Copyright 2012 GroupDocs. | ||
| Licensed under the Apache License, Version 2.0 (the "License"); | ||
| you may not use this file except in compliance with the License. | ||
| You may obtain a copy of the License at | ||
| http://www.apache.org/licenses/LICENSE-2.0 | ||
| Unless required by applicable law or agreed to in writing, software | ||
| distributed under the License is distributed on an "AS IS" BASIS, | ||
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| See the License for the specific language governing permissions and | ||
| limitations under the License. | ||
| """ | ||
| class SignatureTemplateSettingsInfo: | ||
| """ | ||
| NOTE: This class is auto generated by the swagger code generator program. | ||
| Do not edit the class manually.""" | ||
| def __init__(self): | ||
| self.swaggerTypes = { | ||
| 'ownerShouldSign': 'bool', | ||
| 'orderedSignature': 'bool', | ||
| 'reminderTime': 'float', | ||
| 'stepExpireTime': 'float', | ||
| 'templateExpireTime': 'float', | ||
| 'emailSubject': 'str', | ||
| 'emailBody': 'str', | ||
| 'waterMarkText': 'str', | ||
| 'waterMarkImage': 'str' | ||
| } | ||
| self.ownerShouldSign = None # bool | ||
| self.orderedSignature = None # bool | ||
| self.reminderTime = None # float | ||
| self.stepExpireTime = None # float | ||
| self.templateExpireTime = None # float | ||
| self.emailSubject = None # str | ||
| self.emailBody = None # str | ||
| self.waterMarkText = None # str | ||
| self.waterMarkImage = None # str | ||
| #!/usr/bin/env python | ||
| """ | ||
| Copyright 2012 GroupDocs. | ||
| Licensed under the Apache License, Version 2.0 (the "License"); | ||
| you may not use this file except in compliance with the License. | ||
| You may obtain a copy of the License at | ||
| http://www.apache.org/licenses/LICENSE-2.0 | ||
| Unless required by applicable law or agreed to in writing, software | ||
| distributed under the License is distributed on an "AS IS" BASIS, | ||
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| See the License for the specific language governing permissions and | ||
| limitations under the License. | ||
| """ | ||
| class WebhookInfo: | ||
| """ | ||
| NOTE: This class is auto generated by the swagger code generator program. | ||
| Do not edit the class manually.""" | ||
| def __init__(self): | ||
| self.swaggerTypes = { | ||
| 'callbackUrl': 'str' | ||
| } | ||
| self.callbackUrl = None # str | ||
@@ -41,48 +41,2 @@ #!/usr/bin/env python | ||
| def GetJob(self, userId, jobId, **kwargs): | ||
| """Get job | ||
| Args: | ||
| userId, str: User GUID (required) | ||
| jobId, str: Job Id or Guid (required) | ||
| Returns: GetJobResponse | ||
| """ | ||
| if( userId == None or jobId == None ): | ||
| raise ApiException(400, "missing required parameters") | ||
| allParams = ['userId', 'jobId'] | ||
| params = locals() | ||
| for (key, val) in params['kwargs'].iteritems(): | ||
| if key not in allParams: | ||
| raise TypeError("Got an unexpected keyword argument '%s' to method GetJob" % key) | ||
| params[key] = val | ||
| del params['kwargs'] | ||
| resourcePath = '/async/{userId}/jobs/{jobId}?format=xml'.replace('*', '') | ||
| resourcePath = resourcePath.replace('{format}', 'json') | ||
| method = 'GET' | ||
| queryParams = {} | ||
| headerParams = {} | ||
| if ('userId' in params): | ||
| replacement = str(self.apiClient.toPathValue(params['userId'])) | ||
| resourcePath = resourcePath.replace('{' + 'userId' + '}', | ||
| replacement) | ||
| if ('jobId' in params): | ||
| replacement = str(self.apiClient.toPathValue(params['jobId'])) | ||
| resourcePath = resourcePath.replace('{' + 'jobId' + '}', | ||
| replacement) | ||
| postData = (params['body'] if 'body' in params else None) | ||
| response = self.apiClient.callAPI(self.basePath, resourcePath, method, queryParams, | ||
| postData, headerParams) | ||
| if not response: | ||
| return None | ||
| responseObject = self.apiClient.deserialize(response, 'GetJobResponse') | ||
| return responseObject | ||
| def GetJobJson(self, userId, jobId, **kwargs): | ||
@@ -108,3 +62,3 @@ """Get job json | ||
| resourcePath = '/async/{userId}/jobs/{jobId}?format=json'.replace('*', '') | ||
| resourcePath = '/async/{userId}/jobs/{jobId}'.replace('*', '') | ||
| resourcePath = resourcePath.replace('{format}', 'json') | ||
@@ -111,0 +65,0 @@ method = 'GET' |
+41
-0
@@ -124,2 +124,43 @@ #!/usr/bin/env python | ||
| def Revoke(self, userId, **kwargs): | ||
| """Revoke private key | ||
| Args: | ||
| userId, str: User GUID (required) | ||
| Returns: RevokeResponse | ||
| """ | ||
| if( userId == None ): | ||
| raise ApiException(400, "missing required parameters") | ||
| allParams = ['userId'] | ||
| params = locals() | ||
| for (key, val) in params['kwargs'].iteritems(): | ||
| if key not in allParams: | ||
| raise TypeError("Got an unexpected keyword argument '%s' to method Revoke" % key) | ||
| params[key] = val | ||
| del params['kwargs'] | ||
| resourcePath = '/mgmt/{userId}/revoke'.replace('*', '') | ||
| resourcePath = resourcePath.replace('{format}', 'json') | ||
| method = 'PUT' | ||
| queryParams = {} | ||
| headerParams = {} | ||
| if ('userId' in params): | ||
| replacement = str(self.apiClient.toPathValue(params['userId'])) | ||
| resourcePath = resourcePath.replace('{' + 'userId' + '}', | ||
| replacement) | ||
| postData = (params['body'] if 'body' in params else None) | ||
| response = self.apiClient.callAPI(self.basePath, resourcePath, method, queryParams, | ||
| postData, headerParams) | ||
| if not response: | ||
| return None | ||
| responseObject = self.apiClient.deserialize(response, 'RevokeResponse') | ||
| return responseObject | ||
| def ChangeUserPassword(self, userId, body, **kwargs): | ||
@@ -126,0 +167,0 @@ """Change user password |
@@ -48,3 +48,4 @@ #!/usr/bin/env python | ||
| 'canBeCommented': 'bool', | ||
| 'inPersonSign': 'bool' | ||
| 'inPersonSign': 'bool', | ||
| 'ownerName': 'str' | ||
@@ -77,2 +78,3 @@ } | ||
| self.inPersonSign = None # bool | ||
| self.ownerName = None # str | ||
@@ -38,3 +38,4 @@ #!/usr/bin/env python | ||
| 'billingPeriod': 'int', | ||
| 'promoCode': 'str' | ||
| 'promoCode': 'str', | ||
| 'nextAssesmentDate': 'str' | ||
@@ -57,2 +58,3 @@ } | ||
| self.promoCode = None # str | ||
| self.nextAssesmentDate = None # str | ||
@@ -194,3 +194,3 @@ #!/usr/bin/env python | ||
| resourcePath = '/system/{callerId}/plans/{family}'.replace('*', '') | ||
| resourcePath = '/system/{callerId}/plans/{family}?invalidate={invalidate}'.replace('*', '') | ||
| resourcePath = resourcePath.replace('{format}', 'json') | ||
@@ -576,4 +576,50 @@ method = 'GET' | ||
| def GetTermSuggestions(self, userId, term, **kwargs): | ||
| """Returns suggestions for a specified term | ||
| Args: | ||
| userId, str: User global unique identifier (required) | ||
| term, str: A term to return suggestions for (required) | ||
| Returns: GetTermSuggestionsResponse | ||
| """ | ||
| if( userId == None or term == None ): | ||
| raise ApiException(400, "missing required parameters") | ||
| allParams = ['userId', 'term'] | ||
| params = locals() | ||
| for (key, val) in params['kwargs'].iteritems(): | ||
| if key not in allParams: | ||
| raise TypeError("Got an unexpected keyword argument '%s' to method GetTermSuggestions" % key) | ||
| params[key] = val | ||
| del params['kwargs'] | ||
| resourcePath = '/system/{userId}/terms/{term}/suggestions'.replace('*', '') | ||
| resourcePath = resourcePath.replace('{format}', 'json') | ||
| method = 'GET' | ||
| queryParams = {} | ||
| headerParams = {} | ||
| if ('userId' in params): | ||
| replacement = str(self.apiClient.toPathValue(params['userId'])) | ||
| resourcePath = resourcePath.replace('{' + 'userId' + '}', | ||
| replacement) | ||
| if ('term' in params): | ||
| replacement = str(self.apiClient.toPathValue(params['term'])) | ||
| resourcePath = resourcePath.replace('{' + 'term' + '}', | ||
| replacement) | ||
| postData = (params['body'] if 'body' in params else None) | ||
| response = self.apiClient.callAPI(self.basePath, resourcePath, method, queryParams, | ||
| postData, headerParams) | ||
| if not response: | ||
| return None | ||
| responseObject = self.apiClient.deserialize(response, 'GetTermSuggestionsResponse') | ||
| return responseObject | ||
| __pkgname__ = "groupdocs-python" | ||
| __version__ = "1.6.0" | ||
| __version__ = "1.7.0" |
+2
-2
| Metadata-Version: 1.1 | ||
| Name: groupdocs-python | ||
| Version: 1.6.0 | ||
| Version: 1.7.0 | ||
| Summary: A Python interface to the GroupDocs API | ||
@@ -13,3 +13,3 @@ Home-page: http://groupdocs.com/ | ||
| Latest SDK version 1.6.0. | ||
| Latest SDK version 1.7.0. | ||
@@ -16,0 +16,0 @@ Requirements |
+1
-1
| GroupDocs Python SDK |Build Status|_ | ||
| #################################### | ||
| Latest SDK version 1.6.0. | ||
| Latest SDK version 1.7.0. | ||
@@ -6,0 +6,0 @@ Requirements |
| #!/usr/bin/env python | ||
| """ | ||
| Copyright 2012 GroupDocs. | ||
| Licensed under the Apache License, Version 2.0 (the "License"); | ||
| you may not use this file except in compliance with the License. | ||
| You may obtain a copy of the License at | ||
| http://www.apache.org/licenses/LICENSE-2.0 | ||
| Unless required by applicable law or agreed to in writing, software | ||
| distributed under the License is distributed on an "AS IS" BASIS, | ||
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| See the License for the specific language governing permissions and | ||
| limitations under the License. | ||
| """ | ||
| class PublicSignatureSignDocumentSignerSettings: | ||
| """ | ||
| NOTE: This class is auto generated by the swagger code generator program. | ||
| Do not edit the class manually.""" | ||
| def __init__(self): | ||
| self.swaggerTypes = { | ||
| 'waterMarkText': 'str', | ||
| 'waterMarkImage': 'str', | ||
| 'name': 'str', | ||
| 'top': 'float', | ||
| 'left': 'float', | ||
| 'width': 'float', | ||
| 'height': 'float', | ||
| 'placeSignatureOn': 'str', | ||
| 'data': 'str' | ||
| } | ||
| self.waterMarkText = None # str | ||
| self.waterMarkImage = None # str | ||
| self.name = None # str | ||
| self.top = None # float | ||
| self.left = None # float | ||
| self.width = None # float | ||
| self.height = None # float | ||
| self.placeSignatureOn = None # str | ||
| self.data = None # str | ||
| #!/usr/bin/env python | ||
| """ | ||
| Copyright 2012 GroupDocs. | ||
| Licensed under the Apache License, Version 2.0 (the "License"); | ||
| you may not use this file except in compliance with the License. | ||
| You may obtain a copy of the License at | ||
| http://www.apache.org/licenses/LICENSE-2.0 | ||
| Unless required by applicable law or agreed to in writing, software | ||
| distributed under the License is distributed on an "AS IS" BASIS, | ||
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| See the License for the specific language governing permissions and | ||
| limitations under the License. | ||
| """ | ||
| class SignatureContactSettings: | ||
| """ | ||
| NOTE: This class is auto generated by the swagger code generator program. | ||
| Do not edit the class manually.""" | ||
| def __init__(self): | ||
| self.swaggerTypes = { | ||
| 'firstName': 'str', | ||
| 'lastName': 'str', | ||
| 'email': 'str' | ||
| } | ||
| self.firstName = None # str | ||
| self.lastName = None # str | ||
| self.email = None # str | ||
| #!/usr/bin/env python | ||
| """ | ||
| Copyright 2012 GroupDocs. | ||
| Licensed under the Apache License, Version 2.0 (the "License"); | ||
| you may not use this file except in compliance with the License. | ||
| You may obtain a copy of the License at | ||
| http://www.apache.org/licenses/LICENSE-2.0 | ||
| Unless required by applicable law or agreed to in writing, software | ||
| distributed under the License is distributed on an "AS IS" BASIS, | ||
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| See the License for the specific language governing permissions and | ||
| limitations under the License. | ||
| """ | ||
| class SignatureEnvelopeAssignFieldSettings: | ||
| """ | ||
| NOTE: This class is auto generated by the swagger code generator program. | ||
| Do not edit the class manually.""" | ||
| def __init__(self): | ||
| self.swaggerTypes = { | ||
| 'currentRecipientId': 'str', | ||
| 'newRecipientId': 'str' | ||
| } | ||
| self.currentRecipientId = None # str | ||
| self.newRecipientId = None # str | ||
| #!/usr/bin/env python | ||
| """ | ||
| Copyright 2012 GroupDocs. | ||
| Licensed under the Apache License, Version 2.0 (the "License"); | ||
| you may not use this file except in compliance with the License. | ||
| You may obtain a copy of the License at | ||
| http://www.apache.org/licenses/LICENSE-2.0 | ||
| Unless required by applicable law or agreed to in writing, software | ||
| distributed under the License is distributed on an "AS IS" BASIS, | ||
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| See the License for the specific language governing permissions and | ||
| limitations under the License. | ||
| """ | ||
| class SignatureEnvelopeFieldLocationSettings: | ||
| """ | ||
| NOTE: This class is auto generated by the swagger code generator program. | ||
| Do not edit the class manually.""" | ||
| def __init__(self): | ||
| self.swaggerTypes = { | ||
| 'page': 'int', | ||
| 'locationX': 'float', | ||
| 'locationY': 'float', | ||
| 'locationWidth': 'float', | ||
| 'locationHeight': 'float', | ||
| 'fontName': 'str', | ||
| 'fontColor': 'str', | ||
| 'fontSize': 'float', | ||
| 'fontBold': 'bool', | ||
| 'fontItalic': 'bool', | ||
| 'fontUnderline': 'bool', | ||
| 'forceNewField': 'bool', | ||
| 'align': 'int' | ||
| } | ||
| 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.fontUnderline = None # bool | ||
| self.forceNewField = None # bool | ||
| self.align = None # int | ||
| #!/usr/bin/env python | ||
| """ | ||
| Copyright 2012 GroupDocs. | ||
| Licensed under the Apache License, Version 2.0 (the "License"); | ||
| you may not use this file except in compliance with the License. | ||
| You may obtain a copy of the License at | ||
| http://www.apache.org/licenses/LICENSE-2.0 | ||
| Unless required by applicable law or agreed to in writing, software | ||
| distributed under the License is distributed on an "AS IS" BASIS, | ||
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| See the License for the specific language governing permissions and | ||
| limitations under the License. | ||
| """ | ||
| class SignatureEnvelopeFieldSettings: | ||
| """ | ||
| NOTE: This class is auto generated by the swagger code generator program. | ||
| Do not edit the class manually.""" | ||
| def __init__(self): | ||
| self.swaggerTypes = { | ||
| 'name': 'str', | ||
| 'mandatory': 'bool', | ||
| 'order': 'int', | ||
| 'page': 'int', | ||
| 'locationX': 'float', | ||
| 'locationY': 'float', | ||
| 'locationWidth': 'float', | ||
| 'locationHeight': 'float', | ||
| 'regularExpression': 'str', | ||
| 'fontName': 'str', | ||
| 'fontColor': 'str', | ||
| 'fontSize': 'float', | ||
| 'fontBold': 'bool', | ||
| 'fontItalic': 'bool', | ||
| 'fontUnderline': 'bool', | ||
| 'forceNewField': 'bool', | ||
| 'acceptableValues': 'str', | ||
| 'defaultValue': 'str', | ||
| 'tooltip': 'str', | ||
| 'align': 'int', | ||
| 'guidanceText': '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.fontSize = None # float | ||
| self.fontBold = None # bool | ||
| self.fontItalic = None # bool | ||
| self.fontUnderline = None # bool | ||
| self.forceNewField = None # bool | ||
| self.acceptableValues = None # str | ||
| self.defaultValue = None # str | ||
| self.tooltip = None # str | ||
| self.align = None # int | ||
| self.guidanceText = None # str | ||
| #!/usr/bin/env python | ||
| """ | ||
| Copyright 2012 GroupDocs. | ||
| Licensed under the Apache License, Version 2.0 (the "License"); | ||
| you may not use this file except in compliance with the License. | ||
| You may obtain a copy of the License at | ||
| http://www.apache.org/licenses/LICENSE-2.0 | ||
| Unless required by applicable law or agreed to in writing, software | ||
| distributed under the License is distributed on an "AS IS" BASIS, | ||
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| See the License for the specific language governing permissions and | ||
| limitations under the License. | ||
| """ | ||
| class SignatureEnvelopeSettings: | ||
| """ | ||
| NOTE: This class is auto generated by the swagger code generator program. | ||
| Do not edit the class manually.""" | ||
| def __init__(self): | ||
| self.swaggerTypes = { | ||
| 'ownerShouldSign': 'bool', | ||
| 'orderedSignature': 'bool', | ||
| 'reminderTime': 'float', | ||
| 'stepExpireTime': 'float', | ||
| 'envelopeExpireTime': 'float', | ||
| 'emailSubject': 'str', | ||
| 'emailBody': 'str', | ||
| 'isDemo': 'bool', | ||
| 'waterMarkText': 'str', | ||
| 'waterMarkImage': 'str', | ||
| 'attachSignedDocument': 'bool', | ||
| 'includeViewLink': 'bool', | ||
| 'canBeCommented': 'bool', | ||
| 'inPersonSign': 'bool' | ||
| } | ||
| self.ownerShouldSign = None # bool | ||
| self.orderedSignature = None # bool | ||
| self.reminderTime = None # float | ||
| self.stepExpireTime = None # float | ||
| self.envelopeExpireTime = None # float | ||
| self.emailSubject = None # str | ||
| self.emailBody = None # str | ||
| self.isDemo = None # bool | ||
| self.waterMarkText = None # str | ||
| self.waterMarkImage = None # str | ||
| self.attachSignedDocument = None # bool | ||
| self.includeViewLink = None # bool | ||
| self.canBeCommented = None # bool | ||
| self.inPersonSign = None # bool | ||
| #!/usr/bin/env python | ||
| """ | ||
| Copyright 2012 GroupDocs. | ||
| Licensed under the Apache License, Version 2.0 (the "License"); | ||
| you may not use this file except in compliance with the License. | ||
| You may obtain a copy of the License at | ||
| http://www.apache.org/licenses/LICENSE-2.0 | ||
| Unless required by applicable law or agreed to in writing, software | ||
| distributed under the License is distributed on an "AS IS" BASIS, | ||
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| See the License for the specific language governing permissions and | ||
| limitations under the License. | ||
| """ | ||
| class SignatureFieldSettings: | ||
| """ | ||
| NOTE: This class is auto generated by the swagger code generator program. | ||
| Do not edit the class manually.""" | ||
| def __init__(self): | ||
| self.swaggerTypes = { | ||
| 'name': 'str', | ||
| 'graphSizeW': 'int', | ||
| 'graphSizeH': 'int', | ||
| 'getDataFrom': 'str', | ||
| 'regularExpression': 'str' | ||
| } | ||
| self.name = None # str | ||
| self.graphSizeW = None # int | ||
| self.graphSizeH = None # int | ||
| self.getDataFrom = None # str | ||
| self.regularExpression = None # str | ||
| #!/usr/bin/env python | ||
| """ | ||
| Copyright 2012 GroupDocs. | ||
| Licensed under the Apache License, Version 2.0 (the "License"); | ||
| you may not use this file except in compliance with the License. | ||
| You may obtain a copy of the License at | ||
| http://www.apache.org/licenses/LICENSE-2.0 | ||
| Unless required by applicable law or agreed to in writing, software | ||
| distributed under the License is distributed on an "AS IS" BASIS, | ||
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| See the License for the specific language governing permissions and | ||
| limitations under the License. | ||
| """ | ||
| class SignatureFormFieldLocationSettings: | ||
| """ | ||
| NOTE: This class is auto generated by the swagger code generator program. | ||
| Do not edit the class manually.""" | ||
| def __init__(self): | ||
| self.swaggerTypes = { | ||
| 'page': 'int', | ||
| 'locationX': 'float', | ||
| 'locationY': 'float', | ||
| 'locationWidth': 'float', | ||
| 'locationHeight': 'float', | ||
| 'fontName': 'str', | ||
| 'fontColor': 'str', | ||
| 'fontSize': 'float', | ||
| 'fontBold': 'bool', | ||
| 'fontItalic': 'bool', | ||
| 'fontUnderline': 'bool', | ||
| 'forceNewField': 'bool', | ||
| 'align': 'int' | ||
| } | ||
| 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.fontUnderline = None # bool | ||
| self.forceNewField = None # bool | ||
| self.align = None # int | ||
| #!/usr/bin/env python | ||
| """ | ||
| Copyright 2012 GroupDocs. | ||
| Licensed under the Apache License, Version 2.0 (the "License"); | ||
| you may not use this file except in compliance with the License. | ||
| You may obtain a copy of the License at | ||
| http://www.apache.org/licenses/LICENSE-2.0 | ||
| Unless required by applicable law or agreed to in writing, software | ||
| distributed under the License is distributed on an "AS IS" BASIS, | ||
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| See the License for the specific language governing permissions and | ||
| limitations under the License. | ||
| """ | ||
| class SignatureFormFieldSettings: | ||
| """ | ||
| NOTE: This class is auto generated by the swagger code generator program. | ||
| Do not edit the class manually.""" | ||
| def __init__(self): | ||
| self.swaggerTypes = { | ||
| 'name': 'str', | ||
| 'mandatory': 'bool', | ||
| 'order': 'int', | ||
| 'page': 'int', | ||
| 'locationX': 'float', | ||
| 'locationY': 'float', | ||
| 'locationWidth': 'float', | ||
| 'locationHeight': 'float', | ||
| 'regularExpression': 'str', | ||
| 'fontName': 'str', | ||
| 'fontColor': 'str', | ||
| 'fontSize': 'float', | ||
| 'fontBold': 'bool', | ||
| 'fontItalic': 'bool', | ||
| 'fontUnderline': 'bool', | ||
| 'forceNewField': 'bool', | ||
| 'acceptableValues': 'str', | ||
| 'defaultValue': 'str', | ||
| 'tooltip': 'str', | ||
| 'align': 'int', | ||
| 'guidanceText': '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.fontSize = None # float | ||
| self.fontBold = None # bool | ||
| self.fontItalic = None # bool | ||
| self.fontUnderline = None # bool | ||
| self.forceNewField = None # bool | ||
| self.acceptableValues = None # str | ||
| self.defaultValue = None # str | ||
| self.tooltip = None # str | ||
| self.align = None # int | ||
| self.guidanceText = None # str | ||
| #!/usr/bin/env python | ||
| """ | ||
| Copyright 2012 GroupDocs. | ||
| Licensed under the Apache License, Version 2.0 (the "License"); | ||
| you may not use this file except in compliance with the License. | ||
| You may obtain a copy of the License at | ||
| http://www.apache.org/licenses/LICENSE-2.0 | ||
| Unless required by applicable law or agreed to in writing, software | ||
| distributed under the License is distributed on an "AS IS" BASIS, | ||
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| See the License for the specific language governing permissions and | ||
| limitations under the License. | ||
| """ | ||
| class SignatureFormSettings: | ||
| """ | ||
| NOTE: This class is auto generated by the swagger code generator program. | ||
| Do not edit the class manually.""" | ||
| def __init__(self): | ||
| self.swaggerTypes = { | ||
| 'name': 'str', | ||
| 'fieldsInFinalFileName': 'str', | ||
| 'canParticipantDownloadForm': 'bool', | ||
| 'waterMarkText': 'str', | ||
| 'waterMarkImage': 'str', | ||
| 'notifyOwnerOnSign ': 'bool', | ||
| 'attachSignedDocument': 'bool' | ||
| } | ||
| self.name = None # str | ||
| self.fieldsInFinalFileName = None # str | ||
| self.canParticipantDownloadForm = None # bool | ||
| self.waterMarkText = None # str | ||
| self.waterMarkImage = None # str | ||
| self.notifyOwnerOnSign = None # bool | ||
| self.attachSignedDocument = None # bool | ||
| #!/usr/bin/env python | ||
| """ | ||
| Copyright 2012 GroupDocs. | ||
| Licensed under the Apache License, Version 2.0 (the "License"); | ||
| you may not use this file except in compliance with the License. | ||
| You may obtain a copy of the License at | ||
| http://www.apache.org/licenses/LICENSE-2.0 | ||
| Unless required by applicable law or agreed to in writing, software | ||
| distributed under the License is distributed on an "AS IS" BASIS, | ||
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| See the License for the specific language governing permissions and | ||
| limitations under the License. | ||
| """ | ||
| class SignaturePredefinedListSettings: | ||
| """ | ||
| NOTE: This class is auto generated by the swagger code generator program. | ||
| Do not edit the class manually.""" | ||
| def __init__(self): | ||
| self.swaggerTypes = { | ||
| 'name': 'str', | ||
| 'values': 'str', | ||
| 'defaultValue': 'str' | ||
| } | ||
| self.name = None # str | ||
| self.values = None # str | ||
| self.defaultValue = None # str | ||
| #!/usr/bin/env python | ||
| """ | ||
| Copyright 2012 GroupDocs. | ||
| Licensed under the Apache License, Version 2.0 (the "License"); | ||
| you may not use this file except in compliance with the License. | ||
| You may obtain a copy of the License at | ||
| http://www.apache.org/licenses/LICENSE-2.0 | ||
| Unless required by applicable law or agreed to in writing, software | ||
| distributed under the License is distributed on an "AS IS" BASIS, | ||
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| See the License for the specific language governing permissions and | ||
| limitations under the License. | ||
| """ | ||
| class SignatureSignatureSettings: | ||
| """ | ||
| NOTE: This class is auto generated by the swagger code generator program. | ||
| Do not edit the class manually.""" | ||
| def __init__(self): | ||
| self.swaggerTypes = { | ||
| 'name': 'str', | ||
| 'companyName': 'str', | ||
| 'position': 'str', | ||
| 'firstName': 'str', | ||
| 'lastName': 'str', | ||
| 'textInitials': 'str', | ||
| 'signatureData': 'str', | ||
| 'initialsData': 'str' | ||
| } | ||
| self.name = None # str | ||
| self.companyName = None # str | ||
| self.position = None # str | ||
| self.firstName = None # str | ||
| self.lastName = None # str | ||
| self.textInitials = None # str | ||
| self.signatureData = None # str | ||
| self.initialsData = None # str | ||
| #!/usr/bin/env python | ||
| """ | ||
| Copyright 2012 GroupDocs. | ||
| Licensed under the Apache License, Version 2.0 (the "License"); | ||
| you may not use this file except in compliance with the License. | ||
| You may obtain a copy of the License at | ||
| http://www.apache.org/licenses/LICENSE-2.0 | ||
| Unless required by applicable law or agreed to in writing, software | ||
| distributed under the License is distributed on an "AS IS" BASIS, | ||
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| See the License for the specific language governing permissions and | ||
| limitations under the License. | ||
| """ | ||
| class SignatureSignDocumentDocumentSettings: | ||
| """ | ||
| NOTE: This class is auto generated by the swagger code generator program. | ||
| Do not edit the class manually.""" | ||
| def __init__(self): | ||
| self.swaggerTypes = { | ||
| 'name': 'str', | ||
| 'data': 'str' | ||
| } | ||
| self.name = None # str | ||
| self.data = None # str | ||
| #!/usr/bin/env python | ||
| """ | ||
| Copyright 2012 GroupDocs. | ||
| Licensed under the Apache License, Version 2.0 (the "License"); | ||
| you may not use this file except in compliance with the License. | ||
| You may obtain a copy of the License at | ||
| http://www.apache.org/licenses/LICENSE-2.0 | ||
| Unless required by applicable law or agreed to in writing, software | ||
| distributed under the License is distributed on an "AS IS" BASIS, | ||
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| See the License for the specific language governing permissions and | ||
| limitations under the License. | ||
| """ | ||
| class SignatureSignDocumentSettings: | ||
| """ | ||
| NOTE: This class is auto generated by the swagger code generator program. | ||
| Do not edit the class manually.""" | ||
| def __init__(self): | ||
| self.swaggerTypes = { | ||
| 'documents': 'list[SignatureSignDocumentDocumentSettings]', | ||
| 'signers': 'list[SignatureSignDocumentSignerSettings]', | ||
| 'waterMarkText': 'str', | ||
| 'waterMarkImage': 'str' | ||
| } | ||
| self.documents = None # list[SignatureSignDocumentDocumentSettings] | ||
| self.signers = None # list[SignatureSignDocumentSignerSettings] | ||
| self.waterMarkText = None # str | ||
| self.waterMarkImage = None # str | ||
| #!/usr/bin/env python | ||
| """ | ||
| Copyright 2012 GroupDocs. | ||
| Licensed under the Apache License, Version 2.0 (the "License"); | ||
| you may not use this file except in compliance with the License. | ||
| You may obtain a copy of the License at | ||
| http://www.apache.org/licenses/LICENSE-2.0 | ||
| Unless required by applicable law or agreed to in writing, software | ||
| distributed under the License is distributed on an "AS IS" BASIS, | ||
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| See the License for the specific language governing permissions and | ||
| limitations under the License. | ||
| """ | ||
| class SignatureSignDocumentSignerSettings: | ||
| """ | ||
| NOTE: This class is auto generated by the swagger code generator program. | ||
| Do not edit the class manually.""" | ||
| def __init__(self): | ||
| self.swaggerTypes = { | ||
| 'name': 'str', | ||
| 'top': 'float', | ||
| 'left': 'float', | ||
| 'width': 'float', | ||
| 'height': 'float', | ||
| 'placeSignatureOn': 'str', | ||
| 'data': 'str' | ||
| } | ||
| self.name = None # str | ||
| self.top = None # float | ||
| self.left = None # float | ||
| self.width = None # float | ||
| self.height = None # float | ||
| self.placeSignatureOn = None # str | ||
| self.data = None # str | ||
| #!/usr/bin/env python | ||
| """ | ||
| Copyright 2012 GroupDocs. | ||
| Licensed under the Apache License, Version 2.0 (the "License"); | ||
| you may not use this file except in compliance with the License. | ||
| You may obtain a copy of the License at | ||
| http://www.apache.org/licenses/LICENSE-2.0 | ||
| Unless required by applicable law or agreed to in writing, software | ||
| distributed under the License is distributed on an "AS IS" BASIS, | ||
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| See the License for the specific language governing permissions and | ||
| limitations under the License. | ||
| """ | ||
| class SignatureTemplateAssignFieldSettings: | ||
| """ | ||
| NOTE: This class is auto generated by the swagger code generator program. | ||
| Do not edit the class manually.""" | ||
| def __init__(self): | ||
| self.swaggerTypes = { | ||
| 'currentRecipientId': 'str', | ||
| 'newRecipientId': 'str' | ||
| } | ||
| self.currentRecipientId = None # str | ||
| self.newRecipientId = None # str | ||
| #!/usr/bin/env python | ||
| """ | ||
| Copyright 2012 GroupDocs. | ||
| Licensed under the Apache License, Version 2.0 (the "License"); | ||
| you may not use this file except in compliance with the License. | ||
| You may obtain a copy of the License at | ||
| http://www.apache.org/licenses/LICENSE-2.0 | ||
| Unless required by applicable law or agreed to in writing, software | ||
| distributed under the License is distributed on an "AS IS" BASIS, | ||
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| See the License for the specific language governing permissions and | ||
| limitations under the License. | ||
| """ | ||
| class SignatureTemplateFieldLocationSettings: | ||
| """ | ||
| NOTE: This class is auto generated by the swagger code generator program. | ||
| Do not edit the class manually.""" | ||
| def __init__(self): | ||
| self.swaggerTypes = { | ||
| 'page': 'int', | ||
| 'locationX': 'float', | ||
| 'locationY': 'float', | ||
| 'locationWidth': 'float', | ||
| 'locationHeight': 'float', | ||
| 'fontName': 'str', | ||
| 'fontColor': 'str', | ||
| 'fontSize': 'float', | ||
| 'fontBold': 'bool', | ||
| 'fontItalic': 'bool', | ||
| 'fontUnderline': 'bool', | ||
| 'forceNewField': 'bool', | ||
| 'align': 'int' | ||
| } | ||
| 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.fontUnderline = None # bool | ||
| self.forceNewField = None # bool | ||
| self.align = None # int | ||
| #!/usr/bin/env python | ||
| """ | ||
| Copyright 2012 GroupDocs. | ||
| Licensed under the Apache License, Version 2.0 (the "License"); | ||
| you may not use this file except in compliance with the License. | ||
| You may obtain a copy of the License at | ||
| http://www.apache.org/licenses/LICENSE-2.0 | ||
| Unless required by applicable law or agreed to in writing, software | ||
| distributed under the License is distributed on an "AS IS" BASIS, | ||
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| See the License for the specific language governing permissions and | ||
| limitations under the License. | ||
| """ | ||
| class SignatureTemplateFieldSettings: | ||
| """ | ||
| NOTE: This class is auto generated by the swagger code generator program. | ||
| Do not edit the class manually.""" | ||
| def __init__(self): | ||
| self.swaggerTypes = { | ||
| 'name': 'str', | ||
| 'mandatory': 'bool', | ||
| 'order': 'int', | ||
| 'page': 'int', | ||
| 'locationX': 'float', | ||
| 'locationY': 'float', | ||
| 'locationHeight': 'float', | ||
| 'locationWidth': 'float', | ||
| 'regularExpression': 'str', | ||
| 'fontName': 'str', | ||
| 'fontColor': 'str', | ||
| 'fontSize': 'float', | ||
| 'fontBold': 'bool', | ||
| 'fontItalic': 'bool', | ||
| 'fontUnderline': 'bool', | ||
| 'forceNewField': 'bool', | ||
| 'acceptableValues': 'str', | ||
| 'defaultValue': 'str', | ||
| 'tooltip': 'str', | ||
| 'align': 'int', | ||
| 'guidanceText': '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.fontSize = None # float | ||
| self.fontBold = None # bool | ||
| self.fontItalic = None # bool | ||
| self.fontUnderline = None # bool | ||
| self.forceNewField = None # bool | ||
| self.acceptableValues = None # str | ||
| self.defaultValue = None # str | ||
| self.tooltip = None # str | ||
| self.align = None # int | ||
| self.guidanceText = None # str | ||
| #!/usr/bin/env python | ||
| """ | ||
| Copyright 2012 GroupDocs. | ||
| Licensed under the Apache License, Version 2.0 (the "License"); | ||
| you may not use this file except in compliance with the License. | ||
| You may obtain a copy of the License at | ||
| http://www.apache.org/licenses/LICENSE-2.0 | ||
| Unless required by applicable law or agreed to in writing, software | ||
| distributed under the License is distributed on an "AS IS" BASIS, | ||
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| See the License for the specific language governing permissions and | ||
| limitations under the License. | ||
| """ | ||
| class SignatureTemplateSettings: | ||
| """ | ||
| NOTE: This class is auto generated by the swagger code generator program. | ||
| Do not edit the class manually.""" | ||
| def __init__(self): | ||
| self.swaggerTypes = { | ||
| 'ownerShouldSign': 'bool', | ||
| 'orderedSignature': 'bool', | ||
| 'reminderTime': 'float', | ||
| 'stepExpireTime': 'float', | ||
| 'templateExpireTime': 'float', | ||
| 'emailSubject': 'str', | ||
| 'emailBody': 'str', | ||
| 'waterMarkText': 'str', | ||
| 'waterMarkImage': 'str' | ||
| } | ||
| self.ownerShouldSign = None # bool | ||
| self.orderedSignature = None # bool | ||
| self.reminderTime = None # float | ||
| self.stepExpireTime = None # float | ||
| self.templateExpireTime = None # float | ||
| self.emailSubject = None # str | ||
| self.emailBody = None # str | ||
| self.waterMarkText = None # str | ||
| self.waterMarkImage = None # str | ||
Sorry, the diff of this file is too big to display
Alert delta unavailable
Currently unable to show alert delta for PyPI packages.
1155478
1.51%422
1.44%23705
1.44%