docusign_esign.models.account_identity_verification_workflow

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 AccountIdentityVerificationWorkflow(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        'default_description': 'str',
 37        'default_name': 'str',
 38        'input_options': 'list[AccountIdentityInputOption]',
 39        'signature_provider': 'AccountSignatureProvider',
 40        'steps': 'list[AccountIdentityVerificationStep]',
 41        'workflow_id': 'str',
 42        'workflow_label': 'str',
 43        'workflow_resource_key': 'str'
 44    }
 45
 46    attribute_map = {
 47        'default_description': 'defaultDescription',
 48        'default_name': 'defaultName',
 49        'input_options': 'inputOptions',
 50        'signature_provider': 'signatureProvider',
 51        'steps': 'steps',
 52        'workflow_id': 'workflowId',
 53        'workflow_label': 'workflowLabel',
 54        'workflow_resource_key': 'workflowResourceKey'
 55    }
 56
 57    def __init__(self, _configuration=None, **kwargs):  # noqa: E501
 58        """AccountIdentityVerificationWorkflow - a model defined in Swagger"""  # noqa: E501
 59        if _configuration is None:
 60            _configuration = Configuration()
 61        self._configuration = _configuration
 62
 63        self._default_description = None
 64        self._default_name = None
 65        self._input_options = None
 66        self._signature_provider = None
 67        self._steps = None
 68        self._workflow_id = None
 69        self._workflow_label = None
 70        self._workflow_resource_key = None
 71        self.discriminator = None
 72
 73        setattr(self, "_{}".format('default_description'), kwargs.get('default_description', None))
 74        setattr(self, "_{}".format('default_name'), kwargs.get('default_name', None))
 75        setattr(self, "_{}".format('input_options'), kwargs.get('input_options', None))
 76        setattr(self, "_{}".format('signature_provider'), kwargs.get('signature_provider', None))
 77        setattr(self, "_{}".format('steps'), kwargs.get('steps', None))
 78        setattr(self, "_{}".format('workflow_id'), kwargs.get('workflow_id', None))
 79        setattr(self, "_{}".format('workflow_label'), kwargs.get('workflow_label', None))
 80        setattr(self, "_{}".format('workflow_resource_key'), kwargs.get('workflow_resource_key', None))
 81
 82    @property
 83    def default_description(self):
 84        """Gets the default_description of this AccountIdentityVerificationWorkflow.  # noqa: E501
 85
 86          # noqa: E501
 87
 88        :return: The default_description of this AccountIdentityVerificationWorkflow.  # noqa: E501
 89        :rtype: str
 90        """
 91        return self._default_description
 92
 93    @default_description.setter
 94    def default_description(self, default_description):
 95        """Sets the default_description of this AccountIdentityVerificationWorkflow.
 96
 97          # noqa: E501
 98
 99        :param default_description: The default_description of this AccountIdentityVerificationWorkflow.  # noqa: E501
100        :type: str
101        """
102
103        self._default_description = default_description
104
105    @property
106    def default_name(self):
107        """Gets the default_name of this AccountIdentityVerificationWorkflow.  # noqa: E501
108
109          # noqa: E501
110
111        :return: The default_name of this AccountIdentityVerificationWorkflow.  # noqa: E501
112        :rtype: str
113        """
114        return self._default_name
115
116    @default_name.setter
117    def default_name(self, default_name):
118        """Sets the default_name of this AccountIdentityVerificationWorkflow.
119
120          # noqa: E501
121
122        :param default_name: The default_name of this AccountIdentityVerificationWorkflow.  # noqa: E501
123        :type: str
124        """
125
126        self._default_name = default_name
127
128    @property
129    def input_options(self):
130        """Gets the input_options of this AccountIdentityVerificationWorkflow.  # noqa: E501
131
132          # noqa: E501
133
134        :return: The input_options of this AccountIdentityVerificationWorkflow.  # noqa: E501
135        :rtype: list[AccountIdentityInputOption]
136        """
137        return self._input_options
138
139    @input_options.setter
140    def input_options(self, input_options):
141        """Sets the input_options of this AccountIdentityVerificationWorkflow.
142
143          # noqa: E501
144
145        :param input_options: The input_options of this AccountIdentityVerificationWorkflow.  # noqa: E501
146        :type: list[AccountIdentityInputOption]
147        """
148
149        self._input_options = input_options
150
151    @property
152    def signature_provider(self):
153        """Gets the signature_provider of this AccountIdentityVerificationWorkflow.  # noqa: E501
154
155        The signature provider associated with the Identity Verification workflow.  # noqa: E501
156
157        :return: The signature_provider of this AccountIdentityVerificationWorkflow.  # noqa: E501
158        :rtype: AccountSignatureProvider
159        """
160        return self._signature_provider
161
162    @signature_provider.setter
163    def signature_provider(self, signature_provider):
164        """Sets the signature_provider of this AccountIdentityVerificationWorkflow.
165
166        The signature provider associated with the Identity Verification workflow.  # noqa: E501
167
168        :param signature_provider: The signature_provider of this AccountIdentityVerificationWorkflow.  # noqa: E501
169        :type: AccountSignatureProvider
170        """
171
172        self._signature_provider = signature_provider
173
174    @property
175    def steps(self):
176        """Gets the steps of this AccountIdentityVerificationWorkflow.  # noqa: E501
177
178          # noqa: E501
179
180        :return: The steps of this AccountIdentityVerificationWorkflow.  # noqa: E501
181        :rtype: list[AccountIdentityVerificationStep]
182        """
183        return self._steps
184
185    @steps.setter
186    def steps(self, steps):
187        """Sets the steps of this AccountIdentityVerificationWorkflow.
188
189          # noqa: E501
190
191        :param steps: The steps of this AccountIdentityVerificationWorkflow.  # noqa: E501
192        :type: list[AccountIdentityVerificationStep]
193        """
194
195        self._steps = steps
196
197    @property
198    def workflow_id(self):
199        """Gets the workflow_id of this AccountIdentityVerificationWorkflow.  # noqa: E501
200
201          # noqa: E501
202
203        :return: The workflow_id of this AccountIdentityVerificationWorkflow.  # noqa: E501
204        :rtype: str
205        """
206        return self._workflow_id
207
208    @workflow_id.setter
209    def workflow_id(self, workflow_id):
210        """Sets the workflow_id of this AccountIdentityVerificationWorkflow.
211
212          # noqa: E501
213
214        :param workflow_id: The workflow_id of this AccountIdentityVerificationWorkflow.  # noqa: E501
215        :type: str
216        """
217
218        self._workflow_id = workflow_id
219
220    @property
221    def workflow_label(self):
222        """Gets the workflow_label of this AccountIdentityVerificationWorkflow.  # noqa: E501
223
224          # noqa: E501
225
226        :return: The workflow_label of this AccountIdentityVerificationWorkflow.  # noqa: E501
227        :rtype: str
228        """
229        return self._workflow_label
230
231    @workflow_label.setter
232    def workflow_label(self, workflow_label):
233        """Sets the workflow_label of this AccountIdentityVerificationWorkflow.
234
235          # noqa: E501
236
237        :param workflow_label: The workflow_label of this AccountIdentityVerificationWorkflow.  # noqa: E501
238        :type: str
239        """
240
241        self._workflow_label = workflow_label
242
243    @property
244    def workflow_resource_key(self):
245        """Gets the workflow_resource_key of this AccountIdentityVerificationWorkflow.  # noqa: E501
246
247          # noqa: E501
248
249        :return: The workflow_resource_key of this AccountIdentityVerificationWorkflow.  # noqa: E501
250        :rtype: str
251        """
252        return self._workflow_resource_key
253
254    @workflow_resource_key.setter
255    def workflow_resource_key(self, workflow_resource_key):
256        """Sets the workflow_resource_key of this AccountIdentityVerificationWorkflow.
257
258          # noqa: E501
259
260        :param workflow_resource_key: The workflow_resource_key of this AccountIdentityVerificationWorkflow.  # noqa: E501
261        :type: str
262        """
263
264        self._workflow_resource_key = workflow_resource_key
265
266    def to_dict(self):
267        """Returns the model properties as a dict"""
268        result = {}
269
270        for attr, _ in six.iteritems(self.swagger_types):
271            value = getattr(self, attr)
272            if isinstance(value, list):
273                result[attr] = list(map(
274                    lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
275                    value
276                ))
277            elif hasattr(value, "to_dict"):
278                result[attr] = value.to_dict()
279            elif isinstance(value, dict):
280                result[attr] = dict(map(
281                    lambda item: (item[0], item[1].to_dict())
282                    if hasattr(item[1], "to_dict") else item,
283                    value.items()
284                ))
285            else:
286                result[attr] = value
287        if issubclass(AccountIdentityVerificationWorkflow, dict):
288            for key, value in self.items():
289                result[key] = value
290
291        return result
292
293    def to_str(self):
294        """Returns the string representation of the model"""
295        return pprint.pformat(self.to_dict())
296
297    def __repr__(self):
298        """For `print` and `pprint`"""
299        return self.to_str()
300
301    def __eq__(self, other):
302        """Returns true if both objects are equal"""
303        if not isinstance(other, AccountIdentityVerificationWorkflow):
304            return False
305
306        return self.to_dict() == other.to_dict()
307
308    def __ne__(self, other):
309        """Returns true if both objects are not equal"""
310        if not isinstance(other, AccountIdentityVerificationWorkflow):
311            return True
312
313        return self.to_dict() != other.to_dict()
class AccountIdentityVerificationWorkflow:
 23class AccountIdentityVerificationWorkflow(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        'default_description': 'str',
 38        'default_name': 'str',
 39        'input_options': 'list[AccountIdentityInputOption]',
 40        'signature_provider': 'AccountSignatureProvider',
 41        'steps': 'list[AccountIdentityVerificationStep]',
 42        'workflow_id': 'str',
 43        'workflow_label': 'str',
 44        'workflow_resource_key': 'str'
 45    }
 46
 47    attribute_map = {
 48        'default_description': 'defaultDescription',
 49        'default_name': 'defaultName',
 50        'input_options': 'inputOptions',
 51        'signature_provider': 'signatureProvider',
 52        'steps': 'steps',
 53        'workflow_id': 'workflowId',
 54        'workflow_label': 'workflowLabel',
 55        'workflow_resource_key': 'workflowResourceKey'
 56    }
 57
 58    def __init__(self, _configuration=None, **kwargs):  # noqa: E501
 59        """AccountIdentityVerificationWorkflow - a model defined in Swagger"""  # noqa: E501
 60        if _configuration is None:
 61            _configuration = Configuration()
 62        self._configuration = _configuration
 63
 64        self._default_description = None
 65        self._default_name = None
 66        self._input_options = None
 67        self._signature_provider = None
 68        self._steps = None
 69        self._workflow_id = None
 70        self._workflow_label = None
 71        self._workflow_resource_key = None
 72        self.discriminator = None
 73
 74        setattr(self, "_{}".format('default_description'), kwargs.get('default_description', None))
 75        setattr(self, "_{}".format('default_name'), kwargs.get('default_name', None))
 76        setattr(self, "_{}".format('input_options'), kwargs.get('input_options', None))
 77        setattr(self, "_{}".format('signature_provider'), kwargs.get('signature_provider', None))
 78        setattr(self, "_{}".format('steps'), kwargs.get('steps', None))
 79        setattr(self, "_{}".format('workflow_id'), kwargs.get('workflow_id', None))
 80        setattr(self, "_{}".format('workflow_label'), kwargs.get('workflow_label', None))
 81        setattr(self, "_{}".format('workflow_resource_key'), kwargs.get('workflow_resource_key', None))
 82
 83    @property
 84    def default_description(self):
 85        """Gets the default_description of this AccountIdentityVerificationWorkflow.  # noqa: E501
 86
 87          # noqa: E501
 88
 89        :return: The default_description of this AccountIdentityVerificationWorkflow.  # noqa: E501
 90        :rtype: str
 91        """
 92        return self._default_description
 93
 94    @default_description.setter
 95    def default_description(self, default_description):
 96        """Sets the default_description of this AccountIdentityVerificationWorkflow.
 97
 98          # noqa: E501
 99
100        :param default_description: The default_description of this AccountIdentityVerificationWorkflow.  # noqa: E501
101        :type: str
102        """
103
104        self._default_description = default_description
105
106    @property
107    def default_name(self):
108        """Gets the default_name of this AccountIdentityVerificationWorkflow.  # noqa: E501
109
110          # noqa: E501
111
112        :return: The default_name of this AccountIdentityVerificationWorkflow.  # noqa: E501
113        :rtype: str
114        """
115        return self._default_name
116
117    @default_name.setter
118    def default_name(self, default_name):
119        """Sets the default_name of this AccountIdentityVerificationWorkflow.
120
121          # noqa: E501
122
123        :param default_name: The default_name of this AccountIdentityVerificationWorkflow.  # noqa: E501
124        :type: str
125        """
126
127        self._default_name = default_name
128
129    @property
130    def input_options(self):
131        """Gets the input_options of this AccountIdentityVerificationWorkflow.  # noqa: E501
132
133          # noqa: E501
134
135        :return: The input_options of this AccountIdentityVerificationWorkflow.  # noqa: E501
136        :rtype: list[AccountIdentityInputOption]
137        """
138        return self._input_options
139
140    @input_options.setter
141    def input_options(self, input_options):
142        """Sets the input_options of this AccountIdentityVerificationWorkflow.
143
144          # noqa: E501
145
146        :param input_options: The input_options of this AccountIdentityVerificationWorkflow.  # noqa: E501
147        :type: list[AccountIdentityInputOption]
148        """
149
150        self._input_options = input_options
151
152    @property
153    def signature_provider(self):
154        """Gets the signature_provider of this AccountIdentityVerificationWorkflow.  # noqa: E501
155
156        The signature provider associated with the Identity Verification workflow.  # noqa: E501
157
158        :return: The signature_provider of this AccountIdentityVerificationWorkflow.  # noqa: E501
159        :rtype: AccountSignatureProvider
160        """
161        return self._signature_provider
162
163    @signature_provider.setter
164    def signature_provider(self, signature_provider):
165        """Sets the signature_provider of this AccountIdentityVerificationWorkflow.
166
167        The signature provider associated with the Identity Verification workflow.  # noqa: E501
168
169        :param signature_provider: The signature_provider of this AccountIdentityVerificationWorkflow.  # noqa: E501
170        :type: AccountSignatureProvider
171        """
172
173        self._signature_provider = signature_provider
174
175    @property
176    def steps(self):
177        """Gets the steps of this AccountIdentityVerificationWorkflow.  # noqa: E501
178
179          # noqa: E501
180
181        :return: The steps of this AccountIdentityVerificationWorkflow.  # noqa: E501
182        :rtype: list[AccountIdentityVerificationStep]
183        """
184        return self._steps
185
186    @steps.setter
187    def steps(self, steps):
188        """Sets the steps of this AccountIdentityVerificationWorkflow.
189
190          # noqa: E501
191
192        :param steps: The steps of this AccountIdentityVerificationWorkflow.  # noqa: E501
193        :type: list[AccountIdentityVerificationStep]
194        """
195
196        self._steps = steps
197
198    @property
199    def workflow_id(self):
200        """Gets the workflow_id of this AccountIdentityVerificationWorkflow.  # noqa: E501
201
202          # noqa: E501
203
204        :return: The workflow_id of this AccountIdentityVerificationWorkflow.  # noqa: E501
205        :rtype: str
206        """
207        return self._workflow_id
208
209    @workflow_id.setter
210    def workflow_id(self, workflow_id):
211        """Sets the workflow_id of this AccountIdentityVerificationWorkflow.
212
213          # noqa: E501
214
215        :param workflow_id: The workflow_id of this AccountIdentityVerificationWorkflow.  # noqa: E501
216        :type: str
217        """
218
219        self._workflow_id = workflow_id
220
221    @property
222    def workflow_label(self):
223        """Gets the workflow_label of this AccountIdentityVerificationWorkflow.  # noqa: E501
224
225          # noqa: E501
226
227        :return: The workflow_label of this AccountIdentityVerificationWorkflow.  # noqa: E501
228        :rtype: str
229        """
230        return self._workflow_label
231
232    @workflow_label.setter
233    def workflow_label(self, workflow_label):
234        """Sets the workflow_label of this AccountIdentityVerificationWorkflow.
235
236          # noqa: E501
237
238        :param workflow_label: The workflow_label of this AccountIdentityVerificationWorkflow.  # noqa: E501
239        :type: str
240        """
241
242        self._workflow_label = workflow_label
243
244    @property
245    def workflow_resource_key(self):
246        """Gets the workflow_resource_key of this AccountIdentityVerificationWorkflow.  # noqa: E501
247
248          # noqa: E501
249
250        :return: The workflow_resource_key of this AccountIdentityVerificationWorkflow.  # noqa: E501
251        :rtype: str
252        """
253        return self._workflow_resource_key
254
255    @workflow_resource_key.setter
256    def workflow_resource_key(self, workflow_resource_key):
257        """Sets the workflow_resource_key of this AccountIdentityVerificationWorkflow.
258
259          # noqa: E501
260
261        :param workflow_resource_key: The workflow_resource_key of this AccountIdentityVerificationWorkflow.  # noqa: E501
262        :type: str
263        """
264
265        self._workflow_resource_key = workflow_resource_key
266
267    def to_dict(self):
268        """Returns the model properties as a dict"""
269        result = {}
270
271        for attr, _ in six.iteritems(self.swagger_types):
272            value = getattr(self, attr)
273            if isinstance(value, list):
274                result[attr] = list(map(
275                    lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
276                    value
277                ))
278            elif hasattr(value, "to_dict"):
279                result[attr] = value.to_dict()
280            elif isinstance(value, dict):
281                result[attr] = dict(map(
282                    lambda item: (item[0], item[1].to_dict())
283                    if hasattr(item[1], "to_dict") else item,
284                    value.items()
285                ))
286            else:
287                result[attr] = value
288        if issubclass(AccountIdentityVerificationWorkflow, dict):
289            for key, value in self.items():
290                result[key] = value
291
292        return result
293
294    def to_str(self):
295        """Returns the string representation of the model"""
296        return pprint.pformat(self.to_dict())
297
298    def __repr__(self):
299        """For `print` and `pprint`"""
300        return self.to_str()
301
302    def __eq__(self, other):
303        """Returns true if both objects are equal"""
304        if not isinstance(other, AccountIdentityVerificationWorkflow):
305            return False
306
307        return self.to_dict() == other.to_dict()
308
309    def __ne__(self, other):
310        """Returns true if both objects are not equal"""
311        if not isinstance(other, AccountIdentityVerificationWorkflow):
312            return True
313
314        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.

AccountIdentityVerificationWorkflow(_configuration=None, **kwargs)
58    def __init__(self, _configuration=None, **kwargs):  # noqa: E501
59        """AccountIdentityVerificationWorkflow - a model defined in Swagger"""  # noqa: E501
60        if _configuration is None:
61            _configuration = Configuration()
62        self._configuration = _configuration
63
64        self._default_description = None
65        self._default_name = None
66        self._input_options = None
67        self._signature_provider = None
68        self._steps = None
69        self._workflow_id = None
70        self._workflow_label = None
71        self._workflow_resource_key = None
72        self.discriminator = None
73
74        setattr(self, "_{}".format('default_description'), kwargs.get('default_description', None))
75        setattr(self, "_{}".format('default_name'), kwargs.get('default_name', None))
76        setattr(self, "_{}".format('input_options'), kwargs.get('input_options', None))
77        setattr(self, "_{}".format('signature_provider'), kwargs.get('signature_provider', None))
78        setattr(self, "_{}".format('steps'), kwargs.get('steps', None))
79        setattr(self, "_{}".format('workflow_id'), kwargs.get('workflow_id', None))
80        setattr(self, "_{}".format('workflow_label'), kwargs.get('workflow_label', None))
81        setattr(self, "_{}".format('workflow_resource_key'), kwargs.get('workflow_resource_key', None))

AccountIdentityVerificationWorkflow - a model defined in Swagger

swagger_types = {'default_description': 'str', 'default_name': 'str', 'input_options': 'list[AccountIdentityInputOption]', 'signature_provider': 'AccountSignatureProvider', 'steps': 'list[AccountIdentityVerificationStep]', 'workflow_id': 'str', 'workflow_label': 'str', 'workflow_resource_key': 'str'}
attribute_map = {'default_description': 'defaultDescription', 'default_name': 'defaultName', 'input_options': 'inputOptions', 'signature_provider': 'signatureProvider', 'steps': 'steps', 'workflow_id': 'workflowId', 'workflow_label': 'workflowLabel', 'workflow_resource_key': 'workflowResourceKey'}
default_description

Gets the default_description of this AccountIdentityVerificationWorkflow. # noqa: E501

# noqa: E501

Returns

The default_description of this AccountIdentityVerificationWorkflow. # noqa: E501

default_name

Gets the default_name of this AccountIdentityVerificationWorkflow. # noqa: E501

# noqa: E501

Returns

The default_name of this AccountIdentityVerificationWorkflow. # noqa: E501

input_options

Gets the input_options of this AccountIdentityVerificationWorkflow. # noqa: E501

# noqa: E501

Returns

The input_options of this AccountIdentityVerificationWorkflow. # noqa: E501

signature_provider

Gets the signature_provider of this AccountIdentityVerificationWorkflow. # noqa: E501

The signature provider associated with the Identity Verification workflow. # noqa: E501

Returns

The signature_provider of this AccountIdentityVerificationWorkflow. # noqa: E501

steps

Gets the steps of this AccountIdentityVerificationWorkflow. # noqa: E501

# noqa: E501

Returns

The steps of this AccountIdentityVerificationWorkflow. # noqa: E501

workflow_id

Gets the workflow_id of this AccountIdentityVerificationWorkflow. # noqa: E501

# noqa: E501

Returns

The workflow_id of this AccountIdentityVerificationWorkflow. # noqa: E501

workflow_label

Gets the workflow_label of this AccountIdentityVerificationWorkflow. # noqa: E501

# noqa: E501

Returns

The workflow_label of this AccountIdentityVerificationWorkflow. # noqa: E501

workflow_resource_key

Gets the workflow_resource_key of this AccountIdentityVerificationWorkflow. # noqa: E501

# noqa: E501

Returns

The workflow_resource_key of this AccountIdentityVerificationWorkflow. # noqa: E501

def to_dict(self)
267    def to_dict(self):
268        """Returns the model properties as a dict"""
269        result = {}
270
271        for attr, _ in six.iteritems(self.swagger_types):
272            value = getattr(self, attr)
273            if isinstance(value, list):
274                result[attr] = list(map(
275                    lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
276                    value
277                ))
278            elif hasattr(value, "to_dict"):
279                result[attr] = value.to_dict()
280            elif isinstance(value, dict):
281                result[attr] = dict(map(
282                    lambda item: (item[0], item[1].to_dict())
283                    if hasattr(item[1], "to_dict") else item,
284                    value.items()
285                ))
286            else:
287                result[attr] = value
288        if issubclass(AccountIdentityVerificationWorkflow, dict):
289            for key, value in self.items():
290                result[key] = value
291
292        return result

Returns the model properties as a dict

def to_str(self)
294    def to_str(self):
295        """Returns the string representation of the model"""
296        return pprint.pformat(self.to_dict())

Returns the string representation of the model