docusign_esign.models.bcc_email_archive

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 BccEmailArchive(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        'account_id': 'str',
 37        'bcc_email_archive_id': 'str',
 38        'created': 'str',
 39        'created_by': 'UserInfo',
 40        'email': 'str',
 41        'email_notification_id': 'str',
 42        'modified': 'str',
 43        'modified_by': 'UserInfo',
 44        'status': 'str',
 45        'uri': 'str'
 46    }
 47
 48    attribute_map = {
 49        'account_id': 'accountId',
 50        'bcc_email_archive_id': 'bccEmailArchiveId',
 51        'created': 'created',
 52        'created_by': 'createdBy',
 53        'email': 'email',
 54        'email_notification_id': 'emailNotificationId',
 55        'modified': 'modified',
 56        'modified_by': 'modifiedBy',
 57        'status': 'status',
 58        'uri': 'uri'
 59    }
 60
 61    def __init__(self, _configuration=None, **kwargs):  # noqa: E501
 62        """BccEmailArchive - a model defined in Swagger"""  # noqa: E501
 63        if _configuration is None:
 64            _configuration = Configuration()
 65        self._configuration = _configuration
 66
 67        self._account_id = None
 68        self._bcc_email_archive_id = None
 69        self._created = None
 70        self._created_by = None
 71        self._email = None
 72        self._email_notification_id = None
 73        self._modified = None
 74        self._modified_by = None
 75        self._status = None
 76        self._uri = None
 77        self.discriminator = None
 78
 79        setattr(self, "_{}".format('account_id'), kwargs.get('account_id', None))
 80        setattr(self, "_{}".format('bcc_email_archive_id'), kwargs.get('bcc_email_archive_id', None))
 81        setattr(self, "_{}".format('created'), kwargs.get('created', None))
 82        setattr(self, "_{}".format('created_by'), kwargs.get('created_by', None))
 83        setattr(self, "_{}".format('email'), kwargs.get('email', None))
 84        setattr(self, "_{}".format('email_notification_id'), kwargs.get('email_notification_id', None))
 85        setattr(self, "_{}".format('modified'), kwargs.get('modified', None))
 86        setattr(self, "_{}".format('modified_by'), kwargs.get('modified_by', None))
 87        setattr(self, "_{}".format('status'), kwargs.get('status', None))
 88        setattr(self, "_{}".format('uri'), kwargs.get('uri', None))
 89
 90    @property
 91    def account_id(self):
 92        """Gets the account_id of this BccEmailArchive.  # noqa: E501
 93
 94        The account ID associated with the envelope.  # noqa: E501
 95
 96        :return: The account_id of this BccEmailArchive.  # noqa: E501
 97        :rtype: str
 98        """
 99        return self._account_id
100
101    @account_id.setter
102    def account_id(self, account_id):
103        """Sets the account_id of this BccEmailArchive.
104
105        The account ID associated with the envelope.  # noqa: E501
106
107        :param account_id: The account_id of this BccEmailArchive.  # noqa: E501
108        :type: str
109        """
110
111        self._account_id = account_id
112
113    @property
114    def bcc_email_archive_id(self):
115        """Gets the bcc_email_archive_id of this BccEmailArchive.  # noqa: E501
116
117          # noqa: E501
118
119        :return: The bcc_email_archive_id of this BccEmailArchive.  # noqa: E501
120        :rtype: str
121        """
122        return self._bcc_email_archive_id
123
124    @bcc_email_archive_id.setter
125    def bcc_email_archive_id(self, bcc_email_archive_id):
126        """Sets the bcc_email_archive_id of this BccEmailArchive.
127
128          # noqa: E501
129
130        :param bcc_email_archive_id: The bcc_email_archive_id of this BccEmailArchive.  # noqa: E501
131        :type: str
132        """
133
134        self._bcc_email_archive_id = bcc_email_archive_id
135
136    @property
137    def created(self):
138        """Gets the created of this BccEmailArchive.  # noqa: E501
139
140          # noqa: E501
141
142        :return: The created of this BccEmailArchive.  # noqa: E501
143        :rtype: str
144        """
145        return self._created
146
147    @created.setter
148    def created(self, created):
149        """Sets the created of this BccEmailArchive.
150
151          # noqa: E501
152
153        :param created: The created of this BccEmailArchive.  # noqa: E501
154        :type: str
155        """
156
157        self._created = created
158
159    @property
160    def created_by(self):
161        """Gets the created_by of this BccEmailArchive.  # noqa: E501
162
163        Details about the user who created the BCC email archive configuration.  # noqa: E501
164
165        :return: The created_by of this BccEmailArchive.  # noqa: E501
166        :rtype: UserInfo
167        """
168        return self._created_by
169
170    @created_by.setter
171    def created_by(self, created_by):
172        """Sets the created_by of this BccEmailArchive.
173
174        Details about the user who created the BCC email archive configuration.  # noqa: E501
175
176        :param created_by: The created_by of this BccEmailArchive.  # noqa: E501
177        :type: UserInfo
178        """
179
180        self._created_by = created_by
181
182    @property
183    def email(self):
184        """Gets the email of this BccEmailArchive.  # noqa: E501
185
186          # noqa: E501
187
188        :return: The email of this BccEmailArchive.  # noqa: E501
189        :rtype: str
190        """
191        return self._email
192
193    @email.setter
194    def email(self, email):
195        """Sets the email of this BccEmailArchive.
196
197          # noqa: E501
198
199        :param email: The email of this BccEmailArchive.  # noqa: E501
200        :type: str
201        """
202
203        self._email = email
204
205    @property
206    def email_notification_id(self):
207        """Gets the email_notification_id of this BccEmailArchive.  # noqa: E501
208
209          # noqa: E501
210
211        :return: The email_notification_id of this BccEmailArchive.  # noqa: E501
212        :rtype: str
213        """
214        return self._email_notification_id
215
216    @email_notification_id.setter
217    def email_notification_id(self, email_notification_id):
218        """Sets the email_notification_id of this BccEmailArchive.
219
220          # noqa: E501
221
222        :param email_notification_id: The email_notification_id of this BccEmailArchive.  # noqa: E501
223        :type: str
224        """
225
226        self._email_notification_id = email_notification_id
227
228    @property
229    def modified(self):
230        """Gets the modified of this BccEmailArchive.  # noqa: E501
231
232          # noqa: E501
233
234        :return: The modified of this BccEmailArchive.  # noqa: E501
235        :rtype: str
236        """
237        return self._modified
238
239    @modified.setter
240    def modified(self, modified):
241        """Sets the modified of this BccEmailArchive.
242
243          # noqa: E501
244
245        :param modified: The modified of this BccEmailArchive.  # noqa: E501
246        :type: str
247        """
248
249        self._modified = modified
250
251    @property
252    def modified_by(self):
253        """Gets the modified_by of this BccEmailArchive.  # noqa: E501
254
255        Details about the user who last modified the BCC email archive configuration.  # noqa: E501
256
257        :return: The modified_by of this BccEmailArchive.  # noqa: E501
258        :rtype: UserInfo
259        """
260        return self._modified_by
261
262    @modified_by.setter
263    def modified_by(self, modified_by):
264        """Sets the modified_by of this BccEmailArchive.
265
266        Details about the user who last modified the BCC email archive configuration.  # noqa: E501
267
268        :param modified_by: The modified_by of this BccEmailArchive.  # noqa: E501
269        :type: UserInfo
270        """
271
272        self._modified_by = modified_by
273
274    @property
275    def status(self):
276        """Gets the status of this BccEmailArchive.  # noqa: E501
277
278        Indicates the envelope status. Valid values are:  * sent - The envelope is sent to the recipients.  * created - The envelope is saved as a draft and can be modified and sent later.  # noqa: E501
279
280        :return: The status of this BccEmailArchive.  # noqa: E501
281        :rtype: str
282        """
283        return self._status
284
285    @status.setter
286    def status(self, status):
287        """Sets the status of this BccEmailArchive.
288
289        Indicates the envelope status. Valid values are:  * sent - The envelope is sent to the recipients.  * created - The envelope is saved as a draft and can be modified and sent later.  # noqa: E501
290
291        :param status: The status of this BccEmailArchive.  # noqa: E501
292        :type: str
293        """
294
295        self._status = status
296
297    @property
298    def uri(self):
299        """Gets the uri of this BccEmailArchive.  # noqa: E501
300
301          # noqa: E501
302
303        :return: The uri of this BccEmailArchive.  # noqa: E501
304        :rtype: str
305        """
306        return self._uri
307
308    @uri.setter
309    def uri(self, uri):
310        """Sets the uri of this BccEmailArchive.
311
312          # noqa: E501
313
314        :param uri: The uri of this BccEmailArchive.  # noqa: E501
315        :type: str
316        """
317
318        self._uri = uri
319
320    def to_dict(self):
321        """Returns the model properties as a dict"""
322        result = {}
323
324        for attr, _ in six.iteritems(self.swagger_types):
325            value = getattr(self, attr)
326            if isinstance(value, list):
327                result[attr] = list(map(
328                    lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
329                    value
330                ))
331            elif hasattr(value, "to_dict"):
332                result[attr] = value.to_dict()
333            elif isinstance(value, dict):
334                result[attr] = dict(map(
335                    lambda item: (item[0], item[1].to_dict())
336                    if hasattr(item[1], "to_dict") else item,
337                    value.items()
338                ))
339            else:
340                result[attr] = value
341        if issubclass(BccEmailArchive, dict):
342            for key, value in self.items():
343                result[key] = value
344
345        return result
346
347    def to_str(self):
348        """Returns the string representation of the model"""
349        return pprint.pformat(self.to_dict())
350
351    def __repr__(self):
352        """For `print` and `pprint`"""
353        return self.to_str()
354
355    def __eq__(self, other):
356        """Returns true if both objects are equal"""
357        if not isinstance(other, BccEmailArchive):
358            return False
359
360        return self.to_dict() == other.to_dict()
361
362    def __ne__(self, other):
363        """Returns true if both objects are not equal"""
364        if not isinstance(other, BccEmailArchive):
365            return True
366
367        return self.to_dict() != other.to_dict()
class BccEmailArchive:
 23class BccEmailArchive(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        'account_id': 'str',
 38        'bcc_email_archive_id': 'str',
 39        'created': 'str',
 40        'created_by': 'UserInfo',
 41        'email': 'str',
 42        'email_notification_id': 'str',
 43        'modified': 'str',
 44        'modified_by': 'UserInfo',
 45        'status': 'str',
 46        'uri': 'str'
 47    }
 48
 49    attribute_map = {
 50        'account_id': 'accountId',
 51        'bcc_email_archive_id': 'bccEmailArchiveId',
 52        'created': 'created',
 53        'created_by': 'createdBy',
 54        'email': 'email',
 55        'email_notification_id': 'emailNotificationId',
 56        'modified': 'modified',
 57        'modified_by': 'modifiedBy',
 58        'status': 'status',
 59        'uri': 'uri'
 60    }
 61
 62    def __init__(self, _configuration=None, **kwargs):  # noqa: E501
 63        """BccEmailArchive - a model defined in Swagger"""  # noqa: E501
 64        if _configuration is None:
 65            _configuration = Configuration()
 66        self._configuration = _configuration
 67
 68        self._account_id = None
 69        self._bcc_email_archive_id = None
 70        self._created = None
 71        self._created_by = None
 72        self._email = None
 73        self._email_notification_id = None
 74        self._modified = None
 75        self._modified_by = None
 76        self._status = None
 77        self._uri = None
 78        self.discriminator = None
 79
 80        setattr(self, "_{}".format('account_id'), kwargs.get('account_id', None))
 81        setattr(self, "_{}".format('bcc_email_archive_id'), kwargs.get('bcc_email_archive_id', None))
 82        setattr(self, "_{}".format('created'), kwargs.get('created', None))
 83        setattr(self, "_{}".format('created_by'), kwargs.get('created_by', None))
 84        setattr(self, "_{}".format('email'), kwargs.get('email', None))
 85        setattr(self, "_{}".format('email_notification_id'), kwargs.get('email_notification_id', None))
 86        setattr(self, "_{}".format('modified'), kwargs.get('modified', None))
 87        setattr(self, "_{}".format('modified_by'), kwargs.get('modified_by', None))
 88        setattr(self, "_{}".format('status'), kwargs.get('status', None))
 89        setattr(self, "_{}".format('uri'), kwargs.get('uri', None))
 90
 91    @property
 92    def account_id(self):
 93        """Gets the account_id of this BccEmailArchive.  # noqa: E501
 94
 95        The account ID associated with the envelope.  # noqa: E501
 96
 97        :return: The account_id of this BccEmailArchive.  # noqa: E501
 98        :rtype: str
 99        """
100        return self._account_id
101
102    @account_id.setter
103    def account_id(self, account_id):
104        """Sets the account_id of this BccEmailArchive.
105
106        The account ID associated with the envelope.  # noqa: E501
107
108        :param account_id: The account_id of this BccEmailArchive.  # noqa: E501
109        :type: str
110        """
111
112        self._account_id = account_id
113
114    @property
115    def bcc_email_archive_id(self):
116        """Gets the bcc_email_archive_id of this BccEmailArchive.  # noqa: E501
117
118          # noqa: E501
119
120        :return: The bcc_email_archive_id of this BccEmailArchive.  # noqa: E501
121        :rtype: str
122        """
123        return self._bcc_email_archive_id
124
125    @bcc_email_archive_id.setter
126    def bcc_email_archive_id(self, bcc_email_archive_id):
127        """Sets the bcc_email_archive_id of this BccEmailArchive.
128
129          # noqa: E501
130
131        :param bcc_email_archive_id: The bcc_email_archive_id of this BccEmailArchive.  # noqa: E501
132        :type: str
133        """
134
135        self._bcc_email_archive_id = bcc_email_archive_id
136
137    @property
138    def created(self):
139        """Gets the created of this BccEmailArchive.  # noqa: E501
140
141          # noqa: E501
142
143        :return: The created of this BccEmailArchive.  # noqa: E501
144        :rtype: str
145        """
146        return self._created
147
148    @created.setter
149    def created(self, created):
150        """Sets the created of this BccEmailArchive.
151
152          # noqa: E501
153
154        :param created: The created of this BccEmailArchive.  # noqa: E501
155        :type: str
156        """
157
158        self._created = created
159
160    @property
161    def created_by(self):
162        """Gets the created_by of this BccEmailArchive.  # noqa: E501
163
164        Details about the user who created the BCC email archive configuration.  # noqa: E501
165
166        :return: The created_by of this BccEmailArchive.  # noqa: E501
167        :rtype: UserInfo
168        """
169        return self._created_by
170
171    @created_by.setter
172    def created_by(self, created_by):
173        """Sets the created_by of this BccEmailArchive.
174
175        Details about the user who created the BCC email archive configuration.  # noqa: E501
176
177        :param created_by: The created_by of this BccEmailArchive.  # noqa: E501
178        :type: UserInfo
179        """
180
181        self._created_by = created_by
182
183    @property
184    def email(self):
185        """Gets the email of this BccEmailArchive.  # noqa: E501
186
187          # noqa: E501
188
189        :return: The email of this BccEmailArchive.  # noqa: E501
190        :rtype: str
191        """
192        return self._email
193
194    @email.setter
195    def email(self, email):
196        """Sets the email of this BccEmailArchive.
197
198          # noqa: E501
199
200        :param email: The email of this BccEmailArchive.  # noqa: E501
201        :type: str
202        """
203
204        self._email = email
205
206    @property
207    def email_notification_id(self):
208        """Gets the email_notification_id of this BccEmailArchive.  # noqa: E501
209
210          # noqa: E501
211
212        :return: The email_notification_id of this BccEmailArchive.  # noqa: E501
213        :rtype: str
214        """
215        return self._email_notification_id
216
217    @email_notification_id.setter
218    def email_notification_id(self, email_notification_id):
219        """Sets the email_notification_id of this BccEmailArchive.
220
221          # noqa: E501
222
223        :param email_notification_id: The email_notification_id of this BccEmailArchive.  # noqa: E501
224        :type: str
225        """
226
227        self._email_notification_id = email_notification_id
228
229    @property
230    def modified(self):
231        """Gets the modified of this BccEmailArchive.  # noqa: E501
232
233          # noqa: E501
234
235        :return: The modified of this BccEmailArchive.  # noqa: E501
236        :rtype: str
237        """
238        return self._modified
239
240    @modified.setter
241    def modified(self, modified):
242        """Sets the modified of this BccEmailArchive.
243
244          # noqa: E501
245
246        :param modified: The modified of this BccEmailArchive.  # noqa: E501
247        :type: str
248        """
249
250        self._modified = modified
251
252    @property
253    def modified_by(self):
254        """Gets the modified_by of this BccEmailArchive.  # noqa: E501
255
256        Details about the user who last modified the BCC email archive configuration.  # noqa: E501
257
258        :return: The modified_by of this BccEmailArchive.  # noqa: E501
259        :rtype: UserInfo
260        """
261        return self._modified_by
262
263    @modified_by.setter
264    def modified_by(self, modified_by):
265        """Sets the modified_by of this BccEmailArchive.
266
267        Details about the user who last modified the BCC email archive configuration.  # noqa: E501
268
269        :param modified_by: The modified_by of this BccEmailArchive.  # noqa: E501
270        :type: UserInfo
271        """
272
273        self._modified_by = modified_by
274
275    @property
276    def status(self):
277        """Gets the status of this BccEmailArchive.  # noqa: E501
278
279        Indicates the envelope status. Valid values are:  * sent - The envelope is sent to the recipients.  * created - The envelope is saved as a draft and can be modified and sent later.  # noqa: E501
280
281        :return: The status of this BccEmailArchive.  # noqa: E501
282        :rtype: str
283        """
284        return self._status
285
286    @status.setter
287    def status(self, status):
288        """Sets the status of this BccEmailArchive.
289
290        Indicates the envelope status. Valid values are:  * sent - The envelope is sent to the recipients.  * created - The envelope is saved as a draft and can be modified and sent later.  # noqa: E501
291
292        :param status: The status of this BccEmailArchive.  # noqa: E501
293        :type: str
294        """
295
296        self._status = status
297
298    @property
299    def uri(self):
300        """Gets the uri of this BccEmailArchive.  # noqa: E501
301
302          # noqa: E501
303
304        :return: The uri of this BccEmailArchive.  # noqa: E501
305        :rtype: str
306        """
307        return self._uri
308
309    @uri.setter
310    def uri(self, uri):
311        """Sets the uri of this BccEmailArchive.
312
313          # noqa: E501
314
315        :param uri: The uri of this BccEmailArchive.  # noqa: E501
316        :type: str
317        """
318
319        self._uri = uri
320
321    def to_dict(self):
322        """Returns the model properties as a dict"""
323        result = {}
324
325        for attr, _ in six.iteritems(self.swagger_types):
326            value = getattr(self, attr)
327            if isinstance(value, list):
328                result[attr] = list(map(
329                    lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
330                    value
331                ))
332            elif hasattr(value, "to_dict"):
333                result[attr] = value.to_dict()
334            elif isinstance(value, dict):
335                result[attr] = dict(map(
336                    lambda item: (item[0], item[1].to_dict())
337                    if hasattr(item[1], "to_dict") else item,
338                    value.items()
339                ))
340            else:
341                result[attr] = value
342        if issubclass(BccEmailArchive, dict):
343            for key, value in self.items():
344                result[key] = value
345
346        return result
347
348    def to_str(self):
349        """Returns the string representation of the model"""
350        return pprint.pformat(self.to_dict())
351
352    def __repr__(self):
353        """For `print` and `pprint`"""
354        return self.to_str()
355
356    def __eq__(self, other):
357        """Returns true if both objects are equal"""
358        if not isinstance(other, BccEmailArchive):
359            return False
360
361        return self.to_dict() == other.to_dict()
362
363    def __ne__(self, other):
364        """Returns true if both objects are not equal"""
365        if not isinstance(other, BccEmailArchive):
366            return True
367
368        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.

BccEmailArchive(_configuration=None, **kwargs)
62    def __init__(self, _configuration=None, **kwargs):  # noqa: E501
63        """BccEmailArchive - a model defined in Swagger"""  # noqa: E501
64        if _configuration is None:
65            _configuration = Configuration()
66        self._configuration = _configuration
67
68        self._account_id = None
69        self._bcc_email_archive_id = None
70        self._created = None
71        self._created_by = None
72        self._email = None
73        self._email_notification_id = None
74        self._modified = None
75        self._modified_by = None
76        self._status = None
77        self._uri = None
78        self.discriminator = None
79
80        setattr(self, "_{}".format('account_id'), kwargs.get('account_id', None))
81        setattr(self, "_{}".format('bcc_email_archive_id'), kwargs.get('bcc_email_archive_id', None))
82        setattr(self, "_{}".format('created'), kwargs.get('created', None))
83        setattr(self, "_{}".format('created_by'), kwargs.get('created_by', None))
84        setattr(self, "_{}".format('email'), kwargs.get('email', None))
85        setattr(self, "_{}".format('email_notification_id'), kwargs.get('email_notification_id', None))
86        setattr(self, "_{}".format('modified'), kwargs.get('modified', None))
87        setattr(self, "_{}".format('modified_by'), kwargs.get('modified_by', None))
88        setattr(self, "_{}".format('status'), kwargs.get('status', None))
89        setattr(self, "_{}".format('uri'), kwargs.get('uri', None))

BccEmailArchive - a model defined in Swagger

swagger_types = {'account_id': 'str', 'bcc_email_archive_id': 'str', 'created': 'str', 'created_by': 'UserInfo', 'email': 'str', 'email_notification_id': 'str', 'modified': 'str', 'modified_by': 'UserInfo', 'status': 'str', 'uri': 'str'}
attribute_map = {'account_id': 'accountId', 'bcc_email_archive_id': 'bccEmailArchiveId', 'created': 'created', 'created_by': 'createdBy', 'email': 'email', 'email_notification_id': 'emailNotificationId', 'modified': 'modified', 'modified_by': 'modifiedBy', 'status': 'status', 'uri': 'uri'}
account_id

Gets the account_id of this BccEmailArchive. # noqa: E501

The account ID associated with the envelope. # noqa: E501

Returns

The account_id of this BccEmailArchive. # noqa: E501

bcc_email_archive_id

Gets the bcc_email_archive_id of this BccEmailArchive. # noqa: E501

# noqa: E501

Returns

The bcc_email_archive_id of this BccEmailArchive. # noqa: E501

created

Gets the created of this BccEmailArchive. # noqa: E501

# noqa: E501

Returns

The created of this BccEmailArchive. # noqa: E501

created_by

Gets the created_by of this BccEmailArchive. # noqa: E501

Details about the user who created the BCC email archive configuration. # noqa: E501

Returns

The created_by of this BccEmailArchive. # noqa: E501

email

Gets the email of this BccEmailArchive. # noqa: E501

# noqa: E501

Returns

The email of this BccEmailArchive. # noqa: E501

email_notification_id

Gets the email_notification_id of this BccEmailArchive. # noqa: E501

# noqa: E501

Returns

The email_notification_id of this BccEmailArchive. # noqa: E501

modified

Gets the modified of this BccEmailArchive. # noqa: E501

# noqa: E501

Returns

The modified of this BccEmailArchive. # noqa: E501

modified_by

Gets the modified_by of this BccEmailArchive. # noqa: E501

Details about the user who last modified the BCC email archive configuration. # noqa: E501

Returns

The modified_by of this BccEmailArchive. # noqa: E501

status

Gets the status of this BccEmailArchive. # noqa: E501

Indicates the envelope status. Valid values are: * sent - The envelope is sent to the recipients. * created - The envelope is saved as a draft and can be modified and sent later. # noqa: E501

Returns

The status of this BccEmailArchive. # noqa: E501

uri

Gets the uri of this BccEmailArchive. # noqa: E501

# noqa: E501

Returns

The uri of this BccEmailArchive. # noqa: E501

def to_dict(self)
321    def to_dict(self):
322        """Returns the model properties as a dict"""
323        result = {}
324
325        for attr, _ in six.iteritems(self.swagger_types):
326            value = getattr(self, attr)
327            if isinstance(value, list):
328                result[attr] = list(map(
329                    lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
330                    value
331                ))
332            elif hasattr(value, "to_dict"):
333                result[attr] = value.to_dict()
334            elif isinstance(value, dict):
335                result[attr] = dict(map(
336                    lambda item: (item[0], item[1].to_dict())
337                    if hasattr(item[1], "to_dict") else item,
338                    value.items()
339                ))
340            else:
341                result[attr] = value
342        if issubclass(BccEmailArchive, dict):
343            for key, value in self.items():
344                result[key] = value
345
346        return result

Returns the model properties as a dict

def to_str(self)
348    def to_str(self):
349        """Returns the string representation of the model"""
350        return pprint.pformat(self.to_dict())

Returns the string representation of the model