docusign_esign.models.envelope_attachment

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 EnvelopeAttachment(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        'access_control': 'str',
 37        'attachment_id': 'str',
 38        'attachment_type': 'str',
 39        'error_details': 'ErrorDetails',
 40        'label': 'str',
 41        'name': 'str'
 42    }
 43
 44    attribute_map = {
 45        'access_control': 'accessControl',
 46        'attachment_id': 'attachmentId',
 47        'attachment_type': 'attachmentType',
 48        'error_details': 'errorDetails',
 49        'label': 'label',
 50        'name': 'name'
 51    }
 52
 53    def __init__(self, _configuration=None, **kwargs):  # noqa: E501
 54        """EnvelopeAttachment - a model defined in Swagger"""  # noqa: E501
 55        if _configuration is None:
 56            _configuration = Configuration()
 57        self._configuration = _configuration
 58
 59        self._access_control = None
 60        self._attachment_id = None
 61        self._attachment_type = None
 62        self._error_details = None
 63        self._label = None
 64        self._name = None
 65        self.discriminator = None
 66
 67        setattr(self, "_{}".format('access_control'), kwargs.get('access_control', None))
 68        setattr(self, "_{}".format('attachment_id'), kwargs.get('attachment_id', None))
 69        setattr(self, "_{}".format('attachment_type'), kwargs.get('attachment_type', None))
 70        setattr(self, "_{}".format('error_details'), kwargs.get('error_details', None))
 71        setattr(self, "_{}".format('label'), kwargs.get('label', None))
 72        setattr(self, "_{}".format('name'), kwargs.get('name', None))
 73
 74    @property
 75    def access_control(self):
 76        """Gets the access_control of this EnvelopeAttachment.  # noqa: E501
 77
 78          # noqa: E501
 79
 80        :return: The access_control of this EnvelopeAttachment.  # noqa: E501
 81        :rtype: str
 82        """
 83        return self._access_control
 84
 85    @access_control.setter
 86    def access_control(self, access_control):
 87        """Sets the access_control of this EnvelopeAttachment.
 88
 89          # noqa: E501
 90
 91        :param access_control: The access_control of this EnvelopeAttachment.  # noqa: E501
 92        :type: str
 93        """
 94
 95        self._access_control = access_control
 96
 97    @property
 98    def attachment_id(self):
 99        """Gets the attachment_id of this EnvelopeAttachment.  # noqa: E501
100
101          # noqa: E501
102
103        :return: The attachment_id of this EnvelopeAttachment.  # noqa: E501
104        :rtype: str
105        """
106        return self._attachment_id
107
108    @attachment_id.setter
109    def attachment_id(self, attachment_id):
110        """Sets the attachment_id of this EnvelopeAttachment.
111
112          # noqa: E501
113
114        :param attachment_id: The attachment_id of this EnvelopeAttachment.  # noqa: E501
115        :type: str
116        """
117
118        self._attachment_id = attachment_id
119
120    @property
121    def attachment_type(self):
122        """Gets the attachment_type of this EnvelopeAttachment.  # noqa: E501
123
124          # noqa: E501
125
126        :return: The attachment_type of this EnvelopeAttachment.  # noqa: E501
127        :rtype: str
128        """
129        return self._attachment_type
130
131    @attachment_type.setter
132    def attachment_type(self, attachment_type):
133        """Sets the attachment_type of this EnvelopeAttachment.
134
135          # noqa: E501
136
137        :param attachment_type: The attachment_type of this EnvelopeAttachment.  # noqa: E501
138        :type: str
139        """
140
141        self._attachment_type = attachment_type
142
143    @property
144    def error_details(self):
145        """Gets the error_details of this EnvelopeAttachment.  # noqa: E501
146
147        Array or errors.  # noqa: E501
148
149        :return: The error_details of this EnvelopeAttachment.  # noqa: E501
150        :rtype: ErrorDetails
151        """
152        return self._error_details
153
154    @error_details.setter
155    def error_details(self, error_details):
156        """Sets the error_details of this EnvelopeAttachment.
157
158        Array or errors.  # noqa: E501
159
160        :param error_details: The error_details of this EnvelopeAttachment.  # noqa: E501
161        :type: ErrorDetails
162        """
163
164        self._error_details = error_details
165
166    @property
167    def label(self):
168        """Gets the label of this EnvelopeAttachment.  # noqa: E501
169
170          # noqa: E501
171
172        :return: The label of this EnvelopeAttachment.  # noqa: E501
173        :rtype: str
174        """
175        return self._label
176
177    @label.setter
178    def label(self, label):
179        """Sets the label of this EnvelopeAttachment.
180
181          # noqa: E501
182
183        :param label: The label of this EnvelopeAttachment.  # noqa: E501
184        :type: str
185        """
186
187        self._label = label
188
189    @property
190    def name(self):
191        """Gets the name of this EnvelopeAttachment.  # noqa: E501
192
193          # noqa: E501
194
195        :return: The name of this EnvelopeAttachment.  # noqa: E501
196        :rtype: str
197        """
198        return self._name
199
200    @name.setter
201    def name(self, name):
202        """Sets the name of this EnvelopeAttachment.
203
204          # noqa: E501
205
206        :param name: The name of this EnvelopeAttachment.  # noqa: E501
207        :type: str
208        """
209
210        self._name = name
211
212    def to_dict(self):
213        """Returns the model properties as a dict"""
214        result = {}
215
216        for attr, _ in six.iteritems(self.swagger_types):
217            value = getattr(self, attr)
218            if isinstance(value, list):
219                result[attr] = list(map(
220                    lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
221                    value
222                ))
223            elif hasattr(value, "to_dict"):
224                result[attr] = value.to_dict()
225            elif isinstance(value, dict):
226                result[attr] = dict(map(
227                    lambda item: (item[0], item[1].to_dict())
228                    if hasattr(item[1], "to_dict") else item,
229                    value.items()
230                ))
231            else:
232                result[attr] = value
233        if issubclass(EnvelopeAttachment, dict):
234            for key, value in self.items():
235                result[key] = value
236
237        return result
238
239    def to_str(self):
240        """Returns the string representation of the model"""
241        return pprint.pformat(self.to_dict())
242
243    def __repr__(self):
244        """For `print` and `pprint`"""
245        return self.to_str()
246
247    def __eq__(self, other):
248        """Returns true if both objects are equal"""
249        if not isinstance(other, EnvelopeAttachment):
250            return False
251
252        return self.to_dict() == other.to_dict()
253
254    def __ne__(self, other):
255        """Returns true if both objects are not equal"""
256        if not isinstance(other, EnvelopeAttachment):
257            return True
258
259        return self.to_dict() != other.to_dict()
class EnvelopeAttachment:
 23class EnvelopeAttachment(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        'access_control': 'str',
 38        'attachment_id': 'str',
 39        'attachment_type': 'str',
 40        'error_details': 'ErrorDetails',
 41        'label': 'str',
 42        'name': 'str'
 43    }
 44
 45    attribute_map = {
 46        'access_control': 'accessControl',
 47        'attachment_id': 'attachmentId',
 48        'attachment_type': 'attachmentType',
 49        'error_details': 'errorDetails',
 50        'label': 'label',
 51        'name': 'name'
 52    }
 53
 54    def __init__(self, _configuration=None, **kwargs):  # noqa: E501
 55        """EnvelopeAttachment - a model defined in Swagger"""  # noqa: E501
 56        if _configuration is None:
 57            _configuration = Configuration()
 58        self._configuration = _configuration
 59
 60        self._access_control = None
 61        self._attachment_id = None
 62        self._attachment_type = None
 63        self._error_details = None
 64        self._label = None
 65        self._name = None
 66        self.discriminator = None
 67
 68        setattr(self, "_{}".format('access_control'), kwargs.get('access_control', None))
 69        setattr(self, "_{}".format('attachment_id'), kwargs.get('attachment_id', None))
 70        setattr(self, "_{}".format('attachment_type'), kwargs.get('attachment_type', None))
 71        setattr(self, "_{}".format('error_details'), kwargs.get('error_details', None))
 72        setattr(self, "_{}".format('label'), kwargs.get('label', None))
 73        setattr(self, "_{}".format('name'), kwargs.get('name', None))
 74
 75    @property
 76    def access_control(self):
 77        """Gets the access_control of this EnvelopeAttachment.  # noqa: E501
 78
 79          # noqa: E501
 80
 81        :return: The access_control of this EnvelopeAttachment.  # noqa: E501
 82        :rtype: str
 83        """
 84        return self._access_control
 85
 86    @access_control.setter
 87    def access_control(self, access_control):
 88        """Sets the access_control of this EnvelopeAttachment.
 89
 90          # noqa: E501
 91
 92        :param access_control: The access_control of this EnvelopeAttachment.  # noqa: E501
 93        :type: str
 94        """
 95
 96        self._access_control = access_control
 97
 98    @property
 99    def attachment_id(self):
100        """Gets the attachment_id of this EnvelopeAttachment.  # noqa: E501
101
102          # noqa: E501
103
104        :return: The attachment_id of this EnvelopeAttachment.  # noqa: E501
105        :rtype: str
106        """
107        return self._attachment_id
108
109    @attachment_id.setter
110    def attachment_id(self, attachment_id):
111        """Sets the attachment_id of this EnvelopeAttachment.
112
113          # noqa: E501
114
115        :param attachment_id: The attachment_id of this EnvelopeAttachment.  # noqa: E501
116        :type: str
117        """
118
119        self._attachment_id = attachment_id
120
121    @property
122    def attachment_type(self):
123        """Gets the attachment_type of this EnvelopeAttachment.  # noqa: E501
124
125          # noqa: E501
126
127        :return: The attachment_type of this EnvelopeAttachment.  # noqa: E501
128        :rtype: str
129        """
130        return self._attachment_type
131
132    @attachment_type.setter
133    def attachment_type(self, attachment_type):
134        """Sets the attachment_type of this EnvelopeAttachment.
135
136          # noqa: E501
137
138        :param attachment_type: The attachment_type of this EnvelopeAttachment.  # noqa: E501
139        :type: str
140        """
141
142        self._attachment_type = attachment_type
143
144    @property
145    def error_details(self):
146        """Gets the error_details of this EnvelopeAttachment.  # noqa: E501
147
148        Array or errors.  # noqa: E501
149
150        :return: The error_details of this EnvelopeAttachment.  # noqa: E501
151        :rtype: ErrorDetails
152        """
153        return self._error_details
154
155    @error_details.setter
156    def error_details(self, error_details):
157        """Sets the error_details of this EnvelopeAttachment.
158
159        Array or errors.  # noqa: E501
160
161        :param error_details: The error_details of this EnvelopeAttachment.  # noqa: E501
162        :type: ErrorDetails
163        """
164
165        self._error_details = error_details
166
167    @property
168    def label(self):
169        """Gets the label of this EnvelopeAttachment.  # noqa: E501
170
171          # noqa: E501
172
173        :return: The label of this EnvelopeAttachment.  # noqa: E501
174        :rtype: str
175        """
176        return self._label
177
178    @label.setter
179    def label(self, label):
180        """Sets the label of this EnvelopeAttachment.
181
182          # noqa: E501
183
184        :param label: The label of this EnvelopeAttachment.  # noqa: E501
185        :type: str
186        """
187
188        self._label = label
189
190    @property
191    def name(self):
192        """Gets the name of this EnvelopeAttachment.  # noqa: E501
193
194          # noqa: E501
195
196        :return: The name of this EnvelopeAttachment.  # noqa: E501
197        :rtype: str
198        """
199        return self._name
200
201    @name.setter
202    def name(self, name):
203        """Sets the name of this EnvelopeAttachment.
204
205          # noqa: E501
206
207        :param name: The name of this EnvelopeAttachment.  # noqa: E501
208        :type: str
209        """
210
211        self._name = name
212
213    def to_dict(self):
214        """Returns the model properties as a dict"""
215        result = {}
216
217        for attr, _ in six.iteritems(self.swagger_types):
218            value = getattr(self, attr)
219            if isinstance(value, list):
220                result[attr] = list(map(
221                    lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
222                    value
223                ))
224            elif hasattr(value, "to_dict"):
225                result[attr] = value.to_dict()
226            elif isinstance(value, dict):
227                result[attr] = dict(map(
228                    lambda item: (item[0], item[1].to_dict())
229                    if hasattr(item[1], "to_dict") else item,
230                    value.items()
231                ))
232            else:
233                result[attr] = value
234        if issubclass(EnvelopeAttachment, dict):
235            for key, value in self.items():
236                result[key] = value
237
238        return result
239
240    def to_str(self):
241        """Returns the string representation of the model"""
242        return pprint.pformat(self.to_dict())
243
244    def __repr__(self):
245        """For `print` and `pprint`"""
246        return self.to_str()
247
248    def __eq__(self, other):
249        """Returns true if both objects are equal"""
250        if not isinstance(other, EnvelopeAttachment):
251            return False
252
253        return self.to_dict() == other.to_dict()
254
255    def __ne__(self, other):
256        """Returns true if both objects are not equal"""
257        if not isinstance(other, EnvelopeAttachment):
258            return True
259
260        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.

EnvelopeAttachment(_configuration=None, **kwargs)
54    def __init__(self, _configuration=None, **kwargs):  # noqa: E501
55        """EnvelopeAttachment - a model defined in Swagger"""  # noqa: E501
56        if _configuration is None:
57            _configuration = Configuration()
58        self._configuration = _configuration
59
60        self._access_control = None
61        self._attachment_id = None
62        self._attachment_type = None
63        self._error_details = None
64        self._label = None
65        self._name = None
66        self.discriminator = None
67
68        setattr(self, "_{}".format('access_control'), kwargs.get('access_control', None))
69        setattr(self, "_{}".format('attachment_id'), kwargs.get('attachment_id', None))
70        setattr(self, "_{}".format('attachment_type'), kwargs.get('attachment_type', None))
71        setattr(self, "_{}".format('error_details'), kwargs.get('error_details', None))
72        setattr(self, "_{}".format('label'), kwargs.get('label', None))
73        setattr(self, "_{}".format('name'), kwargs.get('name', None))

EnvelopeAttachment - a model defined in Swagger

swagger_types = {'access_control': 'str', 'attachment_id': 'str', 'attachment_type': 'str', 'error_details': 'ErrorDetails', 'label': 'str', 'name': 'str'}
attribute_map = {'access_control': 'accessControl', 'attachment_id': 'attachmentId', 'attachment_type': 'attachmentType', 'error_details': 'errorDetails', 'label': 'label', 'name': 'name'}
access_control

Gets the access_control of this EnvelopeAttachment. # noqa: E501

# noqa: E501

Returns

The access_control of this EnvelopeAttachment. # noqa: E501

attachment_id

Gets the attachment_id of this EnvelopeAttachment. # noqa: E501

# noqa: E501

Returns

The attachment_id of this EnvelopeAttachment. # noqa: E501

attachment_type

Gets the attachment_type of this EnvelopeAttachment. # noqa: E501

# noqa: E501

Returns

The attachment_type of this EnvelopeAttachment. # noqa: E501

error_details

Gets the error_details of this EnvelopeAttachment. # noqa: E501

Array or errors. # noqa: E501

Returns

The error_details of this EnvelopeAttachment. # noqa: E501

label

Gets the label of this EnvelopeAttachment. # noqa: E501

# noqa: E501

Returns

The label of this EnvelopeAttachment. # noqa: E501

name

Gets the name of this EnvelopeAttachment. # noqa: E501

# noqa: E501

Returns

The name of this EnvelopeAttachment. # noqa: E501

def to_dict(self)
213    def to_dict(self):
214        """Returns the model properties as a dict"""
215        result = {}
216
217        for attr, _ in six.iteritems(self.swagger_types):
218            value = getattr(self, attr)
219            if isinstance(value, list):
220                result[attr] = list(map(
221                    lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
222                    value
223                ))
224            elif hasattr(value, "to_dict"):
225                result[attr] = value.to_dict()
226            elif isinstance(value, dict):
227                result[attr] = dict(map(
228                    lambda item: (item[0], item[1].to_dict())
229                    if hasattr(item[1], "to_dict") else item,
230                    value.items()
231                ))
232            else:
233                result[attr] = value
234        if issubclass(EnvelopeAttachment, dict):
235            for key, value in self.items():
236                result[key] = value
237
238        return result

Returns the model properties as a dict

def to_str(self)
240    def to_str(self):
241        """Returns the string representation of the model"""
242        return pprint.pformat(self.to_dict())

Returns the string representation of the model