docusign_esign.models.account_identity_verification_workflow
Docusign eSignature REST API
The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. # noqa: E501
OpenAPI spec version: v2.1 Contact: devcenter@docusign.com Generated by: https://github.com/swagger-api/swagger-codegen.git
1# coding: utf-8 2 3""" 4 Docusign eSignature REST API 5 6 The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. # noqa: E501 7 8 OpenAPI spec version: v2.1 9 Contact: devcenter@docusign.com 10 Generated by: https://github.com/swagger-api/swagger-codegen.git 11""" 12 13 14import pprint 15import re # noqa: F401 16 17import six 18 19from docusign_esign.client.configuration import Configuration 20 21 22class 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 'display_order': 'str', 39 'input_options': 'list[AccountIdentityInputOption]', 40 'is_disabled': 'str', 41 'owner_type': 'str', 42 'signature_provider': 'AccountSignatureProvider', 43 'steps': 'list[AccountIdentityVerificationStep]', 44 'workflow_id': 'str', 45 'workflow_label': 'str', 46 'workflow_resource_key': 'str' 47 } 48 49 attribute_map = { 50 'default_description': 'defaultDescription', 51 'default_name': 'defaultName', 52 'display_order': 'displayOrder', 53 'input_options': 'inputOptions', 54 'is_disabled': 'isDisabled', 55 'owner_type': 'ownerType', 56 'signature_provider': 'signatureProvider', 57 'steps': 'steps', 58 'workflow_id': 'workflowId', 59 'workflow_label': 'workflowLabel', 60 'workflow_resource_key': 'workflowResourceKey' 61 } 62 63 def __init__(self, _configuration=None, **kwargs): # noqa: E501 64 """AccountIdentityVerificationWorkflow - a model defined in Swagger""" # noqa: E501 65 if _configuration is None: 66 _configuration = Configuration() 67 self._configuration = _configuration 68 69 self._default_description = None 70 self._default_name = None 71 self._display_order = None 72 self._input_options = None 73 self._is_disabled = None 74 self._owner_type = None 75 self._signature_provider = None 76 self._steps = None 77 self._workflow_id = None 78 self._workflow_label = None 79 self._workflow_resource_key = None 80 self.discriminator = None 81 82 setattr(self, "_{}".format('default_description'), kwargs.get('default_description', None)) 83 setattr(self, "_{}".format('default_name'), kwargs.get('default_name', None)) 84 setattr(self, "_{}".format('display_order'), kwargs.get('display_order', None)) 85 setattr(self, "_{}".format('input_options'), kwargs.get('input_options', None)) 86 setattr(self, "_{}".format('is_disabled'), kwargs.get('is_disabled', None)) 87 setattr(self, "_{}".format('owner_type'), kwargs.get('owner_type', None)) 88 setattr(self, "_{}".format('signature_provider'), kwargs.get('signature_provider', None)) 89 setattr(self, "_{}".format('steps'), kwargs.get('steps', None)) 90 setattr(self, "_{}".format('workflow_id'), kwargs.get('workflow_id', None)) 91 setattr(self, "_{}".format('workflow_label'), kwargs.get('workflow_label', None)) 92 setattr(self, "_{}".format('workflow_resource_key'), kwargs.get('workflow_resource_key', None)) 93 94 @property 95 def default_description(self): 96 """Gets the default_description of this AccountIdentityVerificationWorkflow. # noqa: E501 97 98 # noqa: E501 99 100 :return: The default_description of this AccountIdentityVerificationWorkflow. # noqa: E501 101 :rtype: str 102 """ 103 return self._default_description 104 105 @default_description.setter 106 def default_description(self, default_description): 107 """Sets the default_description of this AccountIdentityVerificationWorkflow. 108 109 # noqa: E501 110 111 :param default_description: The default_description of this AccountIdentityVerificationWorkflow. # noqa: E501 112 :type: str 113 """ 114 115 self._default_description = default_description 116 117 @property 118 def default_name(self): 119 """Gets the default_name of this AccountIdentityVerificationWorkflow. # noqa: E501 120 121 # noqa: E501 122 123 :return: The default_name of this AccountIdentityVerificationWorkflow. # noqa: E501 124 :rtype: str 125 """ 126 return self._default_name 127 128 @default_name.setter 129 def default_name(self, default_name): 130 """Sets the default_name of this AccountIdentityVerificationWorkflow. 131 132 # noqa: E501 133 134 :param default_name: The default_name of this AccountIdentityVerificationWorkflow. # noqa: E501 135 :type: str 136 """ 137 138 self._default_name = default_name 139 140 @property 141 def display_order(self): 142 """Gets the display_order of this AccountIdentityVerificationWorkflow. # noqa: E501 143 144 # noqa: E501 145 146 :return: The display_order of this AccountIdentityVerificationWorkflow. # noqa: E501 147 :rtype: str 148 """ 149 return self._display_order 150 151 @display_order.setter 152 def display_order(self, display_order): 153 """Sets the display_order of this AccountIdentityVerificationWorkflow. 154 155 # noqa: E501 156 157 :param display_order: The display_order of this AccountIdentityVerificationWorkflow. # noqa: E501 158 :type: str 159 """ 160 161 self._display_order = display_order 162 163 @property 164 def input_options(self): 165 """Gets the input_options of this AccountIdentityVerificationWorkflow. # noqa: E501 166 167 # noqa: E501 168 169 :return: The input_options of this AccountIdentityVerificationWorkflow. # noqa: E501 170 :rtype: list[AccountIdentityInputOption] 171 """ 172 return self._input_options 173 174 @input_options.setter 175 def input_options(self, input_options): 176 """Sets the input_options of this AccountIdentityVerificationWorkflow. 177 178 # noqa: E501 179 180 :param input_options: The input_options of this AccountIdentityVerificationWorkflow. # noqa: E501 181 :type: list[AccountIdentityInputOption] 182 """ 183 184 self._input_options = input_options 185 186 @property 187 def is_disabled(self): 188 """Gets the is_disabled of this AccountIdentityVerificationWorkflow. # noqa: E501 189 190 # noqa: E501 191 192 :return: The is_disabled of this AccountIdentityVerificationWorkflow. # noqa: E501 193 :rtype: str 194 """ 195 return self._is_disabled 196 197 @is_disabled.setter 198 def is_disabled(self, is_disabled): 199 """Sets the is_disabled of this AccountIdentityVerificationWorkflow. 200 201 # noqa: E501 202 203 :param is_disabled: The is_disabled of this AccountIdentityVerificationWorkflow. # noqa: E501 204 :type: str 205 """ 206 207 self._is_disabled = is_disabled 208 209 @property 210 def owner_type(self): 211 """Gets the owner_type of this AccountIdentityVerificationWorkflow. # noqa: E501 212 213 # noqa: E501 214 215 :return: The owner_type of this AccountIdentityVerificationWorkflow. # noqa: E501 216 :rtype: str 217 """ 218 return self._owner_type 219 220 @owner_type.setter 221 def owner_type(self, owner_type): 222 """Sets the owner_type of this AccountIdentityVerificationWorkflow. 223 224 # noqa: E501 225 226 :param owner_type: The owner_type of this AccountIdentityVerificationWorkflow. # noqa: E501 227 :type: str 228 """ 229 230 self._owner_type = owner_type 231 232 @property 233 def signature_provider(self): 234 """Gets the signature_provider of this AccountIdentityVerificationWorkflow. # noqa: E501 235 236 The signature provider associated with the Identity Verification workflow. # noqa: E501 237 238 :return: The signature_provider of this AccountIdentityVerificationWorkflow. # noqa: E501 239 :rtype: AccountSignatureProvider 240 """ 241 return self._signature_provider 242 243 @signature_provider.setter 244 def signature_provider(self, signature_provider): 245 """Sets the signature_provider of this AccountIdentityVerificationWorkflow. 246 247 The signature provider associated with the Identity Verification workflow. # noqa: E501 248 249 :param signature_provider: The signature_provider of this AccountIdentityVerificationWorkflow. # noqa: E501 250 :type: AccountSignatureProvider 251 """ 252 253 self._signature_provider = signature_provider 254 255 @property 256 def steps(self): 257 """Gets the steps of this AccountIdentityVerificationWorkflow. # noqa: E501 258 259 # noqa: E501 260 261 :return: The steps of this AccountIdentityVerificationWorkflow. # noqa: E501 262 :rtype: list[AccountIdentityVerificationStep] 263 """ 264 return self._steps 265 266 @steps.setter 267 def steps(self, steps): 268 """Sets the steps of this AccountIdentityVerificationWorkflow. 269 270 # noqa: E501 271 272 :param steps: The steps of this AccountIdentityVerificationWorkflow. # noqa: E501 273 :type: list[AccountIdentityVerificationStep] 274 """ 275 276 self._steps = steps 277 278 @property 279 def workflow_id(self): 280 """Gets the workflow_id of this AccountIdentityVerificationWorkflow. # noqa: E501 281 282 # noqa: E501 283 284 :return: The workflow_id of this AccountIdentityVerificationWorkflow. # noqa: E501 285 :rtype: str 286 """ 287 return self._workflow_id 288 289 @workflow_id.setter 290 def workflow_id(self, workflow_id): 291 """Sets the workflow_id of this AccountIdentityVerificationWorkflow. 292 293 # noqa: E501 294 295 :param workflow_id: The workflow_id of this AccountIdentityVerificationWorkflow. # noqa: E501 296 :type: str 297 """ 298 299 self._workflow_id = workflow_id 300 301 @property 302 def workflow_label(self): 303 """Gets the workflow_label of this AccountIdentityVerificationWorkflow. # noqa: E501 304 305 # noqa: E501 306 307 :return: The workflow_label of this AccountIdentityVerificationWorkflow. # noqa: E501 308 :rtype: str 309 """ 310 return self._workflow_label 311 312 @workflow_label.setter 313 def workflow_label(self, workflow_label): 314 """Sets the workflow_label of this AccountIdentityVerificationWorkflow. 315 316 # noqa: E501 317 318 :param workflow_label: The workflow_label of this AccountIdentityVerificationWorkflow. # noqa: E501 319 :type: str 320 """ 321 322 self._workflow_label = workflow_label 323 324 @property 325 def workflow_resource_key(self): 326 """Gets the workflow_resource_key of this AccountIdentityVerificationWorkflow. # noqa: E501 327 328 # noqa: E501 329 330 :return: The workflow_resource_key of this AccountIdentityVerificationWorkflow. # noqa: E501 331 :rtype: str 332 """ 333 return self._workflow_resource_key 334 335 @workflow_resource_key.setter 336 def workflow_resource_key(self, workflow_resource_key): 337 """Sets the workflow_resource_key of this AccountIdentityVerificationWorkflow. 338 339 # noqa: E501 340 341 :param workflow_resource_key: The workflow_resource_key of this AccountIdentityVerificationWorkflow. # noqa: E501 342 :type: str 343 """ 344 345 self._workflow_resource_key = workflow_resource_key 346 347 def to_dict(self): 348 """Returns the model properties as a dict""" 349 result = {} 350 351 for attr, _ in six.iteritems(self.swagger_types): 352 value = getattr(self, attr) 353 if isinstance(value, list): 354 result[attr] = list(map( 355 lambda x: x.to_dict() if hasattr(x, "to_dict") else x, 356 value 357 )) 358 elif hasattr(value, "to_dict"): 359 result[attr] = value.to_dict() 360 elif isinstance(value, dict): 361 result[attr] = dict(map( 362 lambda item: (item[0], item[1].to_dict()) 363 if hasattr(item[1], "to_dict") else item, 364 value.items() 365 )) 366 else: 367 result[attr] = value 368 if issubclass(AccountIdentityVerificationWorkflow, dict): 369 for key, value in self.items(): 370 result[key] = value 371 372 return result 373 374 def to_str(self): 375 """Returns the string representation of the model""" 376 return pprint.pformat(self.to_dict()) 377 378 def __repr__(self): 379 """For `print` and `pprint`""" 380 return self.to_str() 381 382 def __eq__(self, other): 383 """Returns true if both objects are equal""" 384 if not isinstance(other, AccountIdentityVerificationWorkflow): 385 return False 386 387 return self.to_dict() == other.to_dict() 388 389 def __ne__(self, other): 390 """Returns true if both objects are not equal""" 391 if not isinstance(other, AccountIdentityVerificationWorkflow): 392 return True 393 394 return self.to_dict() != other.to_dict()
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 'display_order': 'str', 40 'input_options': 'list[AccountIdentityInputOption]', 41 'is_disabled': 'str', 42 'owner_type': 'str', 43 'signature_provider': 'AccountSignatureProvider', 44 'steps': 'list[AccountIdentityVerificationStep]', 45 'workflow_id': 'str', 46 'workflow_label': 'str', 47 'workflow_resource_key': 'str' 48 } 49 50 attribute_map = { 51 'default_description': 'defaultDescription', 52 'default_name': 'defaultName', 53 'display_order': 'displayOrder', 54 'input_options': 'inputOptions', 55 'is_disabled': 'isDisabled', 56 'owner_type': 'ownerType', 57 'signature_provider': 'signatureProvider', 58 'steps': 'steps', 59 'workflow_id': 'workflowId', 60 'workflow_label': 'workflowLabel', 61 'workflow_resource_key': 'workflowResourceKey' 62 } 63 64 def __init__(self, _configuration=None, **kwargs): # noqa: E501 65 """AccountIdentityVerificationWorkflow - a model defined in Swagger""" # noqa: E501 66 if _configuration is None: 67 _configuration = Configuration() 68 self._configuration = _configuration 69 70 self._default_description = None 71 self._default_name = None 72 self._display_order = None 73 self._input_options = None 74 self._is_disabled = None 75 self._owner_type = None 76 self._signature_provider = None 77 self._steps = None 78 self._workflow_id = None 79 self._workflow_label = None 80 self._workflow_resource_key = None 81 self.discriminator = None 82 83 setattr(self, "_{}".format('default_description'), kwargs.get('default_description', None)) 84 setattr(self, "_{}".format('default_name'), kwargs.get('default_name', None)) 85 setattr(self, "_{}".format('display_order'), kwargs.get('display_order', None)) 86 setattr(self, "_{}".format('input_options'), kwargs.get('input_options', None)) 87 setattr(self, "_{}".format('is_disabled'), kwargs.get('is_disabled', None)) 88 setattr(self, "_{}".format('owner_type'), kwargs.get('owner_type', None)) 89 setattr(self, "_{}".format('signature_provider'), kwargs.get('signature_provider', None)) 90 setattr(self, "_{}".format('steps'), kwargs.get('steps', None)) 91 setattr(self, "_{}".format('workflow_id'), kwargs.get('workflow_id', None)) 92 setattr(self, "_{}".format('workflow_label'), kwargs.get('workflow_label', None)) 93 setattr(self, "_{}".format('workflow_resource_key'), kwargs.get('workflow_resource_key', None)) 94 95 @property 96 def default_description(self): 97 """Gets the default_description of this AccountIdentityVerificationWorkflow. # noqa: E501 98 99 # noqa: E501 100 101 :return: The default_description of this AccountIdentityVerificationWorkflow. # noqa: E501 102 :rtype: str 103 """ 104 return self._default_description 105 106 @default_description.setter 107 def default_description(self, default_description): 108 """Sets the default_description of this AccountIdentityVerificationWorkflow. 109 110 # noqa: E501 111 112 :param default_description: The default_description of this AccountIdentityVerificationWorkflow. # noqa: E501 113 :type: str 114 """ 115 116 self._default_description = default_description 117 118 @property 119 def default_name(self): 120 """Gets the default_name of this AccountIdentityVerificationWorkflow. # noqa: E501 121 122 # noqa: E501 123 124 :return: The default_name of this AccountIdentityVerificationWorkflow. # noqa: E501 125 :rtype: str 126 """ 127 return self._default_name 128 129 @default_name.setter 130 def default_name(self, default_name): 131 """Sets the default_name of this AccountIdentityVerificationWorkflow. 132 133 # noqa: E501 134 135 :param default_name: The default_name of this AccountIdentityVerificationWorkflow. # noqa: E501 136 :type: str 137 """ 138 139 self._default_name = default_name 140 141 @property 142 def display_order(self): 143 """Gets the display_order of this AccountIdentityVerificationWorkflow. # noqa: E501 144 145 # noqa: E501 146 147 :return: The display_order of this AccountIdentityVerificationWorkflow. # noqa: E501 148 :rtype: str 149 """ 150 return self._display_order 151 152 @display_order.setter 153 def display_order(self, display_order): 154 """Sets the display_order of this AccountIdentityVerificationWorkflow. 155 156 # noqa: E501 157 158 :param display_order: The display_order of this AccountIdentityVerificationWorkflow. # noqa: E501 159 :type: str 160 """ 161 162 self._display_order = display_order 163 164 @property 165 def input_options(self): 166 """Gets the input_options of this AccountIdentityVerificationWorkflow. # noqa: E501 167 168 # noqa: E501 169 170 :return: The input_options of this AccountIdentityVerificationWorkflow. # noqa: E501 171 :rtype: list[AccountIdentityInputOption] 172 """ 173 return self._input_options 174 175 @input_options.setter 176 def input_options(self, input_options): 177 """Sets the input_options of this AccountIdentityVerificationWorkflow. 178 179 # noqa: E501 180 181 :param input_options: The input_options of this AccountIdentityVerificationWorkflow. # noqa: E501 182 :type: list[AccountIdentityInputOption] 183 """ 184 185 self._input_options = input_options 186 187 @property 188 def is_disabled(self): 189 """Gets the is_disabled of this AccountIdentityVerificationWorkflow. # noqa: E501 190 191 # noqa: E501 192 193 :return: The is_disabled of this AccountIdentityVerificationWorkflow. # noqa: E501 194 :rtype: str 195 """ 196 return self._is_disabled 197 198 @is_disabled.setter 199 def is_disabled(self, is_disabled): 200 """Sets the is_disabled of this AccountIdentityVerificationWorkflow. 201 202 # noqa: E501 203 204 :param is_disabled: The is_disabled of this AccountIdentityVerificationWorkflow. # noqa: E501 205 :type: str 206 """ 207 208 self._is_disabled = is_disabled 209 210 @property 211 def owner_type(self): 212 """Gets the owner_type of this AccountIdentityVerificationWorkflow. # noqa: E501 213 214 # noqa: E501 215 216 :return: The owner_type of this AccountIdentityVerificationWorkflow. # noqa: E501 217 :rtype: str 218 """ 219 return self._owner_type 220 221 @owner_type.setter 222 def owner_type(self, owner_type): 223 """Sets the owner_type of this AccountIdentityVerificationWorkflow. 224 225 # noqa: E501 226 227 :param owner_type: The owner_type of this AccountIdentityVerificationWorkflow. # noqa: E501 228 :type: str 229 """ 230 231 self._owner_type = owner_type 232 233 @property 234 def signature_provider(self): 235 """Gets the signature_provider of this AccountIdentityVerificationWorkflow. # noqa: E501 236 237 The signature provider associated with the Identity Verification workflow. # noqa: E501 238 239 :return: The signature_provider of this AccountIdentityVerificationWorkflow. # noqa: E501 240 :rtype: AccountSignatureProvider 241 """ 242 return self._signature_provider 243 244 @signature_provider.setter 245 def signature_provider(self, signature_provider): 246 """Sets the signature_provider of this AccountIdentityVerificationWorkflow. 247 248 The signature provider associated with the Identity Verification workflow. # noqa: E501 249 250 :param signature_provider: The signature_provider of this AccountIdentityVerificationWorkflow. # noqa: E501 251 :type: AccountSignatureProvider 252 """ 253 254 self._signature_provider = signature_provider 255 256 @property 257 def steps(self): 258 """Gets the steps of this AccountIdentityVerificationWorkflow. # noqa: E501 259 260 # noqa: E501 261 262 :return: The steps of this AccountIdentityVerificationWorkflow. # noqa: E501 263 :rtype: list[AccountIdentityVerificationStep] 264 """ 265 return self._steps 266 267 @steps.setter 268 def steps(self, steps): 269 """Sets the steps of this AccountIdentityVerificationWorkflow. 270 271 # noqa: E501 272 273 :param steps: The steps of this AccountIdentityVerificationWorkflow. # noqa: E501 274 :type: list[AccountIdentityVerificationStep] 275 """ 276 277 self._steps = steps 278 279 @property 280 def workflow_id(self): 281 """Gets the workflow_id of this AccountIdentityVerificationWorkflow. # noqa: E501 282 283 # noqa: E501 284 285 :return: The workflow_id of this AccountIdentityVerificationWorkflow. # noqa: E501 286 :rtype: str 287 """ 288 return self._workflow_id 289 290 @workflow_id.setter 291 def workflow_id(self, workflow_id): 292 """Sets the workflow_id of this AccountIdentityVerificationWorkflow. 293 294 # noqa: E501 295 296 :param workflow_id: The workflow_id of this AccountIdentityVerificationWorkflow. # noqa: E501 297 :type: str 298 """ 299 300 self._workflow_id = workflow_id 301 302 @property 303 def workflow_label(self): 304 """Gets the workflow_label of this AccountIdentityVerificationWorkflow. # noqa: E501 305 306 # noqa: E501 307 308 :return: The workflow_label of this AccountIdentityVerificationWorkflow. # noqa: E501 309 :rtype: str 310 """ 311 return self._workflow_label 312 313 @workflow_label.setter 314 def workflow_label(self, workflow_label): 315 """Sets the workflow_label of this AccountIdentityVerificationWorkflow. 316 317 # noqa: E501 318 319 :param workflow_label: The workflow_label of this AccountIdentityVerificationWorkflow. # noqa: E501 320 :type: str 321 """ 322 323 self._workflow_label = workflow_label 324 325 @property 326 def workflow_resource_key(self): 327 """Gets the workflow_resource_key of this AccountIdentityVerificationWorkflow. # noqa: E501 328 329 # noqa: E501 330 331 :return: The workflow_resource_key of this AccountIdentityVerificationWorkflow. # noqa: E501 332 :rtype: str 333 """ 334 return self._workflow_resource_key 335 336 @workflow_resource_key.setter 337 def workflow_resource_key(self, workflow_resource_key): 338 """Sets the workflow_resource_key of this AccountIdentityVerificationWorkflow. 339 340 # noqa: E501 341 342 :param workflow_resource_key: The workflow_resource_key of this AccountIdentityVerificationWorkflow. # noqa: E501 343 :type: str 344 """ 345 346 self._workflow_resource_key = workflow_resource_key 347 348 def to_dict(self): 349 """Returns the model properties as a dict""" 350 result = {} 351 352 for attr, _ in six.iteritems(self.swagger_types): 353 value = getattr(self, attr) 354 if isinstance(value, list): 355 result[attr] = list(map( 356 lambda x: x.to_dict() if hasattr(x, "to_dict") else x, 357 value 358 )) 359 elif hasattr(value, "to_dict"): 360 result[attr] = value.to_dict() 361 elif isinstance(value, dict): 362 result[attr] = dict(map( 363 lambda item: (item[0], item[1].to_dict()) 364 if hasattr(item[1], "to_dict") else item, 365 value.items() 366 )) 367 else: 368 result[attr] = value 369 if issubclass(AccountIdentityVerificationWorkflow, dict): 370 for key, value in self.items(): 371 result[key] = value 372 373 return result 374 375 def to_str(self): 376 """Returns the string representation of the model""" 377 return pprint.pformat(self.to_dict()) 378 379 def __repr__(self): 380 """For `print` and `pprint`""" 381 return self.to_str() 382 383 def __eq__(self, other): 384 """Returns true if both objects are equal""" 385 if not isinstance(other, AccountIdentityVerificationWorkflow): 386 return False 387 388 return self.to_dict() == other.to_dict() 389 390 def __ne__(self, other): 391 """Returns true if both objects are not equal""" 392 if not isinstance(other, AccountIdentityVerificationWorkflow): 393 return True 394 395 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.
64 def __init__(self, _configuration=None, **kwargs): # noqa: E501 65 """AccountIdentityVerificationWorkflow - a model defined in Swagger""" # noqa: E501 66 if _configuration is None: 67 _configuration = Configuration() 68 self._configuration = _configuration 69 70 self._default_description = None 71 self._default_name = None 72 self._display_order = None 73 self._input_options = None 74 self._is_disabled = None 75 self._owner_type = None 76 self._signature_provider = None 77 self._steps = None 78 self._workflow_id = None 79 self._workflow_label = None 80 self._workflow_resource_key = None 81 self.discriminator = None 82 83 setattr(self, "_{}".format('default_description'), kwargs.get('default_description', None)) 84 setattr(self, "_{}".format('default_name'), kwargs.get('default_name', None)) 85 setattr(self, "_{}".format('display_order'), kwargs.get('display_order', None)) 86 setattr(self, "_{}".format('input_options'), kwargs.get('input_options', None)) 87 setattr(self, "_{}".format('is_disabled'), kwargs.get('is_disabled', None)) 88 setattr(self, "_{}".format('owner_type'), kwargs.get('owner_type', None)) 89 setattr(self, "_{}".format('signature_provider'), kwargs.get('signature_provider', None)) 90 setattr(self, "_{}".format('steps'), kwargs.get('steps', None)) 91 setattr(self, "_{}".format('workflow_id'), kwargs.get('workflow_id', None)) 92 setattr(self, "_{}".format('workflow_label'), kwargs.get('workflow_label', None)) 93 setattr(self, "_{}".format('workflow_resource_key'), kwargs.get('workflow_resource_key', None))
AccountIdentityVerificationWorkflow - a model defined in Swagger
Gets the default_description of this AccountIdentityVerificationWorkflow. # noqa: E501
# noqa: E501
Returns
The default_description of this AccountIdentityVerificationWorkflow. # noqa: E501
Gets the default_name of this AccountIdentityVerificationWorkflow. # noqa: E501
# noqa: E501
Returns
The default_name of this AccountIdentityVerificationWorkflow. # noqa: E501
Gets the display_order of this AccountIdentityVerificationWorkflow. # noqa: E501
# noqa: E501
Returns
The display_order of this AccountIdentityVerificationWorkflow. # noqa: E501
Gets the input_options of this AccountIdentityVerificationWorkflow. # noqa: E501
# noqa: E501
Returns
The input_options of this AccountIdentityVerificationWorkflow. # noqa: E501
Gets the is_disabled of this AccountIdentityVerificationWorkflow. # noqa: E501
# noqa: E501
Returns
The is_disabled of this AccountIdentityVerificationWorkflow. # noqa: E501
Gets the owner_type of this AccountIdentityVerificationWorkflow. # noqa: E501
# noqa: E501
Returns
The owner_type of this AccountIdentityVerificationWorkflow. # noqa: E501
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
Gets the steps of this AccountIdentityVerificationWorkflow. # noqa: E501
# noqa: E501
Returns
The steps of this AccountIdentityVerificationWorkflow. # noqa: E501
Gets the workflow_id of this AccountIdentityVerificationWorkflow. # noqa: E501
# noqa: E501
Returns
The workflow_id of this AccountIdentityVerificationWorkflow. # noqa: E501
Gets the workflow_label of this AccountIdentityVerificationWorkflow. # noqa: E501
# noqa: E501
Returns
The workflow_label of this AccountIdentityVerificationWorkflow. # noqa: E501
Gets the workflow_resource_key of this AccountIdentityVerificationWorkflow. # noqa: E501
# noqa: E501
Returns
The workflow_resource_key of this AccountIdentityVerificationWorkflow. # noqa: E501
348 def to_dict(self): 349 """Returns the model properties as a dict""" 350 result = {} 351 352 for attr, _ in six.iteritems(self.swagger_types): 353 value = getattr(self, attr) 354 if isinstance(value, list): 355 result[attr] = list(map( 356 lambda x: x.to_dict() if hasattr(x, "to_dict") else x, 357 value 358 )) 359 elif hasattr(value, "to_dict"): 360 result[attr] = value.to_dict() 361 elif isinstance(value, dict): 362 result[attr] = dict(map( 363 lambda item: (item[0], item[1].to_dict()) 364 if hasattr(item[1], "to_dict") else item, 365 value.items() 366 )) 367 else: 368 result[attr] = value 369 if issubclass(AccountIdentityVerificationWorkflow, dict): 370 for key, value in self.items(): 371 result[key] = value 372 373 return result
Returns the model properties as a dict