docusign_esign.models.palette_settings

Docusign eSignature REST API

The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. # noqa: E501

OpenAPI spec version: v2.1 Contact: devcenter@docusign.com Generated by: https://github.com/swagger-api/swagger-codegen.git

  1# coding: utf-8
  2
  3"""
  4    Docusign eSignature REST API
  5
  6    The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign.  # noqa: E501
  7
  8    OpenAPI spec version: v2.1
  9    Contact: devcenter@docusign.com
 10    Generated by: https://github.com/swagger-api/swagger-codegen.git
 11"""
 12
 13
 14import pprint
 15import re  # noqa: F401
 16
 17import six
 18
 19from docusign_esign.client.configuration import Configuration
 20
 21
 22class PaletteSettings(object):
 23    """NOTE: This class is auto generated by the swagger code generator program.
 24
 25    Do not edit the class manually.
 26    """
 27
 28    """
 29    Attributes:
 30      swagger_types (dict): The key is attribute name
 31                            and the value is attribute type.
 32      attribute_map (dict): The key is attribute name
 33                            and the value is json key in definition.
 34    """
 35    swagger_types = {
 36        'annotations': 'PaletteItemSettings',
 37        'custom': 'PaletteItemSettings',
 38        'merge': 'PaletteItemSettings',
 39        'notary': 'PaletteItemSettings',
 40        'seals': 'PaletteItemSettings',
 41        'smart_contracts': 'PaletteItemSettings',
 42        'smart_sections': 'PaletteItemSettings'
 43    }
 44
 45    attribute_map = {
 46        'annotations': 'annotations',
 47        'custom': 'custom',
 48        'merge': 'merge',
 49        'notary': 'notary',
 50        'seals': 'seals',
 51        'smart_contracts': 'smartContracts',
 52        'smart_sections': 'smartSections'
 53    }
 54
 55    def __init__(self, _configuration=None, **kwargs):  # noqa: E501
 56        """PaletteSettings - a model defined in Swagger"""  # noqa: E501
 57        if _configuration is None:
 58            _configuration = Configuration()
 59        self._configuration = _configuration
 60
 61        self._annotations = None
 62        self._custom = None
 63        self._merge = None
 64        self._notary = None
 65        self._seals = None
 66        self._smart_contracts = None
 67        self._smart_sections = None
 68        self.discriminator = None
 69
 70        setattr(self, "_{}".format('annotations'), kwargs.get('annotations', None))
 71        setattr(self, "_{}".format('custom'), kwargs.get('custom', None))
 72        setattr(self, "_{}".format('merge'), kwargs.get('merge', None))
 73        setattr(self, "_{}".format('notary'), kwargs.get('notary', None))
 74        setattr(self, "_{}".format('seals'), kwargs.get('seals', None))
 75        setattr(self, "_{}".format('smart_contracts'), kwargs.get('smart_contracts', None))
 76        setattr(self, "_{}".format('smart_sections'), kwargs.get('smart_sections', None))
 77
 78    @property
 79    def annotations(self):
 80        """Gets the annotations of this PaletteSettings.  # noqa: E501
 81
 82          # noqa: E501
 83
 84        :return: The annotations of this PaletteSettings.  # noqa: E501
 85        :rtype: PaletteItemSettings
 86        """
 87        return self._annotations
 88
 89    @annotations.setter
 90    def annotations(self, annotations):
 91        """Sets the annotations of this PaletteSettings.
 92
 93          # noqa: E501
 94
 95        :param annotations: The annotations of this PaletteSettings.  # noqa: E501
 96        :type: PaletteItemSettings
 97        """
 98
 99        self._annotations = annotations
100
101    @property
102    def custom(self):
103        """Gets the custom of this PaletteSettings.  # noqa: E501
104
105          # noqa: E501
106
107        :return: The custom of this PaletteSettings.  # noqa: E501
108        :rtype: PaletteItemSettings
109        """
110        return self._custom
111
112    @custom.setter
113    def custom(self, custom):
114        """Sets the custom of this PaletteSettings.
115
116          # noqa: E501
117
118        :param custom: The custom of this PaletteSettings.  # noqa: E501
119        :type: PaletteItemSettings
120        """
121
122        self._custom = custom
123
124    @property
125    def merge(self):
126        """Gets the merge of this PaletteSettings.  # noqa: E501
127
128          # noqa: E501
129
130        :return: The merge of this PaletteSettings.  # noqa: E501
131        :rtype: PaletteItemSettings
132        """
133        return self._merge
134
135    @merge.setter
136    def merge(self, merge):
137        """Sets the merge of this PaletteSettings.
138
139          # noqa: E501
140
141        :param merge: The merge of this PaletteSettings.  # noqa: E501
142        :type: PaletteItemSettings
143        """
144
145        self._merge = merge
146
147    @property
148    def notary(self):
149        """Gets the notary of this PaletteSettings.  # noqa: E501
150
151          # noqa: E501
152
153        :return: The notary of this PaletteSettings.  # noqa: E501
154        :rtype: PaletteItemSettings
155        """
156        return self._notary
157
158    @notary.setter
159    def notary(self, notary):
160        """Sets the notary of this PaletteSettings.
161
162          # noqa: E501
163
164        :param notary: The notary of this PaletteSettings.  # noqa: E501
165        :type: PaletteItemSettings
166        """
167
168        self._notary = notary
169
170    @property
171    def seals(self):
172        """Gets the seals of this PaletteSettings.  # noqa: E501
173
174          # noqa: E501
175
176        :return: The seals of this PaletteSettings.  # noqa: E501
177        :rtype: PaletteItemSettings
178        """
179        return self._seals
180
181    @seals.setter
182    def seals(self, seals):
183        """Sets the seals of this PaletteSettings.
184
185          # noqa: E501
186
187        :param seals: The seals of this PaletteSettings.  # noqa: E501
188        :type: PaletteItemSettings
189        """
190
191        self._seals = seals
192
193    @property
194    def smart_contracts(self):
195        """Gets the smart_contracts of this PaletteSettings.  # noqa: E501
196
197          # noqa: E501
198
199        :return: The smart_contracts of this PaletteSettings.  # noqa: E501
200        :rtype: PaletteItemSettings
201        """
202        return self._smart_contracts
203
204    @smart_contracts.setter
205    def smart_contracts(self, smart_contracts):
206        """Sets the smart_contracts of this PaletteSettings.
207
208          # noqa: E501
209
210        :param smart_contracts: The smart_contracts of this PaletteSettings.  # noqa: E501
211        :type: PaletteItemSettings
212        """
213
214        self._smart_contracts = smart_contracts
215
216    @property
217    def smart_sections(self):
218        """Gets the smart_sections of this PaletteSettings.  # noqa: E501
219
220          # noqa: E501
221
222        :return: The smart_sections of this PaletteSettings.  # noqa: E501
223        :rtype: PaletteItemSettings
224        """
225        return self._smart_sections
226
227    @smart_sections.setter
228    def smart_sections(self, smart_sections):
229        """Sets the smart_sections of this PaletteSettings.
230
231          # noqa: E501
232
233        :param smart_sections: The smart_sections of this PaletteSettings.  # noqa: E501
234        :type: PaletteItemSettings
235        """
236
237        self._smart_sections = smart_sections
238
239    def to_dict(self):
240        """Returns the model properties as a dict"""
241        result = {}
242
243        for attr, _ in six.iteritems(self.swagger_types):
244            value = getattr(self, attr)
245            if isinstance(value, list):
246                result[attr] = list(map(
247                    lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
248                    value
249                ))
250            elif hasattr(value, "to_dict"):
251                result[attr] = value.to_dict()
252            elif isinstance(value, dict):
253                result[attr] = dict(map(
254                    lambda item: (item[0], item[1].to_dict())
255                    if hasattr(item[1], "to_dict") else item,
256                    value.items()
257                ))
258            else:
259                result[attr] = value
260        if issubclass(PaletteSettings, dict):
261            for key, value in self.items():
262                result[key] = value
263
264        return result
265
266    def to_str(self):
267        """Returns the string representation of the model"""
268        return pprint.pformat(self.to_dict())
269
270    def __repr__(self):
271        """For `print` and `pprint`"""
272        return self.to_str()
273
274    def __eq__(self, other):
275        """Returns true if both objects are equal"""
276        if not isinstance(other, PaletteSettings):
277            return False
278
279        return self.to_dict() == other.to_dict()
280
281    def __ne__(self, other):
282        """Returns true if both objects are not equal"""
283        if not isinstance(other, PaletteSettings):
284            return True
285
286        return self.to_dict() != other.to_dict()
class PaletteSettings:
 23class PaletteSettings(object):
 24    """NOTE: This class is auto generated by the swagger code generator program.
 25
 26    Do not edit the class manually.
 27    """
 28
 29    """
 30    Attributes:
 31      swagger_types (dict): The key is attribute name
 32                            and the value is attribute type.
 33      attribute_map (dict): The key is attribute name
 34                            and the value is json key in definition.
 35    """
 36    swagger_types = {
 37        'annotations': 'PaletteItemSettings',
 38        'custom': 'PaletteItemSettings',
 39        'merge': 'PaletteItemSettings',
 40        'notary': 'PaletteItemSettings',
 41        'seals': 'PaletteItemSettings',
 42        'smart_contracts': 'PaletteItemSettings',
 43        'smart_sections': 'PaletteItemSettings'
 44    }
 45
 46    attribute_map = {
 47        'annotations': 'annotations',
 48        'custom': 'custom',
 49        'merge': 'merge',
 50        'notary': 'notary',
 51        'seals': 'seals',
 52        'smart_contracts': 'smartContracts',
 53        'smart_sections': 'smartSections'
 54    }
 55
 56    def __init__(self, _configuration=None, **kwargs):  # noqa: E501
 57        """PaletteSettings - a model defined in Swagger"""  # noqa: E501
 58        if _configuration is None:
 59            _configuration = Configuration()
 60        self._configuration = _configuration
 61
 62        self._annotations = None
 63        self._custom = None
 64        self._merge = None
 65        self._notary = None
 66        self._seals = None
 67        self._smart_contracts = None
 68        self._smart_sections = None
 69        self.discriminator = None
 70
 71        setattr(self, "_{}".format('annotations'), kwargs.get('annotations', None))
 72        setattr(self, "_{}".format('custom'), kwargs.get('custom', None))
 73        setattr(self, "_{}".format('merge'), kwargs.get('merge', None))
 74        setattr(self, "_{}".format('notary'), kwargs.get('notary', None))
 75        setattr(self, "_{}".format('seals'), kwargs.get('seals', None))
 76        setattr(self, "_{}".format('smart_contracts'), kwargs.get('smart_contracts', None))
 77        setattr(self, "_{}".format('smart_sections'), kwargs.get('smart_sections', None))
 78
 79    @property
 80    def annotations(self):
 81        """Gets the annotations of this PaletteSettings.  # noqa: E501
 82
 83          # noqa: E501
 84
 85        :return: The annotations of this PaletteSettings.  # noqa: E501
 86        :rtype: PaletteItemSettings
 87        """
 88        return self._annotations
 89
 90    @annotations.setter
 91    def annotations(self, annotations):
 92        """Sets the annotations of this PaletteSettings.
 93
 94          # noqa: E501
 95
 96        :param annotations: The annotations of this PaletteSettings.  # noqa: E501
 97        :type: PaletteItemSettings
 98        """
 99
100        self._annotations = annotations
101
102    @property
103    def custom(self):
104        """Gets the custom of this PaletteSettings.  # noqa: E501
105
106          # noqa: E501
107
108        :return: The custom of this PaletteSettings.  # noqa: E501
109        :rtype: PaletteItemSettings
110        """
111        return self._custom
112
113    @custom.setter
114    def custom(self, custom):
115        """Sets the custom of this PaletteSettings.
116
117          # noqa: E501
118
119        :param custom: The custom of this PaletteSettings.  # noqa: E501
120        :type: PaletteItemSettings
121        """
122
123        self._custom = custom
124
125    @property
126    def merge(self):
127        """Gets the merge of this PaletteSettings.  # noqa: E501
128
129          # noqa: E501
130
131        :return: The merge of this PaletteSettings.  # noqa: E501
132        :rtype: PaletteItemSettings
133        """
134        return self._merge
135
136    @merge.setter
137    def merge(self, merge):
138        """Sets the merge of this PaletteSettings.
139
140          # noqa: E501
141
142        :param merge: The merge of this PaletteSettings.  # noqa: E501
143        :type: PaletteItemSettings
144        """
145
146        self._merge = merge
147
148    @property
149    def notary(self):
150        """Gets the notary of this PaletteSettings.  # noqa: E501
151
152          # noqa: E501
153
154        :return: The notary of this PaletteSettings.  # noqa: E501
155        :rtype: PaletteItemSettings
156        """
157        return self._notary
158
159    @notary.setter
160    def notary(self, notary):
161        """Sets the notary of this PaletteSettings.
162
163          # noqa: E501
164
165        :param notary: The notary of this PaletteSettings.  # noqa: E501
166        :type: PaletteItemSettings
167        """
168
169        self._notary = notary
170
171    @property
172    def seals(self):
173        """Gets the seals of this PaletteSettings.  # noqa: E501
174
175          # noqa: E501
176
177        :return: The seals of this PaletteSettings.  # noqa: E501
178        :rtype: PaletteItemSettings
179        """
180        return self._seals
181
182    @seals.setter
183    def seals(self, seals):
184        """Sets the seals of this PaletteSettings.
185
186          # noqa: E501
187
188        :param seals: The seals of this PaletteSettings.  # noqa: E501
189        :type: PaletteItemSettings
190        """
191
192        self._seals = seals
193
194    @property
195    def smart_contracts(self):
196        """Gets the smart_contracts of this PaletteSettings.  # noqa: E501
197
198          # noqa: E501
199
200        :return: The smart_contracts of this PaletteSettings.  # noqa: E501
201        :rtype: PaletteItemSettings
202        """
203        return self._smart_contracts
204
205    @smart_contracts.setter
206    def smart_contracts(self, smart_contracts):
207        """Sets the smart_contracts of this PaletteSettings.
208
209          # noqa: E501
210
211        :param smart_contracts: The smart_contracts of this PaletteSettings.  # noqa: E501
212        :type: PaletteItemSettings
213        """
214
215        self._smart_contracts = smart_contracts
216
217    @property
218    def smart_sections(self):
219        """Gets the smart_sections of this PaletteSettings.  # noqa: E501
220
221          # noqa: E501
222
223        :return: The smart_sections of this PaletteSettings.  # noqa: E501
224        :rtype: PaletteItemSettings
225        """
226        return self._smart_sections
227
228    @smart_sections.setter
229    def smart_sections(self, smart_sections):
230        """Sets the smart_sections of this PaletteSettings.
231
232          # noqa: E501
233
234        :param smart_sections: The smart_sections of this PaletteSettings.  # noqa: E501
235        :type: PaletteItemSettings
236        """
237
238        self._smart_sections = smart_sections
239
240    def to_dict(self):
241        """Returns the model properties as a dict"""
242        result = {}
243
244        for attr, _ in six.iteritems(self.swagger_types):
245            value = getattr(self, attr)
246            if isinstance(value, list):
247                result[attr] = list(map(
248                    lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
249                    value
250                ))
251            elif hasattr(value, "to_dict"):
252                result[attr] = value.to_dict()
253            elif isinstance(value, dict):
254                result[attr] = dict(map(
255                    lambda item: (item[0], item[1].to_dict())
256                    if hasattr(item[1], "to_dict") else item,
257                    value.items()
258                ))
259            else:
260                result[attr] = value
261        if issubclass(PaletteSettings, dict):
262            for key, value in self.items():
263                result[key] = value
264
265        return result
266
267    def to_str(self):
268        """Returns the string representation of the model"""
269        return pprint.pformat(self.to_dict())
270
271    def __repr__(self):
272        """For `print` and `pprint`"""
273        return self.to_str()
274
275    def __eq__(self, other):
276        """Returns true if both objects are equal"""
277        if not isinstance(other, PaletteSettings):
278            return False
279
280        return self.to_dict() == other.to_dict()
281
282    def __ne__(self, other):
283        """Returns true if both objects are not equal"""
284        if not isinstance(other, PaletteSettings):
285            return True
286
287        return self.to_dict() != other.to_dict()

NOTE: This class is auto generated by the swagger code generator program.

Do not edit the class manually.

PaletteSettings(_configuration=None, **kwargs)
56    def __init__(self, _configuration=None, **kwargs):  # noqa: E501
57        """PaletteSettings - a model defined in Swagger"""  # noqa: E501
58        if _configuration is None:
59            _configuration = Configuration()
60        self._configuration = _configuration
61
62        self._annotations = None
63        self._custom = None
64        self._merge = None
65        self._notary = None
66        self._seals = None
67        self._smart_contracts = None
68        self._smart_sections = None
69        self.discriminator = None
70
71        setattr(self, "_{}".format('annotations'), kwargs.get('annotations', None))
72        setattr(self, "_{}".format('custom'), kwargs.get('custom', None))
73        setattr(self, "_{}".format('merge'), kwargs.get('merge', None))
74        setattr(self, "_{}".format('notary'), kwargs.get('notary', None))
75        setattr(self, "_{}".format('seals'), kwargs.get('seals', None))
76        setattr(self, "_{}".format('smart_contracts'), kwargs.get('smart_contracts', None))
77        setattr(self, "_{}".format('smart_sections'), kwargs.get('smart_sections', None))

PaletteSettings - a model defined in Swagger

swagger_types = {'annotations': 'PaletteItemSettings', 'custom': 'PaletteItemSettings', 'merge': 'PaletteItemSettings', 'notary': 'PaletteItemSettings', 'seals': 'PaletteItemSettings', 'smart_contracts': 'PaletteItemSettings', 'smart_sections': 'PaletteItemSettings'}
attribute_map = {'annotations': 'annotations', 'custom': 'custom', 'merge': 'merge', 'notary': 'notary', 'seals': 'seals', 'smart_contracts': 'smartContracts', 'smart_sections': 'smartSections'}
annotations

Gets the annotations of this PaletteSettings. # noqa: E501

# noqa: E501

Returns

The annotations of this PaletteSettings. # noqa: E501

custom

Gets the custom of this PaletteSettings. # noqa: E501

# noqa: E501

Returns

The custom of this PaletteSettings. # noqa: E501

merge

Gets the merge of this PaletteSettings. # noqa: E501

# noqa: E501

Returns

The merge of this PaletteSettings. # noqa: E501

notary

Gets the notary of this PaletteSettings. # noqa: E501

# noqa: E501

Returns

The notary of this PaletteSettings. # noqa: E501

seals

Gets the seals of this PaletteSettings. # noqa: E501

# noqa: E501

Returns

The seals of this PaletteSettings. # noqa: E501

smart_contracts

Gets the smart_contracts of this PaletteSettings. # noqa: E501

# noqa: E501

Returns

The smart_contracts of this PaletteSettings. # noqa: E501

smart_sections

Gets the smart_sections of this PaletteSettings. # noqa: E501

# noqa: E501

Returns

The smart_sections of this PaletteSettings. # noqa: E501

def to_dict(self)
240    def to_dict(self):
241        """Returns the model properties as a dict"""
242        result = {}
243
244        for attr, _ in six.iteritems(self.swagger_types):
245            value = getattr(self, attr)
246            if isinstance(value, list):
247                result[attr] = list(map(
248                    lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
249                    value
250                ))
251            elif hasattr(value, "to_dict"):
252                result[attr] = value.to_dict()
253            elif isinstance(value, dict):
254                result[attr] = dict(map(
255                    lambda item: (item[0], item[1].to_dict())
256                    if hasattr(item[1], "to_dict") else item,
257                    value.items()
258                ))
259            else:
260                result[attr] = value
261        if issubclass(PaletteSettings, dict):
262            for key, value in self.items():
263                result[key] = value
264
265        return result

Returns the model properties as a dict

def to_str(self)
267    def to_str(self):
268        """Returns the string representation of the model"""
269        return pprint.pformat(self.to_dict())

Returns the string representation of the model