docusign_esign.models.envelope_update_summary

DocuSign REST API

The DocuSign 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 REST API
  5
  6    The DocuSign 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 EnvelopeUpdateSummary(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        'bulk_envelope_status': 'BulkEnvelopeStatus',
 37        'envelope_id': 'str',
 38        'error_details': 'ErrorDetails',
 39        'list_custom_field_update_results': 'list[ListCustomField]',
 40        'lock_information': 'LockInformation',
 41        'purge_state': 'str',
 42        'recipient_update_results': 'list[RecipientUpdateResponse]',
 43        'tab_update_results': 'Tabs',
 44        'text_custom_field_update_results': 'list[TextCustomField]'
 45    }
 46
 47    attribute_map = {
 48        'bulk_envelope_status': 'bulkEnvelopeStatus',
 49        'envelope_id': 'envelopeId',
 50        'error_details': 'errorDetails',
 51        'list_custom_field_update_results': 'listCustomFieldUpdateResults',
 52        'lock_information': 'lockInformation',
 53        'purge_state': 'purgeState',
 54        'recipient_update_results': 'recipientUpdateResults',
 55        'tab_update_results': 'tabUpdateResults',
 56        'text_custom_field_update_results': 'textCustomFieldUpdateResults'
 57    }
 58
 59    def __init__(self, _configuration=None, **kwargs):  # noqa: E501
 60        """EnvelopeUpdateSummary - a model defined in Swagger"""  # noqa: E501
 61        if _configuration is None:
 62            _configuration = Configuration()
 63        self._configuration = _configuration
 64
 65        self._bulk_envelope_status = None
 66        self._envelope_id = None
 67        self._error_details = None
 68        self._list_custom_field_update_results = None
 69        self._lock_information = None
 70        self._purge_state = None
 71        self._recipient_update_results = None
 72        self._tab_update_results = None
 73        self._text_custom_field_update_results = None
 74        self.discriminator = None
 75
 76        setattr(self, "_{}".format('bulk_envelope_status'), kwargs.get('bulk_envelope_status', None))
 77        setattr(self, "_{}".format('envelope_id'), kwargs.get('envelope_id', None))
 78        setattr(self, "_{}".format('error_details'), kwargs.get('error_details', None))
 79        setattr(self, "_{}".format('list_custom_field_update_results'), kwargs.get('list_custom_field_update_results', None))
 80        setattr(self, "_{}".format('lock_information'), kwargs.get('lock_information', None))
 81        setattr(self, "_{}".format('purge_state'), kwargs.get('purge_state', None))
 82        setattr(self, "_{}".format('recipient_update_results'), kwargs.get('recipient_update_results', None))
 83        setattr(self, "_{}".format('tab_update_results'), kwargs.get('tab_update_results', None))
 84        setattr(self, "_{}".format('text_custom_field_update_results'), kwargs.get('text_custom_field_update_results', None))
 85
 86    @property
 87    def bulk_envelope_status(self):
 88        """Gets the bulk_envelope_status of this EnvelopeUpdateSummary.  # noqa: E501
 89
 90        An object that describes the status of the bulk send envelopes.  # noqa: E501
 91
 92        :return: The bulk_envelope_status of this EnvelopeUpdateSummary.  # noqa: E501
 93        :rtype: BulkEnvelopeStatus
 94        """
 95        return self._bulk_envelope_status
 96
 97    @bulk_envelope_status.setter
 98    def bulk_envelope_status(self, bulk_envelope_status):
 99        """Sets the bulk_envelope_status of this EnvelopeUpdateSummary.
100
101        An object that describes the status of the bulk send envelopes.  # noqa: E501
102
103        :param bulk_envelope_status: The bulk_envelope_status of this EnvelopeUpdateSummary.  # noqa: E501
104        :type: BulkEnvelopeStatus
105        """
106
107        self._bulk_envelope_status = bulk_envelope_status
108
109    @property
110    def envelope_id(self):
111        """Gets the envelope_id of this EnvelopeUpdateSummary.  # noqa: E501
112
113        The envelope ID of the envelope status that failed to post.  # noqa: E501
114
115        :return: The envelope_id of this EnvelopeUpdateSummary.  # noqa: E501
116        :rtype: str
117        """
118        return self._envelope_id
119
120    @envelope_id.setter
121    def envelope_id(self, envelope_id):
122        """Sets the envelope_id of this EnvelopeUpdateSummary.
123
124        The envelope ID of the envelope status that failed to post.  # noqa: E501
125
126        :param envelope_id: The envelope_id of this EnvelopeUpdateSummary.  # noqa: E501
127        :type: str
128        """
129
130        self._envelope_id = envelope_id
131
132    @property
133    def error_details(self):
134        """Gets the error_details of this EnvelopeUpdateSummary.  # noqa: E501
135
136        Array or errors.  # noqa: E501
137
138        :return: The error_details of this EnvelopeUpdateSummary.  # noqa: E501
139        :rtype: ErrorDetails
140        """
141        return self._error_details
142
143    @error_details.setter
144    def error_details(self, error_details):
145        """Sets the error_details of this EnvelopeUpdateSummary.
146
147        Array or errors.  # noqa: E501
148
149        :param error_details: The error_details of this EnvelopeUpdateSummary.  # noqa: E501
150        :type: ErrorDetails
151        """
152
153        self._error_details = error_details
154
155    @property
156    def list_custom_field_update_results(self):
157        """Gets the list_custom_field_update_results of this EnvelopeUpdateSummary.  # noqa: E501
158
159          # noqa: E501
160
161        :return: The list_custom_field_update_results of this EnvelopeUpdateSummary.  # noqa: E501
162        :rtype: list[ListCustomField]
163        """
164        return self._list_custom_field_update_results
165
166    @list_custom_field_update_results.setter
167    def list_custom_field_update_results(self, list_custom_field_update_results):
168        """Sets the list_custom_field_update_results of this EnvelopeUpdateSummary.
169
170          # noqa: E501
171
172        :param list_custom_field_update_results: The list_custom_field_update_results of this EnvelopeUpdateSummary.  # noqa: E501
173        :type: list[ListCustomField]
174        """
175
176        self._list_custom_field_update_results = list_custom_field_update_results
177
178    @property
179    def lock_information(self):
180        """Gets the lock_information of this EnvelopeUpdateSummary.  # noqa: E501
181
182        Provides lock information about an envelope that a user has locked.  # noqa: E501
183
184        :return: The lock_information of this EnvelopeUpdateSummary.  # noqa: E501
185        :rtype: LockInformation
186        """
187        return self._lock_information
188
189    @lock_information.setter
190    def lock_information(self, lock_information):
191        """Sets the lock_information of this EnvelopeUpdateSummary.
192
193        Provides lock information about an envelope that a user has locked.  # noqa: E501
194
195        :param lock_information: The lock_information of this EnvelopeUpdateSummary.  # noqa: E501
196        :type: LockInformation
197        """
198
199        self._lock_information = lock_information
200
201    @property
202    def purge_state(self):
203        """Gets the purge_state of this EnvelopeUpdateSummary.  # noqa: E501
204
205          # noqa: E501
206
207        :return: The purge_state of this EnvelopeUpdateSummary.  # noqa: E501
208        :rtype: str
209        """
210        return self._purge_state
211
212    @purge_state.setter
213    def purge_state(self, purge_state):
214        """Sets the purge_state of this EnvelopeUpdateSummary.
215
216          # noqa: E501
217
218        :param purge_state: The purge_state of this EnvelopeUpdateSummary.  # noqa: E501
219        :type: str
220        """
221
222        self._purge_state = purge_state
223
224    @property
225    def recipient_update_results(self):
226        """Gets the recipient_update_results of this EnvelopeUpdateSummary.  # noqa: E501
227
228          # noqa: E501
229
230        :return: The recipient_update_results of this EnvelopeUpdateSummary.  # noqa: E501
231        :rtype: list[RecipientUpdateResponse]
232        """
233        return self._recipient_update_results
234
235    @recipient_update_results.setter
236    def recipient_update_results(self, recipient_update_results):
237        """Sets the recipient_update_results of this EnvelopeUpdateSummary.
238
239          # noqa: E501
240
241        :param recipient_update_results: The recipient_update_results of this EnvelopeUpdateSummary.  # noqa: E501
242        :type: list[RecipientUpdateResponse]
243        """
244
245        self._recipient_update_results = recipient_update_results
246
247    @property
248    def tab_update_results(self):
249        """Gets the tab_update_results of this EnvelopeUpdateSummary.  # noqa: E501
250
251          # noqa: E501
252
253        :return: The tab_update_results of this EnvelopeUpdateSummary.  # noqa: E501
254        :rtype: Tabs
255        """
256        return self._tab_update_results
257
258    @tab_update_results.setter
259    def tab_update_results(self, tab_update_results):
260        """Sets the tab_update_results of this EnvelopeUpdateSummary.
261
262          # noqa: E501
263
264        :param tab_update_results: The tab_update_results of this EnvelopeUpdateSummary.  # noqa: E501
265        :type: Tabs
266        """
267
268        self._tab_update_results = tab_update_results
269
270    @property
271    def text_custom_field_update_results(self):
272        """Gets the text_custom_field_update_results of this EnvelopeUpdateSummary.  # noqa: E501
273
274          # noqa: E501
275
276        :return: The text_custom_field_update_results of this EnvelopeUpdateSummary.  # noqa: E501
277        :rtype: list[TextCustomField]
278        """
279        return self._text_custom_field_update_results
280
281    @text_custom_field_update_results.setter
282    def text_custom_field_update_results(self, text_custom_field_update_results):
283        """Sets the text_custom_field_update_results of this EnvelopeUpdateSummary.
284
285          # noqa: E501
286
287        :param text_custom_field_update_results: The text_custom_field_update_results of this EnvelopeUpdateSummary.  # noqa: E501
288        :type: list[TextCustomField]
289        """
290
291        self._text_custom_field_update_results = text_custom_field_update_results
292
293    def to_dict(self):
294        """Returns the model properties as a dict"""
295        result = {}
296
297        for attr, _ in six.iteritems(self.swagger_types):
298            value = getattr(self, attr)
299            if isinstance(value, list):
300                result[attr] = list(map(
301                    lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
302                    value
303                ))
304            elif hasattr(value, "to_dict"):
305                result[attr] = value.to_dict()
306            elif isinstance(value, dict):
307                result[attr] = dict(map(
308                    lambda item: (item[0], item[1].to_dict())
309                    if hasattr(item[1], "to_dict") else item,
310                    value.items()
311                ))
312            else:
313                result[attr] = value
314        if issubclass(EnvelopeUpdateSummary, dict):
315            for key, value in self.items():
316                result[key] = value
317
318        return result
319
320    def to_str(self):
321        """Returns the string representation of the model"""
322        return pprint.pformat(self.to_dict())
323
324    def __repr__(self):
325        """For `print` and `pprint`"""
326        return self.to_str()
327
328    def __eq__(self, other):
329        """Returns true if both objects are equal"""
330        if not isinstance(other, EnvelopeUpdateSummary):
331            return False
332
333        return self.to_dict() == other.to_dict()
334
335    def __ne__(self, other):
336        """Returns true if both objects are not equal"""
337        if not isinstance(other, EnvelopeUpdateSummary):
338            return True
339
340        return self.to_dict() != other.to_dict()
class EnvelopeUpdateSummary:
 23class EnvelopeUpdateSummary(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        'bulk_envelope_status': 'BulkEnvelopeStatus',
 38        'envelope_id': 'str',
 39        'error_details': 'ErrorDetails',
 40        'list_custom_field_update_results': 'list[ListCustomField]',
 41        'lock_information': 'LockInformation',
 42        'purge_state': 'str',
 43        'recipient_update_results': 'list[RecipientUpdateResponse]',
 44        'tab_update_results': 'Tabs',
 45        'text_custom_field_update_results': 'list[TextCustomField]'
 46    }
 47
 48    attribute_map = {
 49        'bulk_envelope_status': 'bulkEnvelopeStatus',
 50        'envelope_id': 'envelopeId',
 51        'error_details': 'errorDetails',
 52        'list_custom_field_update_results': 'listCustomFieldUpdateResults',
 53        'lock_information': 'lockInformation',
 54        'purge_state': 'purgeState',
 55        'recipient_update_results': 'recipientUpdateResults',
 56        'tab_update_results': 'tabUpdateResults',
 57        'text_custom_field_update_results': 'textCustomFieldUpdateResults'
 58    }
 59
 60    def __init__(self, _configuration=None, **kwargs):  # noqa: E501
 61        """EnvelopeUpdateSummary - a model defined in Swagger"""  # noqa: E501
 62        if _configuration is None:
 63            _configuration = Configuration()
 64        self._configuration = _configuration
 65
 66        self._bulk_envelope_status = None
 67        self._envelope_id = None
 68        self._error_details = None
 69        self._list_custom_field_update_results = None
 70        self._lock_information = None
 71        self._purge_state = None
 72        self._recipient_update_results = None
 73        self._tab_update_results = None
 74        self._text_custom_field_update_results = None
 75        self.discriminator = None
 76
 77        setattr(self, "_{}".format('bulk_envelope_status'), kwargs.get('bulk_envelope_status', None))
 78        setattr(self, "_{}".format('envelope_id'), kwargs.get('envelope_id', None))
 79        setattr(self, "_{}".format('error_details'), kwargs.get('error_details', None))
 80        setattr(self, "_{}".format('list_custom_field_update_results'), kwargs.get('list_custom_field_update_results', None))
 81        setattr(self, "_{}".format('lock_information'), kwargs.get('lock_information', None))
 82        setattr(self, "_{}".format('purge_state'), kwargs.get('purge_state', None))
 83        setattr(self, "_{}".format('recipient_update_results'), kwargs.get('recipient_update_results', None))
 84        setattr(self, "_{}".format('tab_update_results'), kwargs.get('tab_update_results', None))
 85        setattr(self, "_{}".format('text_custom_field_update_results'), kwargs.get('text_custom_field_update_results', None))
 86
 87    @property
 88    def bulk_envelope_status(self):
 89        """Gets the bulk_envelope_status of this EnvelopeUpdateSummary.  # noqa: E501
 90
 91        An object that describes the status of the bulk send envelopes.  # noqa: E501
 92
 93        :return: The bulk_envelope_status of this EnvelopeUpdateSummary.  # noqa: E501
 94        :rtype: BulkEnvelopeStatus
 95        """
 96        return self._bulk_envelope_status
 97
 98    @bulk_envelope_status.setter
 99    def bulk_envelope_status(self, bulk_envelope_status):
100        """Sets the bulk_envelope_status of this EnvelopeUpdateSummary.
101
102        An object that describes the status of the bulk send envelopes.  # noqa: E501
103
104        :param bulk_envelope_status: The bulk_envelope_status of this EnvelopeUpdateSummary.  # noqa: E501
105        :type: BulkEnvelopeStatus
106        """
107
108        self._bulk_envelope_status = bulk_envelope_status
109
110    @property
111    def envelope_id(self):
112        """Gets the envelope_id of this EnvelopeUpdateSummary.  # noqa: E501
113
114        The envelope ID of the envelope status that failed to post.  # noqa: E501
115
116        :return: The envelope_id of this EnvelopeUpdateSummary.  # noqa: E501
117        :rtype: str
118        """
119        return self._envelope_id
120
121    @envelope_id.setter
122    def envelope_id(self, envelope_id):
123        """Sets the envelope_id of this EnvelopeUpdateSummary.
124
125        The envelope ID of the envelope status that failed to post.  # noqa: E501
126
127        :param envelope_id: The envelope_id of this EnvelopeUpdateSummary.  # noqa: E501
128        :type: str
129        """
130
131        self._envelope_id = envelope_id
132
133    @property
134    def error_details(self):
135        """Gets the error_details of this EnvelopeUpdateSummary.  # noqa: E501
136
137        Array or errors.  # noqa: E501
138
139        :return: The error_details of this EnvelopeUpdateSummary.  # noqa: E501
140        :rtype: ErrorDetails
141        """
142        return self._error_details
143
144    @error_details.setter
145    def error_details(self, error_details):
146        """Sets the error_details of this EnvelopeUpdateSummary.
147
148        Array or errors.  # noqa: E501
149
150        :param error_details: The error_details of this EnvelopeUpdateSummary.  # noqa: E501
151        :type: ErrorDetails
152        """
153
154        self._error_details = error_details
155
156    @property
157    def list_custom_field_update_results(self):
158        """Gets the list_custom_field_update_results of this EnvelopeUpdateSummary.  # noqa: E501
159
160          # noqa: E501
161
162        :return: The list_custom_field_update_results of this EnvelopeUpdateSummary.  # noqa: E501
163        :rtype: list[ListCustomField]
164        """
165        return self._list_custom_field_update_results
166
167    @list_custom_field_update_results.setter
168    def list_custom_field_update_results(self, list_custom_field_update_results):
169        """Sets the list_custom_field_update_results of this EnvelopeUpdateSummary.
170
171          # noqa: E501
172
173        :param list_custom_field_update_results: The list_custom_field_update_results of this EnvelopeUpdateSummary.  # noqa: E501
174        :type: list[ListCustomField]
175        """
176
177        self._list_custom_field_update_results = list_custom_field_update_results
178
179    @property
180    def lock_information(self):
181        """Gets the lock_information of this EnvelopeUpdateSummary.  # noqa: E501
182
183        Provides lock information about an envelope that a user has locked.  # noqa: E501
184
185        :return: The lock_information of this EnvelopeUpdateSummary.  # noqa: E501
186        :rtype: LockInformation
187        """
188        return self._lock_information
189
190    @lock_information.setter
191    def lock_information(self, lock_information):
192        """Sets the lock_information of this EnvelopeUpdateSummary.
193
194        Provides lock information about an envelope that a user has locked.  # noqa: E501
195
196        :param lock_information: The lock_information of this EnvelopeUpdateSummary.  # noqa: E501
197        :type: LockInformation
198        """
199
200        self._lock_information = lock_information
201
202    @property
203    def purge_state(self):
204        """Gets the purge_state of this EnvelopeUpdateSummary.  # noqa: E501
205
206          # noqa: E501
207
208        :return: The purge_state of this EnvelopeUpdateSummary.  # noqa: E501
209        :rtype: str
210        """
211        return self._purge_state
212
213    @purge_state.setter
214    def purge_state(self, purge_state):
215        """Sets the purge_state of this EnvelopeUpdateSummary.
216
217          # noqa: E501
218
219        :param purge_state: The purge_state of this EnvelopeUpdateSummary.  # noqa: E501
220        :type: str
221        """
222
223        self._purge_state = purge_state
224
225    @property
226    def recipient_update_results(self):
227        """Gets the recipient_update_results of this EnvelopeUpdateSummary.  # noqa: E501
228
229          # noqa: E501
230
231        :return: The recipient_update_results of this EnvelopeUpdateSummary.  # noqa: E501
232        :rtype: list[RecipientUpdateResponse]
233        """
234        return self._recipient_update_results
235
236    @recipient_update_results.setter
237    def recipient_update_results(self, recipient_update_results):
238        """Sets the recipient_update_results of this EnvelopeUpdateSummary.
239
240          # noqa: E501
241
242        :param recipient_update_results: The recipient_update_results of this EnvelopeUpdateSummary.  # noqa: E501
243        :type: list[RecipientUpdateResponse]
244        """
245
246        self._recipient_update_results = recipient_update_results
247
248    @property
249    def tab_update_results(self):
250        """Gets the tab_update_results of this EnvelopeUpdateSummary.  # noqa: E501
251
252          # noqa: E501
253
254        :return: The tab_update_results of this EnvelopeUpdateSummary.  # noqa: E501
255        :rtype: Tabs
256        """
257        return self._tab_update_results
258
259    @tab_update_results.setter
260    def tab_update_results(self, tab_update_results):
261        """Sets the tab_update_results of this EnvelopeUpdateSummary.
262
263          # noqa: E501
264
265        :param tab_update_results: The tab_update_results of this EnvelopeUpdateSummary.  # noqa: E501
266        :type: Tabs
267        """
268
269        self._tab_update_results = tab_update_results
270
271    @property
272    def text_custom_field_update_results(self):
273        """Gets the text_custom_field_update_results of this EnvelopeUpdateSummary.  # noqa: E501
274
275          # noqa: E501
276
277        :return: The text_custom_field_update_results of this EnvelopeUpdateSummary.  # noqa: E501
278        :rtype: list[TextCustomField]
279        """
280        return self._text_custom_field_update_results
281
282    @text_custom_field_update_results.setter
283    def text_custom_field_update_results(self, text_custom_field_update_results):
284        """Sets the text_custom_field_update_results of this EnvelopeUpdateSummary.
285
286          # noqa: E501
287
288        :param text_custom_field_update_results: The text_custom_field_update_results of this EnvelopeUpdateSummary.  # noqa: E501
289        :type: list[TextCustomField]
290        """
291
292        self._text_custom_field_update_results = text_custom_field_update_results
293
294    def to_dict(self):
295        """Returns the model properties as a dict"""
296        result = {}
297
298        for attr, _ in six.iteritems(self.swagger_types):
299            value = getattr(self, attr)
300            if isinstance(value, list):
301                result[attr] = list(map(
302                    lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
303                    value
304                ))
305            elif hasattr(value, "to_dict"):
306                result[attr] = value.to_dict()
307            elif isinstance(value, dict):
308                result[attr] = dict(map(
309                    lambda item: (item[0], item[1].to_dict())
310                    if hasattr(item[1], "to_dict") else item,
311                    value.items()
312                ))
313            else:
314                result[attr] = value
315        if issubclass(EnvelopeUpdateSummary, dict):
316            for key, value in self.items():
317                result[key] = value
318
319        return result
320
321    def to_str(self):
322        """Returns the string representation of the model"""
323        return pprint.pformat(self.to_dict())
324
325    def __repr__(self):
326        """For `print` and `pprint`"""
327        return self.to_str()
328
329    def __eq__(self, other):
330        """Returns true if both objects are equal"""
331        if not isinstance(other, EnvelopeUpdateSummary):
332            return False
333
334        return self.to_dict() == other.to_dict()
335
336    def __ne__(self, other):
337        """Returns true if both objects are not equal"""
338        if not isinstance(other, EnvelopeUpdateSummary):
339            return True
340
341        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.

EnvelopeUpdateSummary(_configuration=None, **kwargs)
60    def __init__(self, _configuration=None, **kwargs):  # noqa: E501
61        """EnvelopeUpdateSummary - a model defined in Swagger"""  # noqa: E501
62        if _configuration is None:
63            _configuration = Configuration()
64        self._configuration = _configuration
65
66        self._bulk_envelope_status = None
67        self._envelope_id = None
68        self._error_details = None
69        self._list_custom_field_update_results = None
70        self._lock_information = None
71        self._purge_state = None
72        self._recipient_update_results = None
73        self._tab_update_results = None
74        self._text_custom_field_update_results = None
75        self.discriminator = None
76
77        setattr(self, "_{}".format('bulk_envelope_status'), kwargs.get('bulk_envelope_status', None))
78        setattr(self, "_{}".format('envelope_id'), kwargs.get('envelope_id', None))
79        setattr(self, "_{}".format('error_details'), kwargs.get('error_details', None))
80        setattr(self, "_{}".format('list_custom_field_update_results'), kwargs.get('list_custom_field_update_results', None))
81        setattr(self, "_{}".format('lock_information'), kwargs.get('lock_information', None))
82        setattr(self, "_{}".format('purge_state'), kwargs.get('purge_state', None))
83        setattr(self, "_{}".format('recipient_update_results'), kwargs.get('recipient_update_results', None))
84        setattr(self, "_{}".format('tab_update_results'), kwargs.get('tab_update_results', None))
85        setattr(self, "_{}".format('text_custom_field_update_results'), kwargs.get('text_custom_field_update_results', None))

EnvelopeUpdateSummary - a model defined in Swagger

swagger_types = {'bulk_envelope_status': 'BulkEnvelopeStatus', 'envelope_id': 'str', 'error_details': 'ErrorDetails', 'list_custom_field_update_results': 'list[ListCustomField]', 'lock_information': 'LockInformation', 'purge_state': 'str', 'recipient_update_results': 'list[RecipientUpdateResponse]', 'tab_update_results': 'Tabs', 'text_custom_field_update_results': 'list[TextCustomField]'}
attribute_map = {'bulk_envelope_status': 'bulkEnvelopeStatus', 'envelope_id': 'envelopeId', 'error_details': 'errorDetails', 'list_custom_field_update_results': 'listCustomFieldUpdateResults', 'lock_information': 'lockInformation', 'purge_state': 'purgeState', 'recipient_update_results': 'recipientUpdateResults', 'tab_update_results': 'tabUpdateResults', 'text_custom_field_update_results': 'textCustomFieldUpdateResults'}
bulk_envelope_status

Gets the bulk_envelope_status of this EnvelopeUpdateSummary. # noqa: E501

An object that describes the status of the bulk send envelopes. # noqa: E501

Returns

The bulk_envelope_status of this EnvelopeUpdateSummary. # noqa: E501

envelope_id

Gets the envelope_id of this EnvelopeUpdateSummary. # noqa: E501

The envelope ID of the envelope status that failed to post. # noqa: E501

Returns

The envelope_id of this EnvelopeUpdateSummary. # noqa: E501

error_details

Gets the error_details of this EnvelopeUpdateSummary. # noqa: E501

Array or errors. # noqa: E501

Returns

The error_details of this EnvelopeUpdateSummary. # noqa: E501

list_custom_field_update_results

Gets the list_custom_field_update_results of this EnvelopeUpdateSummary. # noqa: E501

# noqa: E501

Returns

The list_custom_field_update_results of this EnvelopeUpdateSummary. # noqa: E501

lock_information

Gets the lock_information of this EnvelopeUpdateSummary. # noqa: E501

Provides lock information about an envelope that a user has locked. # noqa: E501

Returns

The lock_information of this EnvelopeUpdateSummary. # noqa: E501

purge_state

Gets the purge_state of this EnvelopeUpdateSummary. # noqa: E501

# noqa: E501

Returns

The purge_state of this EnvelopeUpdateSummary. # noqa: E501

recipient_update_results

Gets the recipient_update_results of this EnvelopeUpdateSummary. # noqa: E501

# noqa: E501

Returns

The recipient_update_results of this EnvelopeUpdateSummary. # noqa: E501

tab_update_results

Gets the tab_update_results of this EnvelopeUpdateSummary. # noqa: E501

# noqa: E501

Returns

The tab_update_results of this EnvelopeUpdateSummary. # noqa: E501

text_custom_field_update_results

Gets the text_custom_field_update_results of this EnvelopeUpdateSummary. # noqa: E501

# noqa: E501

Returns

The text_custom_field_update_results of this EnvelopeUpdateSummary. # noqa: E501

def to_dict(self)
294    def to_dict(self):
295        """Returns the model properties as a dict"""
296        result = {}
297
298        for attr, _ in six.iteritems(self.swagger_types):
299            value = getattr(self, attr)
300            if isinstance(value, list):
301                result[attr] = list(map(
302                    lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
303                    value
304                ))
305            elif hasattr(value, "to_dict"):
306                result[attr] = value.to_dict()
307            elif isinstance(value, dict):
308                result[attr] = dict(map(
309                    lambda item: (item[0], item[1].to_dict())
310                    if hasattr(item[1], "to_dict") else item,
311                    value.items()
312                ))
313            else:
314                result[attr] = value
315        if issubclass(EnvelopeUpdateSummary, dict):
316            for key, value in self.items():
317                result[key] = value
318
319        return result

Returns the model properties as a dict

def to_str(self)
321    def to_str(self):
322        """Returns the string representation of the model"""
323        return pprint.pformat(self.to_dict())

Returns the string representation of the model