-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
20220726 update : add 4 kinds of save option and update apis.
- Loading branch information
1 parent
333d446
commit ce3047c
Showing
8 changed files
with
921 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,124 @@ | ||
# coding: utf-8 | ||
|
||
""" | ||
Copyright (c) 2022 Aspose.Cells Cloud | ||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
""" | ||
|
||
|
||
from pprint import pformat | ||
from six import iteritems | ||
import re | ||
from . import SaveOptions | ||
|
||
class DocxSaveOptions(SaveOptions): | ||
""" | ||
NOTE: This class is auto generated by the swagger code generator program. | ||
Do not edit the class manually. | ||
""" | ||
|
||
|
||
""" | ||
Attributes: | ||
swagger_types (dict): The key is attribute name | ||
and the value is attribute type. | ||
attribute_map (dict): The key is attribute name | ||
and the value is json key in definition. | ||
""" | ||
swagger_types = { | ||
|
||
} | ||
|
||
attribute_map = { | ||
|
||
} | ||
|
||
@staticmethod | ||
def get_swagger_types(): | ||
return dict(DocxSaveOptions.swagger_types, **SaveOptions.get_swagger_types()) | ||
|
||
@staticmethod | ||
def get_attribute_map(): | ||
return dict(DocxSaveOptions.attribute_map, **SaveOptions.get_attribute_map()) | ||
|
||
def get_from_container(self, attr): | ||
if attr in self.container: | ||
return self.container[attr] | ||
return None | ||
|
||
def __init__(self, **kw): | ||
super(DocxSaveOptions, self).__init__(**kw) | ||
|
||
""" | ||
DocxSaveOptions - a model defined in Swagger | ||
""" | ||
|
||
|
||
|
||
def to_dict(self): | ||
""" | ||
Returns the model properties as a dict | ||
""" | ||
result = {} | ||
|
||
for attr, _ in iteritems(self.get_swagger_types()): | ||
value = self.get_from_container(attr) | ||
if isinstance(value, list): | ||
result[attr] = list(map( | ||
lambda x: x.to_dict() if hasattr(x, "to_dict") else x, | ||
value | ||
)) | ||
elif hasattr(value, "to_dict"): | ||
result[attr] = value.to_dict() | ||
elif isinstance(value, dict): | ||
result[attr] = dict(map( | ||
lambda item: (item[0], item[1].to_dict()) | ||
if hasattr(item[1], "to_dict") else item, | ||
value.items() | ||
)) | ||
else: | ||
result[attr] = value | ||
|
||
return result | ||
|
||
def to_str(self): | ||
""" | ||
Returns the string representation of the model | ||
""" | ||
return pformat(self.to_dict()) | ||
|
||
def __repr__(self): | ||
""" | ||
For `print` and `pprint` | ||
""" | ||
return self.to_str() | ||
|
||
def __eq__(self, other): | ||
""" | ||
Returns true if both objects are equal | ||
""" | ||
if not isinstance(other, DocxSaveOptions): | ||
return False | ||
|
||
return self.__dict__ == other.__dict__ | ||
|
||
def __ne__(self, other): | ||
""" | ||
Returns true if both objects are not equal | ||
""" | ||
return not self == other |
Oops, something went wrong.