docusign_esign.models.account_ui_settings
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 AccountUISettings(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 'admin_message': 'AdminMessage', 37 'allow_users_to_edit_shared_access': 'str', 38 'allow_users_to_edit_shared_access_metadata': 'SettingsMetadata', 39 'ask_an_admin': 'AskAnAdmin', 40 'clickwrap_schema_version': 'str', 41 'clickwrap_schema_version_metadata': 'SettingsMetadata', 42 'enable_admin_message': 'str', 43 'enable_admin_message_metadata': 'SettingsMetadata', 44 'enable_easy_sign_can_use_multi_template_apply': 'str', 45 'enable_easy_sign_can_use_multi_template_apply_metadata': 'SettingsMetadata', 46 'enable_easy_sign_template_upload': 'str', 47 'enable_easy_sign_template_upload_metadata': 'SettingsMetadata', 48 'enable_envelope_copy_with_data': 'str', 49 'enable_envelope_copy_with_data_metadata': 'SettingsMetadata', 50 'enable_envelope_types': 'str', 51 'enable_envelope_types_metadata': 'SettingsMetadata', 52 'enable_legacy_sendflow_link': 'str', 53 'enable_legacy_sendflow_link_metadata': 'SettingsMetadata', 54 'has_external_linked_accounts': 'str', 55 'has_external_linked_accounts_metadata': 'SettingsMetadata', 56 'hide_send_an_envelope': 'str', 57 'hide_send_an_envelope_metadata': 'SettingsMetadata', 58 'hide_use_a_template': 'str', 59 'hide_use_a_template_in_prepare': 'str', 60 'hide_use_a_template_in_prepare_metadata': 'SettingsMetadata', 61 'hide_use_a_template_metadata': 'SettingsMetadata', 62 'order_based_recipient_id_generation': 'str', 63 'order_based_recipient_id_generation_metadata': 'SettingsMetadata', 64 'remove_envelope_forwarding': 'str', 65 'remove_envelope_forwarding_metadata': 'SettingsMetadata', 66 'should_redact_access_code': 'str', 67 'should_redact_access_code_metadata': 'SettingsMetadata', 68 'upload_new_image_to_sign_or_initial': 'str', 69 'upload_new_image_to_sign_or_initial_metadata': 'SettingsMetadata' 70 } 71 72 attribute_map = { 73 'admin_message': 'adminMessage', 74 'allow_users_to_edit_shared_access': 'allowUsersToEditSharedAccess', 75 'allow_users_to_edit_shared_access_metadata': 'allowUsersToEditSharedAccessMetadata', 76 'ask_an_admin': 'askAnAdmin', 77 'clickwrap_schema_version': 'clickwrapSchemaVersion', 78 'clickwrap_schema_version_metadata': 'clickwrapSchemaVersionMetadata', 79 'enable_admin_message': 'enableAdminMessage', 80 'enable_admin_message_metadata': 'enableAdminMessageMetadata', 81 'enable_easy_sign_can_use_multi_template_apply': 'enableEasySignCanUseMultiTemplateApply', 82 'enable_easy_sign_can_use_multi_template_apply_metadata': 'enableEasySignCanUseMultiTemplateApplyMetadata', 83 'enable_easy_sign_template_upload': 'enableEasySignTemplateUpload', 84 'enable_easy_sign_template_upload_metadata': 'enableEasySignTemplateUploadMetadata', 85 'enable_envelope_copy_with_data': 'enableEnvelopeCopyWithData', 86 'enable_envelope_copy_with_data_metadata': 'enableEnvelopeCopyWithDataMetadata', 87 'enable_envelope_types': 'enableEnvelopeTypes', 88 'enable_envelope_types_metadata': 'enableEnvelopeTypesMetadata', 89 'enable_legacy_sendflow_link': 'enableLegacySendflowLink', 90 'enable_legacy_sendflow_link_metadata': 'enableLegacySendflowLinkMetadata', 91 'has_external_linked_accounts': 'hasExternalLinkedAccounts', 92 'has_external_linked_accounts_metadata': 'hasExternalLinkedAccountsMetadata', 93 'hide_send_an_envelope': 'hideSendAnEnvelope', 94 'hide_send_an_envelope_metadata': 'hideSendAnEnvelopeMetadata', 95 'hide_use_a_template': 'hideUseATemplate', 96 'hide_use_a_template_in_prepare': 'hideUseATemplateInPrepare', 97 'hide_use_a_template_in_prepare_metadata': 'hideUseATemplateInPrepareMetadata', 98 'hide_use_a_template_metadata': 'hideUseATemplateMetadata', 99 'order_based_recipient_id_generation': 'orderBasedRecipientIdGeneration', 100 'order_based_recipient_id_generation_metadata': 'orderBasedRecipientIdGenerationMetadata', 101 'remove_envelope_forwarding': 'removeEnvelopeForwarding', 102 'remove_envelope_forwarding_metadata': 'removeEnvelopeForwardingMetadata', 103 'should_redact_access_code': 'shouldRedactAccessCode', 104 'should_redact_access_code_metadata': 'shouldRedactAccessCodeMetadata', 105 'upload_new_image_to_sign_or_initial': 'uploadNewImageToSignOrInitial', 106 'upload_new_image_to_sign_or_initial_metadata': 'uploadNewImageToSignOrInitialMetadata' 107 } 108 109 def __init__(self, _configuration=None, **kwargs): # noqa: E501 110 """AccountUISettings - a model defined in Swagger""" # noqa: E501 111 if _configuration is None: 112 _configuration = Configuration() 113 self._configuration = _configuration 114 115 self._admin_message = None 116 self._allow_users_to_edit_shared_access = None 117 self._allow_users_to_edit_shared_access_metadata = None 118 self._ask_an_admin = None 119 self._clickwrap_schema_version = None 120 self._clickwrap_schema_version_metadata = None 121 self._enable_admin_message = None 122 self._enable_admin_message_metadata = None 123 self._enable_easy_sign_can_use_multi_template_apply = None 124 self._enable_easy_sign_can_use_multi_template_apply_metadata = None 125 self._enable_easy_sign_template_upload = None 126 self._enable_easy_sign_template_upload_metadata = None 127 self._enable_envelope_copy_with_data = None 128 self._enable_envelope_copy_with_data_metadata = None 129 self._enable_envelope_types = None 130 self._enable_envelope_types_metadata = None 131 self._enable_legacy_sendflow_link = None 132 self._enable_legacy_sendflow_link_metadata = None 133 self._has_external_linked_accounts = None 134 self._has_external_linked_accounts_metadata = None 135 self._hide_send_an_envelope = None 136 self._hide_send_an_envelope_metadata = None 137 self._hide_use_a_template = None 138 self._hide_use_a_template_in_prepare = None 139 self._hide_use_a_template_in_prepare_metadata = None 140 self._hide_use_a_template_metadata = None 141 self._order_based_recipient_id_generation = None 142 self._order_based_recipient_id_generation_metadata = None 143 self._remove_envelope_forwarding = None 144 self._remove_envelope_forwarding_metadata = None 145 self._should_redact_access_code = None 146 self._should_redact_access_code_metadata = None 147 self._upload_new_image_to_sign_or_initial = None 148 self._upload_new_image_to_sign_or_initial_metadata = None 149 self.discriminator = None 150 151 setattr(self, "_{}".format('admin_message'), kwargs.get('admin_message', None)) 152 setattr(self, "_{}".format('allow_users_to_edit_shared_access'), kwargs.get('allow_users_to_edit_shared_access', None)) 153 setattr(self, "_{}".format('allow_users_to_edit_shared_access_metadata'), kwargs.get('allow_users_to_edit_shared_access_metadata', None)) 154 setattr(self, "_{}".format('ask_an_admin'), kwargs.get('ask_an_admin', None)) 155 setattr(self, "_{}".format('clickwrap_schema_version'), kwargs.get('clickwrap_schema_version', None)) 156 setattr(self, "_{}".format('clickwrap_schema_version_metadata'), kwargs.get('clickwrap_schema_version_metadata', None)) 157 setattr(self, "_{}".format('enable_admin_message'), kwargs.get('enable_admin_message', None)) 158 setattr(self, "_{}".format('enable_admin_message_metadata'), kwargs.get('enable_admin_message_metadata', None)) 159 setattr(self, "_{}".format('enable_easy_sign_can_use_multi_template_apply'), kwargs.get('enable_easy_sign_can_use_multi_template_apply', None)) 160 setattr(self, "_{}".format('enable_easy_sign_can_use_multi_template_apply_metadata'), kwargs.get('enable_easy_sign_can_use_multi_template_apply_metadata', None)) 161 setattr(self, "_{}".format('enable_easy_sign_template_upload'), kwargs.get('enable_easy_sign_template_upload', None)) 162 setattr(self, "_{}".format('enable_easy_sign_template_upload_metadata'), kwargs.get('enable_easy_sign_template_upload_metadata', None)) 163 setattr(self, "_{}".format('enable_envelope_copy_with_data'), kwargs.get('enable_envelope_copy_with_data', None)) 164 setattr(self, "_{}".format('enable_envelope_copy_with_data_metadata'), kwargs.get('enable_envelope_copy_with_data_metadata', None)) 165 setattr(self, "_{}".format('enable_envelope_types'), kwargs.get('enable_envelope_types', None)) 166 setattr(self, "_{}".format('enable_envelope_types_metadata'), kwargs.get('enable_envelope_types_metadata', None)) 167 setattr(self, "_{}".format('enable_legacy_sendflow_link'), kwargs.get('enable_legacy_sendflow_link', None)) 168 setattr(self, "_{}".format('enable_legacy_sendflow_link_metadata'), kwargs.get('enable_legacy_sendflow_link_metadata', None)) 169 setattr(self, "_{}".format('has_external_linked_accounts'), kwargs.get('has_external_linked_accounts', None)) 170 setattr(self, "_{}".format('has_external_linked_accounts_metadata'), kwargs.get('has_external_linked_accounts_metadata', None)) 171 setattr(self, "_{}".format('hide_send_an_envelope'), kwargs.get('hide_send_an_envelope', None)) 172 setattr(self, "_{}".format('hide_send_an_envelope_metadata'), kwargs.get('hide_send_an_envelope_metadata', None)) 173 setattr(self, "_{}".format('hide_use_a_template'), kwargs.get('hide_use_a_template', None)) 174 setattr(self, "_{}".format('hide_use_a_template_in_prepare'), kwargs.get('hide_use_a_template_in_prepare', None)) 175 setattr(self, "_{}".format('hide_use_a_template_in_prepare_metadata'), kwargs.get('hide_use_a_template_in_prepare_metadata', None)) 176 setattr(self, "_{}".format('hide_use_a_template_metadata'), kwargs.get('hide_use_a_template_metadata', None)) 177 setattr(self, "_{}".format('order_based_recipient_id_generation'), kwargs.get('order_based_recipient_id_generation', None)) 178 setattr(self, "_{}".format('order_based_recipient_id_generation_metadata'), kwargs.get('order_based_recipient_id_generation_metadata', None)) 179 setattr(self, "_{}".format('remove_envelope_forwarding'), kwargs.get('remove_envelope_forwarding', None)) 180 setattr(self, "_{}".format('remove_envelope_forwarding_metadata'), kwargs.get('remove_envelope_forwarding_metadata', None)) 181 setattr(self, "_{}".format('should_redact_access_code'), kwargs.get('should_redact_access_code', None)) 182 setattr(self, "_{}".format('should_redact_access_code_metadata'), kwargs.get('should_redact_access_code_metadata', None)) 183 setattr(self, "_{}".format('upload_new_image_to_sign_or_initial'), kwargs.get('upload_new_image_to_sign_or_initial', None)) 184 setattr(self, "_{}".format('upload_new_image_to_sign_or_initial_metadata'), kwargs.get('upload_new_image_to_sign_or_initial_metadata', None)) 185 186 @property 187 def admin_message(self): 188 """Gets the admin_message of this AccountUISettings. # noqa: E501 189 190 # noqa: E501 191 192 :return: The admin_message of this AccountUISettings. # noqa: E501 193 :rtype: AdminMessage 194 """ 195 return self._admin_message 196 197 @admin_message.setter 198 def admin_message(self, admin_message): 199 """Sets the admin_message of this AccountUISettings. 200 201 # noqa: E501 202 203 :param admin_message: The admin_message of this AccountUISettings. # noqa: E501 204 :type: AdminMessage 205 """ 206 207 self._admin_message = admin_message 208 209 @property 210 def allow_users_to_edit_shared_access(self): 211 """Gets the allow_users_to_edit_shared_access of this AccountUISettings. # noqa: E501 212 213 # noqa: E501 214 215 :return: The allow_users_to_edit_shared_access of this AccountUISettings. # noqa: E501 216 :rtype: str 217 """ 218 return self._allow_users_to_edit_shared_access 219 220 @allow_users_to_edit_shared_access.setter 221 def allow_users_to_edit_shared_access(self, allow_users_to_edit_shared_access): 222 """Sets the allow_users_to_edit_shared_access of this AccountUISettings. 223 224 # noqa: E501 225 226 :param allow_users_to_edit_shared_access: The allow_users_to_edit_shared_access of this AccountUISettings. # noqa: E501 227 :type: str 228 """ 229 230 self._allow_users_to_edit_shared_access = allow_users_to_edit_shared_access 231 232 @property 233 def allow_users_to_edit_shared_access_metadata(self): 234 """Gets the allow_users_to_edit_shared_access_metadata of this AccountUISettings. # noqa: E501 235 236 # noqa: E501 237 238 :return: The allow_users_to_edit_shared_access_metadata of this AccountUISettings. # noqa: E501 239 :rtype: SettingsMetadata 240 """ 241 return self._allow_users_to_edit_shared_access_metadata 242 243 @allow_users_to_edit_shared_access_metadata.setter 244 def allow_users_to_edit_shared_access_metadata(self, allow_users_to_edit_shared_access_metadata): 245 """Sets the allow_users_to_edit_shared_access_metadata of this AccountUISettings. 246 247 # noqa: E501 248 249 :param allow_users_to_edit_shared_access_metadata: The allow_users_to_edit_shared_access_metadata of this AccountUISettings. # noqa: E501 250 :type: SettingsMetadata 251 """ 252 253 self._allow_users_to_edit_shared_access_metadata = allow_users_to_edit_shared_access_metadata 254 255 @property 256 def ask_an_admin(self): 257 """Gets the ask_an_admin of this AccountUISettings. # noqa: E501 258 259 # noqa: E501 260 261 :return: The ask_an_admin of this AccountUISettings. # noqa: E501 262 :rtype: AskAnAdmin 263 """ 264 return self._ask_an_admin 265 266 @ask_an_admin.setter 267 def ask_an_admin(self, ask_an_admin): 268 """Sets the ask_an_admin of this AccountUISettings. 269 270 # noqa: E501 271 272 :param ask_an_admin: The ask_an_admin of this AccountUISettings. # noqa: E501 273 :type: AskAnAdmin 274 """ 275 276 self._ask_an_admin = ask_an_admin 277 278 @property 279 def clickwrap_schema_version(self): 280 """Gets the clickwrap_schema_version of this AccountUISettings. # noqa: E501 281 282 # noqa: E501 283 284 :return: The clickwrap_schema_version of this AccountUISettings. # noqa: E501 285 :rtype: str 286 """ 287 return self._clickwrap_schema_version 288 289 @clickwrap_schema_version.setter 290 def clickwrap_schema_version(self, clickwrap_schema_version): 291 """Sets the clickwrap_schema_version of this AccountUISettings. 292 293 # noqa: E501 294 295 :param clickwrap_schema_version: The clickwrap_schema_version of this AccountUISettings. # noqa: E501 296 :type: str 297 """ 298 299 self._clickwrap_schema_version = clickwrap_schema_version 300 301 @property 302 def clickwrap_schema_version_metadata(self): 303 """Gets the clickwrap_schema_version_metadata of this AccountUISettings. # noqa: E501 304 305 # noqa: E501 306 307 :return: The clickwrap_schema_version_metadata of this AccountUISettings. # noqa: E501 308 :rtype: SettingsMetadata 309 """ 310 return self._clickwrap_schema_version_metadata 311 312 @clickwrap_schema_version_metadata.setter 313 def clickwrap_schema_version_metadata(self, clickwrap_schema_version_metadata): 314 """Sets the clickwrap_schema_version_metadata of this AccountUISettings. 315 316 # noqa: E501 317 318 :param clickwrap_schema_version_metadata: The clickwrap_schema_version_metadata of this AccountUISettings. # noqa: E501 319 :type: SettingsMetadata 320 """ 321 322 self._clickwrap_schema_version_metadata = clickwrap_schema_version_metadata 323 324 @property 325 def enable_admin_message(self): 326 """Gets the enable_admin_message of this AccountUISettings. # noqa: E501 327 328 # noqa: E501 329 330 :return: The enable_admin_message of this AccountUISettings. # noqa: E501 331 :rtype: str 332 """ 333 return self._enable_admin_message 334 335 @enable_admin_message.setter 336 def enable_admin_message(self, enable_admin_message): 337 """Sets the enable_admin_message of this AccountUISettings. 338 339 # noqa: E501 340 341 :param enable_admin_message: The enable_admin_message of this AccountUISettings. # noqa: E501 342 :type: str 343 """ 344 345 self._enable_admin_message = enable_admin_message 346 347 @property 348 def enable_admin_message_metadata(self): 349 """Gets the enable_admin_message_metadata of this AccountUISettings. # noqa: E501 350 351 # noqa: E501 352 353 :return: The enable_admin_message_metadata of this AccountUISettings. # noqa: E501 354 :rtype: SettingsMetadata 355 """ 356 return self._enable_admin_message_metadata 357 358 @enable_admin_message_metadata.setter 359 def enable_admin_message_metadata(self, enable_admin_message_metadata): 360 """Sets the enable_admin_message_metadata of this AccountUISettings. 361 362 # noqa: E501 363 364 :param enable_admin_message_metadata: The enable_admin_message_metadata of this AccountUISettings. # noqa: E501 365 :type: SettingsMetadata 366 """ 367 368 self._enable_admin_message_metadata = enable_admin_message_metadata 369 370 @property 371 def enable_easy_sign_can_use_multi_template_apply(self): 372 """Gets the enable_easy_sign_can_use_multi_template_apply of this AccountUISettings. # noqa: E501 373 374 # noqa: E501 375 376 :return: The enable_easy_sign_can_use_multi_template_apply of this AccountUISettings. # noqa: E501 377 :rtype: str 378 """ 379 return self._enable_easy_sign_can_use_multi_template_apply 380 381 @enable_easy_sign_can_use_multi_template_apply.setter 382 def enable_easy_sign_can_use_multi_template_apply(self, enable_easy_sign_can_use_multi_template_apply): 383 """Sets the enable_easy_sign_can_use_multi_template_apply of this AccountUISettings. 384 385 # noqa: E501 386 387 :param enable_easy_sign_can_use_multi_template_apply: The enable_easy_sign_can_use_multi_template_apply of this AccountUISettings. # noqa: E501 388 :type: str 389 """ 390 391 self._enable_easy_sign_can_use_multi_template_apply = enable_easy_sign_can_use_multi_template_apply 392 393 @property 394 def enable_easy_sign_can_use_multi_template_apply_metadata(self): 395 """Gets the enable_easy_sign_can_use_multi_template_apply_metadata of this AccountUISettings. # noqa: E501 396 397 # noqa: E501 398 399 :return: The enable_easy_sign_can_use_multi_template_apply_metadata of this AccountUISettings. # noqa: E501 400 :rtype: SettingsMetadata 401 """ 402 return self._enable_easy_sign_can_use_multi_template_apply_metadata 403 404 @enable_easy_sign_can_use_multi_template_apply_metadata.setter 405 def enable_easy_sign_can_use_multi_template_apply_metadata(self, enable_easy_sign_can_use_multi_template_apply_metadata): 406 """Sets the enable_easy_sign_can_use_multi_template_apply_metadata of this AccountUISettings. 407 408 # noqa: E501 409 410 :param enable_easy_sign_can_use_multi_template_apply_metadata: The enable_easy_sign_can_use_multi_template_apply_metadata of this AccountUISettings. # noqa: E501 411 :type: SettingsMetadata 412 """ 413 414 self._enable_easy_sign_can_use_multi_template_apply_metadata = enable_easy_sign_can_use_multi_template_apply_metadata 415 416 @property 417 def enable_easy_sign_template_upload(self): 418 """Gets the enable_easy_sign_template_upload of this AccountUISettings. # noqa: E501 419 420 # noqa: E501 421 422 :return: The enable_easy_sign_template_upload of this AccountUISettings. # noqa: E501 423 :rtype: str 424 """ 425 return self._enable_easy_sign_template_upload 426 427 @enable_easy_sign_template_upload.setter 428 def enable_easy_sign_template_upload(self, enable_easy_sign_template_upload): 429 """Sets the enable_easy_sign_template_upload of this AccountUISettings. 430 431 # noqa: E501 432 433 :param enable_easy_sign_template_upload: The enable_easy_sign_template_upload of this AccountUISettings. # noqa: E501 434 :type: str 435 """ 436 437 self._enable_easy_sign_template_upload = enable_easy_sign_template_upload 438 439 @property 440 def enable_easy_sign_template_upload_metadata(self): 441 """Gets the enable_easy_sign_template_upload_metadata of this AccountUISettings. # noqa: E501 442 443 # noqa: E501 444 445 :return: The enable_easy_sign_template_upload_metadata of this AccountUISettings. # noqa: E501 446 :rtype: SettingsMetadata 447 """ 448 return self._enable_easy_sign_template_upload_metadata 449 450 @enable_easy_sign_template_upload_metadata.setter 451 def enable_easy_sign_template_upload_metadata(self, enable_easy_sign_template_upload_metadata): 452 """Sets the enable_easy_sign_template_upload_metadata of this AccountUISettings. 453 454 # noqa: E501 455 456 :param enable_easy_sign_template_upload_metadata: The enable_easy_sign_template_upload_metadata of this AccountUISettings. # noqa: E501 457 :type: SettingsMetadata 458 """ 459 460 self._enable_easy_sign_template_upload_metadata = enable_easy_sign_template_upload_metadata 461 462 @property 463 def enable_envelope_copy_with_data(self): 464 """Gets the enable_envelope_copy_with_data of this AccountUISettings. # noqa: E501 465 466 # noqa: E501 467 468 :return: The enable_envelope_copy_with_data of this AccountUISettings. # noqa: E501 469 :rtype: str 470 """ 471 return self._enable_envelope_copy_with_data 472 473 @enable_envelope_copy_with_data.setter 474 def enable_envelope_copy_with_data(self, enable_envelope_copy_with_data): 475 """Sets the enable_envelope_copy_with_data of this AccountUISettings. 476 477 # noqa: E501 478 479 :param enable_envelope_copy_with_data: The enable_envelope_copy_with_data of this AccountUISettings. # noqa: E501 480 :type: str 481 """ 482 483 self._enable_envelope_copy_with_data = enable_envelope_copy_with_data 484 485 @property 486 def enable_envelope_copy_with_data_metadata(self): 487 """Gets the enable_envelope_copy_with_data_metadata of this AccountUISettings. # noqa: E501 488 489 # noqa: E501 490 491 :return: The enable_envelope_copy_with_data_metadata of this AccountUISettings. # noqa: E501 492 :rtype: SettingsMetadata 493 """ 494 return self._enable_envelope_copy_with_data_metadata 495 496 @enable_envelope_copy_with_data_metadata.setter 497 def enable_envelope_copy_with_data_metadata(self, enable_envelope_copy_with_data_metadata): 498 """Sets the enable_envelope_copy_with_data_metadata of this AccountUISettings. 499 500 # noqa: E501 501 502 :param enable_envelope_copy_with_data_metadata: The enable_envelope_copy_with_data_metadata of this AccountUISettings. # noqa: E501 503 :type: SettingsMetadata 504 """ 505 506 self._enable_envelope_copy_with_data_metadata = enable_envelope_copy_with_data_metadata 507 508 @property 509 def enable_envelope_types(self): 510 """Gets the enable_envelope_types of this AccountUISettings. # noqa: E501 511 512 # noqa: E501 513 514 :return: The enable_envelope_types of this AccountUISettings. # noqa: E501 515 :rtype: str 516 """ 517 return self._enable_envelope_types 518 519 @enable_envelope_types.setter 520 def enable_envelope_types(self, enable_envelope_types): 521 """Sets the enable_envelope_types of this AccountUISettings. 522 523 # noqa: E501 524 525 :param enable_envelope_types: The enable_envelope_types of this AccountUISettings. # noqa: E501 526 :type: str 527 """ 528 529 self._enable_envelope_types = enable_envelope_types 530 531 @property 532 def enable_envelope_types_metadata(self): 533 """Gets the enable_envelope_types_metadata of this AccountUISettings. # noqa: E501 534 535 # noqa: E501 536 537 :return: The enable_envelope_types_metadata of this AccountUISettings. # noqa: E501 538 :rtype: SettingsMetadata 539 """ 540 return self._enable_envelope_types_metadata 541 542 @enable_envelope_types_metadata.setter 543 def enable_envelope_types_metadata(self, enable_envelope_types_metadata): 544 """Sets the enable_envelope_types_metadata of this AccountUISettings. 545 546 # noqa: E501 547 548 :param enable_envelope_types_metadata: The enable_envelope_types_metadata of this AccountUISettings. # noqa: E501 549 :type: SettingsMetadata 550 """ 551 552 self._enable_envelope_types_metadata = enable_envelope_types_metadata 553 554 @property 555 def enable_legacy_sendflow_link(self): 556 """Gets the enable_legacy_sendflow_link of this AccountUISettings. # noqa: E501 557 558 # noqa: E501 559 560 :return: The enable_legacy_sendflow_link of this AccountUISettings. # noqa: E501 561 :rtype: str 562 """ 563 return self._enable_legacy_sendflow_link 564 565 @enable_legacy_sendflow_link.setter 566 def enable_legacy_sendflow_link(self, enable_legacy_sendflow_link): 567 """Sets the enable_legacy_sendflow_link of this AccountUISettings. 568 569 # noqa: E501 570 571 :param enable_legacy_sendflow_link: The enable_legacy_sendflow_link of this AccountUISettings. # noqa: E501 572 :type: str 573 """ 574 575 self._enable_legacy_sendflow_link = enable_legacy_sendflow_link 576 577 @property 578 def enable_legacy_sendflow_link_metadata(self): 579 """Gets the enable_legacy_sendflow_link_metadata of this AccountUISettings. # noqa: E501 580 581 # noqa: E501 582 583 :return: The enable_legacy_sendflow_link_metadata of this AccountUISettings. # noqa: E501 584 :rtype: SettingsMetadata 585 """ 586 return self._enable_legacy_sendflow_link_metadata 587 588 @enable_legacy_sendflow_link_metadata.setter 589 def enable_legacy_sendflow_link_metadata(self, enable_legacy_sendflow_link_metadata): 590 """Sets the enable_legacy_sendflow_link_metadata of this AccountUISettings. 591 592 # noqa: E501 593 594 :param enable_legacy_sendflow_link_metadata: The enable_legacy_sendflow_link_metadata of this AccountUISettings. # noqa: E501 595 :type: SettingsMetadata 596 """ 597 598 self._enable_legacy_sendflow_link_metadata = enable_legacy_sendflow_link_metadata 599 600 @property 601 def has_external_linked_accounts(self): 602 """Gets the has_external_linked_accounts of this AccountUISettings. # noqa: E501 603 604 # noqa: E501 605 606 :return: The has_external_linked_accounts of this AccountUISettings. # noqa: E501 607 :rtype: str 608 """ 609 return self._has_external_linked_accounts 610 611 @has_external_linked_accounts.setter 612 def has_external_linked_accounts(self, has_external_linked_accounts): 613 """Sets the has_external_linked_accounts of this AccountUISettings. 614 615 # noqa: E501 616 617 :param has_external_linked_accounts: The has_external_linked_accounts of this AccountUISettings. # noqa: E501 618 :type: str 619 """ 620 621 self._has_external_linked_accounts = has_external_linked_accounts 622 623 @property 624 def has_external_linked_accounts_metadata(self): 625 """Gets the has_external_linked_accounts_metadata of this AccountUISettings. # noqa: E501 626 627 # noqa: E501 628 629 :return: The has_external_linked_accounts_metadata of this AccountUISettings. # noqa: E501 630 :rtype: SettingsMetadata 631 """ 632 return self._has_external_linked_accounts_metadata 633 634 @has_external_linked_accounts_metadata.setter 635 def has_external_linked_accounts_metadata(self, has_external_linked_accounts_metadata): 636 """Sets the has_external_linked_accounts_metadata of this AccountUISettings. 637 638 # noqa: E501 639 640 :param has_external_linked_accounts_metadata: The has_external_linked_accounts_metadata of this AccountUISettings. # noqa: E501 641 :type: SettingsMetadata 642 """ 643 644 self._has_external_linked_accounts_metadata = has_external_linked_accounts_metadata 645 646 @property 647 def hide_send_an_envelope(self): 648 """Gets the hide_send_an_envelope of this AccountUISettings. # noqa: E501 649 650 # noqa: E501 651 652 :return: The hide_send_an_envelope of this AccountUISettings. # noqa: E501 653 :rtype: str 654 """ 655 return self._hide_send_an_envelope 656 657 @hide_send_an_envelope.setter 658 def hide_send_an_envelope(self, hide_send_an_envelope): 659 """Sets the hide_send_an_envelope of this AccountUISettings. 660 661 # noqa: E501 662 663 :param hide_send_an_envelope: The hide_send_an_envelope of this AccountUISettings. # noqa: E501 664 :type: str 665 """ 666 667 self._hide_send_an_envelope = hide_send_an_envelope 668 669 @property 670 def hide_send_an_envelope_metadata(self): 671 """Gets the hide_send_an_envelope_metadata of this AccountUISettings. # noqa: E501 672 673 # noqa: E501 674 675 :return: The hide_send_an_envelope_metadata of this AccountUISettings. # noqa: E501 676 :rtype: SettingsMetadata 677 """ 678 return self._hide_send_an_envelope_metadata 679 680 @hide_send_an_envelope_metadata.setter 681 def hide_send_an_envelope_metadata(self, hide_send_an_envelope_metadata): 682 """Sets the hide_send_an_envelope_metadata of this AccountUISettings. 683 684 # noqa: E501 685 686 :param hide_send_an_envelope_metadata: The hide_send_an_envelope_metadata of this AccountUISettings. # noqa: E501 687 :type: SettingsMetadata 688 """ 689 690 self._hide_send_an_envelope_metadata = hide_send_an_envelope_metadata 691 692 @property 693 def hide_use_a_template(self): 694 """Gets the hide_use_a_template of this AccountUISettings. # noqa: E501 695 696 # noqa: E501 697 698 :return: The hide_use_a_template of this AccountUISettings. # noqa: E501 699 :rtype: str 700 """ 701 return self._hide_use_a_template 702 703 @hide_use_a_template.setter 704 def hide_use_a_template(self, hide_use_a_template): 705 """Sets the hide_use_a_template of this AccountUISettings. 706 707 # noqa: E501 708 709 :param hide_use_a_template: The hide_use_a_template of this AccountUISettings. # noqa: E501 710 :type: str 711 """ 712 713 self._hide_use_a_template = hide_use_a_template 714 715 @property 716 def hide_use_a_template_in_prepare(self): 717 """Gets the hide_use_a_template_in_prepare of this AccountUISettings. # noqa: E501 718 719 # noqa: E501 720 721 :return: The hide_use_a_template_in_prepare of this AccountUISettings. # noqa: E501 722 :rtype: str 723 """ 724 return self._hide_use_a_template_in_prepare 725 726 @hide_use_a_template_in_prepare.setter 727 def hide_use_a_template_in_prepare(self, hide_use_a_template_in_prepare): 728 """Sets the hide_use_a_template_in_prepare of this AccountUISettings. 729 730 # noqa: E501 731 732 :param hide_use_a_template_in_prepare: The hide_use_a_template_in_prepare of this AccountUISettings. # noqa: E501 733 :type: str 734 """ 735 736 self._hide_use_a_template_in_prepare = hide_use_a_template_in_prepare 737 738 @property 739 def hide_use_a_template_in_prepare_metadata(self): 740 """Gets the hide_use_a_template_in_prepare_metadata of this AccountUISettings. # noqa: E501 741 742 # noqa: E501 743 744 :return: The hide_use_a_template_in_prepare_metadata of this AccountUISettings. # noqa: E501 745 :rtype: SettingsMetadata 746 """ 747 return self._hide_use_a_template_in_prepare_metadata 748 749 @hide_use_a_template_in_prepare_metadata.setter 750 def hide_use_a_template_in_prepare_metadata(self, hide_use_a_template_in_prepare_metadata): 751 """Sets the hide_use_a_template_in_prepare_metadata of this AccountUISettings. 752 753 # noqa: E501 754 755 :param hide_use_a_template_in_prepare_metadata: The hide_use_a_template_in_prepare_metadata of this AccountUISettings. # noqa: E501 756 :type: SettingsMetadata 757 """ 758 759 self._hide_use_a_template_in_prepare_metadata = hide_use_a_template_in_prepare_metadata 760 761 @property 762 def hide_use_a_template_metadata(self): 763 """Gets the hide_use_a_template_metadata of this AccountUISettings. # noqa: E501 764 765 # noqa: E501 766 767 :return: The hide_use_a_template_metadata of this AccountUISettings. # noqa: E501 768 :rtype: SettingsMetadata 769 """ 770 return self._hide_use_a_template_metadata 771 772 @hide_use_a_template_metadata.setter 773 def hide_use_a_template_metadata(self, hide_use_a_template_metadata): 774 """Sets the hide_use_a_template_metadata of this AccountUISettings. 775 776 # noqa: E501 777 778 :param hide_use_a_template_metadata: The hide_use_a_template_metadata of this AccountUISettings. # noqa: E501 779 :type: SettingsMetadata 780 """ 781 782 self._hide_use_a_template_metadata = hide_use_a_template_metadata 783 784 @property 785 def order_based_recipient_id_generation(self): 786 """Gets the order_based_recipient_id_generation of this AccountUISettings. # noqa: E501 787 788 # noqa: E501 789 790 :return: The order_based_recipient_id_generation of this AccountUISettings. # noqa: E501 791 :rtype: str 792 """ 793 return self._order_based_recipient_id_generation 794 795 @order_based_recipient_id_generation.setter 796 def order_based_recipient_id_generation(self, order_based_recipient_id_generation): 797 """Sets the order_based_recipient_id_generation of this AccountUISettings. 798 799 # noqa: E501 800 801 :param order_based_recipient_id_generation: The order_based_recipient_id_generation of this AccountUISettings. # noqa: E501 802 :type: str 803 """ 804 805 self._order_based_recipient_id_generation = order_based_recipient_id_generation 806 807 @property 808 def order_based_recipient_id_generation_metadata(self): 809 """Gets the order_based_recipient_id_generation_metadata of this AccountUISettings. # noqa: E501 810 811 # noqa: E501 812 813 :return: The order_based_recipient_id_generation_metadata of this AccountUISettings. # noqa: E501 814 :rtype: SettingsMetadata 815 """ 816 return self._order_based_recipient_id_generation_metadata 817 818 @order_based_recipient_id_generation_metadata.setter 819 def order_based_recipient_id_generation_metadata(self, order_based_recipient_id_generation_metadata): 820 """Sets the order_based_recipient_id_generation_metadata of this AccountUISettings. 821 822 # noqa: E501 823 824 :param order_based_recipient_id_generation_metadata: The order_based_recipient_id_generation_metadata of this AccountUISettings. # noqa: E501 825 :type: SettingsMetadata 826 """ 827 828 self._order_based_recipient_id_generation_metadata = order_based_recipient_id_generation_metadata 829 830 @property 831 def remove_envelope_forwarding(self): 832 """Gets the remove_envelope_forwarding of this AccountUISettings. # noqa: E501 833 834 # noqa: E501 835 836 :return: The remove_envelope_forwarding of this AccountUISettings. # noqa: E501 837 :rtype: str 838 """ 839 return self._remove_envelope_forwarding 840 841 @remove_envelope_forwarding.setter 842 def remove_envelope_forwarding(self, remove_envelope_forwarding): 843 """Sets the remove_envelope_forwarding of this AccountUISettings. 844 845 # noqa: E501 846 847 :param remove_envelope_forwarding: The remove_envelope_forwarding of this AccountUISettings. # noqa: E501 848 :type: str 849 """ 850 851 self._remove_envelope_forwarding = remove_envelope_forwarding 852 853 @property 854 def remove_envelope_forwarding_metadata(self): 855 """Gets the remove_envelope_forwarding_metadata of this AccountUISettings. # noqa: E501 856 857 # noqa: E501 858 859 :return: The remove_envelope_forwarding_metadata of this AccountUISettings. # noqa: E501 860 :rtype: SettingsMetadata 861 """ 862 return self._remove_envelope_forwarding_metadata 863 864 @remove_envelope_forwarding_metadata.setter 865 def remove_envelope_forwarding_metadata(self, remove_envelope_forwarding_metadata): 866 """Sets the remove_envelope_forwarding_metadata of this AccountUISettings. 867 868 # noqa: E501 869 870 :param remove_envelope_forwarding_metadata: The remove_envelope_forwarding_metadata of this AccountUISettings. # noqa: E501 871 :type: SettingsMetadata 872 """ 873 874 self._remove_envelope_forwarding_metadata = remove_envelope_forwarding_metadata 875 876 @property 877 def should_redact_access_code(self): 878 """Gets the should_redact_access_code of this AccountUISettings. # noqa: E501 879 880 # noqa: E501 881 882 :return: The should_redact_access_code of this AccountUISettings. # noqa: E501 883 :rtype: str 884 """ 885 return self._should_redact_access_code 886 887 @should_redact_access_code.setter 888 def should_redact_access_code(self, should_redact_access_code): 889 """Sets the should_redact_access_code of this AccountUISettings. 890 891 # noqa: E501 892 893 :param should_redact_access_code: The should_redact_access_code of this AccountUISettings. # noqa: E501 894 :type: str 895 """ 896 897 self._should_redact_access_code = should_redact_access_code 898 899 @property 900 def should_redact_access_code_metadata(self): 901 """Gets the should_redact_access_code_metadata of this AccountUISettings. # noqa: E501 902 903 # noqa: E501 904 905 :return: The should_redact_access_code_metadata of this AccountUISettings. # noqa: E501 906 :rtype: SettingsMetadata 907 """ 908 return self._should_redact_access_code_metadata 909 910 @should_redact_access_code_metadata.setter 911 def should_redact_access_code_metadata(self, should_redact_access_code_metadata): 912 """Sets the should_redact_access_code_metadata of this AccountUISettings. 913 914 # noqa: E501 915 916 :param should_redact_access_code_metadata: The should_redact_access_code_metadata of this AccountUISettings. # noqa: E501 917 :type: SettingsMetadata 918 """ 919 920 self._should_redact_access_code_metadata = should_redact_access_code_metadata 921 922 @property 923 def upload_new_image_to_sign_or_initial(self): 924 """Gets the upload_new_image_to_sign_or_initial of this AccountUISettings. # noqa: E501 925 926 # noqa: E501 927 928 :return: The upload_new_image_to_sign_or_initial of this AccountUISettings. # noqa: E501 929 :rtype: str 930 """ 931 return self._upload_new_image_to_sign_or_initial 932 933 @upload_new_image_to_sign_or_initial.setter 934 def upload_new_image_to_sign_or_initial(self, upload_new_image_to_sign_or_initial): 935 """Sets the upload_new_image_to_sign_or_initial of this AccountUISettings. 936 937 # noqa: E501 938 939 :param upload_new_image_to_sign_or_initial: The upload_new_image_to_sign_or_initial of this AccountUISettings. # noqa: E501 940 :type: str 941 """ 942 943 self._upload_new_image_to_sign_or_initial = upload_new_image_to_sign_or_initial 944 945 @property 946 def upload_new_image_to_sign_or_initial_metadata(self): 947 """Gets the upload_new_image_to_sign_or_initial_metadata of this AccountUISettings. # noqa: E501 948 949 # noqa: E501 950 951 :return: The upload_new_image_to_sign_or_initial_metadata of this AccountUISettings. # noqa: E501 952 :rtype: SettingsMetadata 953 """ 954 return self._upload_new_image_to_sign_or_initial_metadata 955 956 @upload_new_image_to_sign_or_initial_metadata.setter 957 def upload_new_image_to_sign_or_initial_metadata(self, upload_new_image_to_sign_or_initial_metadata): 958 """Sets the upload_new_image_to_sign_or_initial_metadata of this AccountUISettings. 959 960 # noqa: E501 961 962 :param upload_new_image_to_sign_or_initial_metadata: The upload_new_image_to_sign_or_initial_metadata of this AccountUISettings. # noqa: E501 963 :type: SettingsMetadata 964 """ 965 966 self._upload_new_image_to_sign_or_initial_metadata = upload_new_image_to_sign_or_initial_metadata 967 968 def to_dict(self): 969 """Returns the model properties as a dict""" 970 result = {} 971 972 for attr, _ in six.iteritems(self.swagger_types): 973 value = getattr(self, attr) 974 if isinstance(value, list): 975 result[attr] = list(map( 976 lambda x: x.to_dict() if hasattr(x, "to_dict") else x, 977 value 978 )) 979 elif hasattr(value, "to_dict"): 980 result[attr] = value.to_dict() 981 elif isinstance(value, dict): 982 result[attr] = dict(map( 983 lambda item: (item[0], item[1].to_dict()) 984 if hasattr(item[1], "to_dict") else item, 985 value.items() 986 )) 987 else: 988 result[attr] = value 989 if issubclass(AccountUISettings, dict): 990 for key, value in self.items(): 991 result[key] = value 992 993 return result 994 995 def to_str(self): 996 """Returns the string representation of the model""" 997 return pprint.pformat(self.to_dict()) 998 999 def __repr__(self): 1000 """For `print` and `pprint`""" 1001 return self.to_str() 1002 1003 def __eq__(self, other): 1004 """Returns true if both objects are equal""" 1005 if not isinstance(other, AccountUISettings): 1006 return False 1007 1008 return self.to_dict() == other.to_dict() 1009 1010 def __ne__(self, other): 1011 """Returns true if both objects are not equal""" 1012 if not isinstance(other, AccountUISettings): 1013 return True 1014 1015 return self.to_dict() != other.to_dict()
23class AccountUISettings(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 'admin_message': 'AdminMessage', 38 'allow_users_to_edit_shared_access': 'str', 39 'allow_users_to_edit_shared_access_metadata': 'SettingsMetadata', 40 'ask_an_admin': 'AskAnAdmin', 41 'clickwrap_schema_version': 'str', 42 'clickwrap_schema_version_metadata': 'SettingsMetadata', 43 'enable_admin_message': 'str', 44 'enable_admin_message_metadata': 'SettingsMetadata', 45 'enable_easy_sign_can_use_multi_template_apply': 'str', 46 'enable_easy_sign_can_use_multi_template_apply_metadata': 'SettingsMetadata', 47 'enable_easy_sign_template_upload': 'str', 48 'enable_easy_sign_template_upload_metadata': 'SettingsMetadata', 49 'enable_envelope_copy_with_data': 'str', 50 'enable_envelope_copy_with_data_metadata': 'SettingsMetadata', 51 'enable_envelope_types': 'str', 52 'enable_envelope_types_metadata': 'SettingsMetadata', 53 'enable_legacy_sendflow_link': 'str', 54 'enable_legacy_sendflow_link_metadata': 'SettingsMetadata', 55 'has_external_linked_accounts': 'str', 56 'has_external_linked_accounts_metadata': 'SettingsMetadata', 57 'hide_send_an_envelope': 'str', 58 'hide_send_an_envelope_metadata': 'SettingsMetadata', 59 'hide_use_a_template': 'str', 60 'hide_use_a_template_in_prepare': 'str', 61 'hide_use_a_template_in_prepare_metadata': 'SettingsMetadata', 62 'hide_use_a_template_metadata': 'SettingsMetadata', 63 'order_based_recipient_id_generation': 'str', 64 'order_based_recipient_id_generation_metadata': 'SettingsMetadata', 65 'remove_envelope_forwarding': 'str', 66 'remove_envelope_forwarding_metadata': 'SettingsMetadata', 67 'should_redact_access_code': 'str', 68 'should_redact_access_code_metadata': 'SettingsMetadata', 69 'upload_new_image_to_sign_or_initial': 'str', 70 'upload_new_image_to_sign_or_initial_metadata': 'SettingsMetadata' 71 } 72 73 attribute_map = { 74 'admin_message': 'adminMessage', 75 'allow_users_to_edit_shared_access': 'allowUsersToEditSharedAccess', 76 'allow_users_to_edit_shared_access_metadata': 'allowUsersToEditSharedAccessMetadata', 77 'ask_an_admin': 'askAnAdmin', 78 'clickwrap_schema_version': 'clickwrapSchemaVersion', 79 'clickwrap_schema_version_metadata': 'clickwrapSchemaVersionMetadata', 80 'enable_admin_message': 'enableAdminMessage', 81 'enable_admin_message_metadata': 'enableAdminMessageMetadata', 82 'enable_easy_sign_can_use_multi_template_apply': 'enableEasySignCanUseMultiTemplateApply', 83 'enable_easy_sign_can_use_multi_template_apply_metadata': 'enableEasySignCanUseMultiTemplateApplyMetadata', 84 'enable_easy_sign_template_upload': 'enableEasySignTemplateUpload', 85 'enable_easy_sign_template_upload_metadata': 'enableEasySignTemplateUploadMetadata', 86 'enable_envelope_copy_with_data': 'enableEnvelopeCopyWithData', 87 'enable_envelope_copy_with_data_metadata': 'enableEnvelopeCopyWithDataMetadata', 88 'enable_envelope_types': 'enableEnvelopeTypes', 89 'enable_envelope_types_metadata': 'enableEnvelopeTypesMetadata', 90 'enable_legacy_sendflow_link': 'enableLegacySendflowLink', 91 'enable_legacy_sendflow_link_metadata': 'enableLegacySendflowLinkMetadata', 92 'has_external_linked_accounts': 'hasExternalLinkedAccounts', 93 'has_external_linked_accounts_metadata': 'hasExternalLinkedAccountsMetadata', 94 'hide_send_an_envelope': 'hideSendAnEnvelope', 95 'hide_send_an_envelope_metadata': 'hideSendAnEnvelopeMetadata', 96 'hide_use_a_template': 'hideUseATemplate', 97 'hide_use_a_template_in_prepare': 'hideUseATemplateInPrepare', 98 'hide_use_a_template_in_prepare_metadata': 'hideUseATemplateInPrepareMetadata', 99 'hide_use_a_template_metadata': 'hideUseATemplateMetadata', 100 'order_based_recipient_id_generation': 'orderBasedRecipientIdGeneration', 101 'order_based_recipient_id_generation_metadata': 'orderBasedRecipientIdGenerationMetadata', 102 'remove_envelope_forwarding': 'removeEnvelopeForwarding', 103 'remove_envelope_forwarding_metadata': 'removeEnvelopeForwardingMetadata', 104 'should_redact_access_code': 'shouldRedactAccessCode', 105 'should_redact_access_code_metadata': 'shouldRedactAccessCodeMetadata', 106 'upload_new_image_to_sign_or_initial': 'uploadNewImageToSignOrInitial', 107 'upload_new_image_to_sign_or_initial_metadata': 'uploadNewImageToSignOrInitialMetadata' 108 } 109 110 def __init__(self, _configuration=None, **kwargs): # noqa: E501 111 """AccountUISettings - a model defined in Swagger""" # noqa: E501 112 if _configuration is None: 113 _configuration = Configuration() 114 self._configuration = _configuration 115 116 self._admin_message = None 117 self._allow_users_to_edit_shared_access = None 118 self._allow_users_to_edit_shared_access_metadata = None 119 self._ask_an_admin = None 120 self._clickwrap_schema_version = None 121 self._clickwrap_schema_version_metadata = None 122 self._enable_admin_message = None 123 self._enable_admin_message_metadata = None 124 self._enable_easy_sign_can_use_multi_template_apply = None 125 self._enable_easy_sign_can_use_multi_template_apply_metadata = None 126 self._enable_easy_sign_template_upload = None 127 self._enable_easy_sign_template_upload_metadata = None 128 self._enable_envelope_copy_with_data = None 129 self._enable_envelope_copy_with_data_metadata = None 130 self._enable_envelope_types = None 131 self._enable_envelope_types_metadata = None 132 self._enable_legacy_sendflow_link = None 133 self._enable_legacy_sendflow_link_metadata = None 134 self._has_external_linked_accounts = None 135 self._has_external_linked_accounts_metadata = None 136 self._hide_send_an_envelope = None 137 self._hide_send_an_envelope_metadata = None 138 self._hide_use_a_template = None 139 self._hide_use_a_template_in_prepare = None 140 self._hide_use_a_template_in_prepare_metadata = None 141 self._hide_use_a_template_metadata = None 142 self._order_based_recipient_id_generation = None 143 self._order_based_recipient_id_generation_metadata = None 144 self._remove_envelope_forwarding = None 145 self._remove_envelope_forwarding_metadata = None 146 self._should_redact_access_code = None 147 self._should_redact_access_code_metadata = None 148 self._upload_new_image_to_sign_or_initial = None 149 self._upload_new_image_to_sign_or_initial_metadata = None 150 self.discriminator = None 151 152 setattr(self, "_{}".format('admin_message'), kwargs.get('admin_message', None)) 153 setattr(self, "_{}".format('allow_users_to_edit_shared_access'), kwargs.get('allow_users_to_edit_shared_access', None)) 154 setattr(self, "_{}".format('allow_users_to_edit_shared_access_metadata'), kwargs.get('allow_users_to_edit_shared_access_metadata', None)) 155 setattr(self, "_{}".format('ask_an_admin'), kwargs.get('ask_an_admin', None)) 156 setattr(self, "_{}".format('clickwrap_schema_version'), kwargs.get('clickwrap_schema_version', None)) 157 setattr(self, "_{}".format('clickwrap_schema_version_metadata'), kwargs.get('clickwrap_schema_version_metadata', None)) 158 setattr(self, "_{}".format('enable_admin_message'), kwargs.get('enable_admin_message', None)) 159 setattr(self, "_{}".format('enable_admin_message_metadata'), kwargs.get('enable_admin_message_metadata', None)) 160 setattr(self, "_{}".format('enable_easy_sign_can_use_multi_template_apply'), kwargs.get('enable_easy_sign_can_use_multi_template_apply', None)) 161 setattr(self, "_{}".format('enable_easy_sign_can_use_multi_template_apply_metadata'), kwargs.get('enable_easy_sign_can_use_multi_template_apply_metadata', None)) 162 setattr(self, "_{}".format('enable_easy_sign_template_upload'), kwargs.get('enable_easy_sign_template_upload', None)) 163 setattr(self, "_{}".format('enable_easy_sign_template_upload_metadata'), kwargs.get('enable_easy_sign_template_upload_metadata', None)) 164 setattr(self, "_{}".format('enable_envelope_copy_with_data'), kwargs.get('enable_envelope_copy_with_data', None)) 165 setattr(self, "_{}".format('enable_envelope_copy_with_data_metadata'), kwargs.get('enable_envelope_copy_with_data_metadata', None)) 166 setattr(self, "_{}".format('enable_envelope_types'), kwargs.get('enable_envelope_types', None)) 167 setattr(self, "_{}".format('enable_envelope_types_metadata'), kwargs.get('enable_envelope_types_metadata', None)) 168 setattr(self, "_{}".format('enable_legacy_sendflow_link'), kwargs.get('enable_legacy_sendflow_link', None)) 169 setattr(self, "_{}".format('enable_legacy_sendflow_link_metadata'), kwargs.get('enable_legacy_sendflow_link_metadata', None)) 170 setattr(self, "_{}".format('has_external_linked_accounts'), kwargs.get('has_external_linked_accounts', None)) 171 setattr(self, "_{}".format('has_external_linked_accounts_metadata'), kwargs.get('has_external_linked_accounts_metadata', None)) 172 setattr(self, "_{}".format('hide_send_an_envelope'), kwargs.get('hide_send_an_envelope', None)) 173 setattr(self, "_{}".format('hide_send_an_envelope_metadata'), kwargs.get('hide_send_an_envelope_metadata', None)) 174 setattr(self, "_{}".format('hide_use_a_template'), kwargs.get('hide_use_a_template', None)) 175 setattr(self, "_{}".format('hide_use_a_template_in_prepare'), kwargs.get('hide_use_a_template_in_prepare', None)) 176 setattr(self, "_{}".format('hide_use_a_template_in_prepare_metadata'), kwargs.get('hide_use_a_template_in_prepare_metadata', None)) 177 setattr(self, "_{}".format('hide_use_a_template_metadata'), kwargs.get('hide_use_a_template_metadata', None)) 178 setattr(self, "_{}".format('order_based_recipient_id_generation'), kwargs.get('order_based_recipient_id_generation', None)) 179 setattr(self, "_{}".format('order_based_recipient_id_generation_metadata'), kwargs.get('order_based_recipient_id_generation_metadata', None)) 180 setattr(self, "_{}".format('remove_envelope_forwarding'), kwargs.get('remove_envelope_forwarding', None)) 181 setattr(self, "_{}".format('remove_envelope_forwarding_metadata'), kwargs.get('remove_envelope_forwarding_metadata', None)) 182 setattr(self, "_{}".format('should_redact_access_code'), kwargs.get('should_redact_access_code', None)) 183 setattr(self, "_{}".format('should_redact_access_code_metadata'), kwargs.get('should_redact_access_code_metadata', None)) 184 setattr(self, "_{}".format('upload_new_image_to_sign_or_initial'), kwargs.get('upload_new_image_to_sign_or_initial', None)) 185 setattr(self, "_{}".format('upload_new_image_to_sign_or_initial_metadata'), kwargs.get('upload_new_image_to_sign_or_initial_metadata', None)) 186 187 @property 188 def admin_message(self): 189 """Gets the admin_message of this AccountUISettings. # noqa: E501 190 191 # noqa: E501 192 193 :return: The admin_message of this AccountUISettings. # noqa: E501 194 :rtype: AdminMessage 195 """ 196 return self._admin_message 197 198 @admin_message.setter 199 def admin_message(self, admin_message): 200 """Sets the admin_message of this AccountUISettings. 201 202 # noqa: E501 203 204 :param admin_message: The admin_message of this AccountUISettings. # noqa: E501 205 :type: AdminMessage 206 """ 207 208 self._admin_message = admin_message 209 210 @property 211 def allow_users_to_edit_shared_access(self): 212 """Gets the allow_users_to_edit_shared_access of this AccountUISettings. # noqa: E501 213 214 # noqa: E501 215 216 :return: The allow_users_to_edit_shared_access of this AccountUISettings. # noqa: E501 217 :rtype: str 218 """ 219 return self._allow_users_to_edit_shared_access 220 221 @allow_users_to_edit_shared_access.setter 222 def allow_users_to_edit_shared_access(self, allow_users_to_edit_shared_access): 223 """Sets the allow_users_to_edit_shared_access of this AccountUISettings. 224 225 # noqa: E501 226 227 :param allow_users_to_edit_shared_access: The allow_users_to_edit_shared_access of this AccountUISettings. # noqa: E501 228 :type: str 229 """ 230 231 self._allow_users_to_edit_shared_access = allow_users_to_edit_shared_access 232 233 @property 234 def allow_users_to_edit_shared_access_metadata(self): 235 """Gets the allow_users_to_edit_shared_access_metadata of this AccountUISettings. # noqa: E501 236 237 # noqa: E501 238 239 :return: The allow_users_to_edit_shared_access_metadata of this AccountUISettings. # noqa: E501 240 :rtype: SettingsMetadata 241 """ 242 return self._allow_users_to_edit_shared_access_metadata 243 244 @allow_users_to_edit_shared_access_metadata.setter 245 def allow_users_to_edit_shared_access_metadata(self, allow_users_to_edit_shared_access_metadata): 246 """Sets the allow_users_to_edit_shared_access_metadata of this AccountUISettings. 247 248 # noqa: E501 249 250 :param allow_users_to_edit_shared_access_metadata: The allow_users_to_edit_shared_access_metadata of this AccountUISettings. # noqa: E501 251 :type: SettingsMetadata 252 """ 253 254 self._allow_users_to_edit_shared_access_metadata = allow_users_to_edit_shared_access_metadata 255 256 @property 257 def ask_an_admin(self): 258 """Gets the ask_an_admin of this AccountUISettings. # noqa: E501 259 260 # noqa: E501 261 262 :return: The ask_an_admin of this AccountUISettings. # noqa: E501 263 :rtype: AskAnAdmin 264 """ 265 return self._ask_an_admin 266 267 @ask_an_admin.setter 268 def ask_an_admin(self, ask_an_admin): 269 """Sets the ask_an_admin of this AccountUISettings. 270 271 # noqa: E501 272 273 :param ask_an_admin: The ask_an_admin of this AccountUISettings. # noqa: E501 274 :type: AskAnAdmin 275 """ 276 277 self._ask_an_admin = ask_an_admin 278 279 @property 280 def clickwrap_schema_version(self): 281 """Gets the clickwrap_schema_version of this AccountUISettings. # noqa: E501 282 283 # noqa: E501 284 285 :return: The clickwrap_schema_version of this AccountUISettings. # noqa: E501 286 :rtype: str 287 """ 288 return self._clickwrap_schema_version 289 290 @clickwrap_schema_version.setter 291 def clickwrap_schema_version(self, clickwrap_schema_version): 292 """Sets the clickwrap_schema_version of this AccountUISettings. 293 294 # noqa: E501 295 296 :param clickwrap_schema_version: The clickwrap_schema_version of this AccountUISettings. # noqa: E501 297 :type: str 298 """ 299 300 self._clickwrap_schema_version = clickwrap_schema_version 301 302 @property 303 def clickwrap_schema_version_metadata(self): 304 """Gets the clickwrap_schema_version_metadata of this AccountUISettings. # noqa: E501 305 306 # noqa: E501 307 308 :return: The clickwrap_schema_version_metadata of this AccountUISettings. # noqa: E501 309 :rtype: SettingsMetadata 310 """ 311 return self._clickwrap_schema_version_metadata 312 313 @clickwrap_schema_version_metadata.setter 314 def clickwrap_schema_version_metadata(self, clickwrap_schema_version_metadata): 315 """Sets the clickwrap_schema_version_metadata of this AccountUISettings. 316 317 # noqa: E501 318 319 :param clickwrap_schema_version_metadata: The clickwrap_schema_version_metadata of this AccountUISettings. # noqa: E501 320 :type: SettingsMetadata 321 """ 322 323 self._clickwrap_schema_version_metadata = clickwrap_schema_version_metadata 324 325 @property 326 def enable_admin_message(self): 327 """Gets the enable_admin_message of this AccountUISettings. # noqa: E501 328 329 # noqa: E501 330 331 :return: The enable_admin_message of this AccountUISettings. # noqa: E501 332 :rtype: str 333 """ 334 return self._enable_admin_message 335 336 @enable_admin_message.setter 337 def enable_admin_message(self, enable_admin_message): 338 """Sets the enable_admin_message of this AccountUISettings. 339 340 # noqa: E501 341 342 :param enable_admin_message: The enable_admin_message of this AccountUISettings. # noqa: E501 343 :type: str 344 """ 345 346 self._enable_admin_message = enable_admin_message 347 348 @property 349 def enable_admin_message_metadata(self): 350 """Gets the enable_admin_message_metadata of this AccountUISettings. # noqa: E501 351 352 # noqa: E501 353 354 :return: The enable_admin_message_metadata of this AccountUISettings. # noqa: E501 355 :rtype: SettingsMetadata 356 """ 357 return self._enable_admin_message_metadata 358 359 @enable_admin_message_metadata.setter 360 def enable_admin_message_metadata(self, enable_admin_message_metadata): 361 """Sets the enable_admin_message_metadata of this AccountUISettings. 362 363 # noqa: E501 364 365 :param enable_admin_message_metadata: The enable_admin_message_metadata of this AccountUISettings. # noqa: E501 366 :type: SettingsMetadata 367 """ 368 369 self._enable_admin_message_metadata = enable_admin_message_metadata 370 371 @property 372 def enable_easy_sign_can_use_multi_template_apply(self): 373 """Gets the enable_easy_sign_can_use_multi_template_apply of this AccountUISettings. # noqa: E501 374 375 # noqa: E501 376 377 :return: The enable_easy_sign_can_use_multi_template_apply of this AccountUISettings. # noqa: E501 378 :rtype: str 379 """ 380 return self._enable_easy_sign_can_use_multi_template_apply 381 382 @enable_easy_sign_can_use_multi_template_apply.setter 383 def enable_easy_sign_can_use_multi_template_apply(self, enable_easy_sign_can_use_multi_template_apply): 384 """Sets the enable_easy_sign_can_use_multi_template_apply of this AccountUISettings. 385 386 # noqa: E501 387 388 :param enable_easy_sign_can_use_multi_template_apply: The enable_easy_sign_can_use_multi_template_apply of this AccountUISettings. # noqa: E501 389 :type: str 390 """ 391 392 self._enable_easy_sign_can_use_multi_template_apply = enable_easy_sign_can_use_multi_template_apply 393 394 @property 395 def enable_easy_sign_can_use_multi_template_apply_metadata(self): 396 """Gets the enable_easy_sign_can_use_multi_template_apply_metadata of this AccountUISettings. # noqa: E501 397 398 # noqa: E501 399 400 :return: The enable_easy_sign_can_use_multi_template_apply_metadata of this AccountUISettings. # noqa: E501 401 :rtype: SettingsMetadata 402 """ 403 return self._enable_easy_sign_can_use_multi_template_apply_metadata 404 405 @enable_easy_sign_can_use_multi_template_apply_metadata.setter 406 def enable_easy_sign_can_use_multi_template_apply_metadata(self, enable_easy_sign_can_use_multi_template_apply_metadata): 407 """Sets the enable_easy_sign_can_use_multi_template_apply_metadata of this AccountUISettings. 408 409 # noqa: E501 410 411 :param enable_easy_sign_can_use_multi_template_apply_metadata: The enable_easy_sign_can_use_multi_template_apply_metadata of this AccountUISettings. # noqa: E501 412 :type: SettingsMetadata 413 """ 414 415 self._enable_easy_sign_can_use_multi_template_apply_metadata = enable_easy_sign_can_use_multi_template_apply_metadata 416 417 @property 418 def enable_easy_sign_template_upload(self): 419 """Gets the enable_easy_sign_template_upload of this AccountUISettings. # noqa: E501 420 421 # noqa: E501 422 423 :return: The enable_easy_sign_template_upload of this AccountUISettings. # noqa: E501 424 :rtype: str 425 """ 426 return self._enable_easy_sign_template_upload 427 428 @enable_easy_sign_template_upload.setter 429 def enable_easy_sign_template_upload(self, enable_easy_sign_template_upload): 430 """Sets the enable_easy_sign_template_upload of this AccountUISettings. 431 432 # noqa: E501 433 434 :param enable_easy_sign_template_upload: The enable_easy_sign_template_upload of this AccountUISettings. # noqa: E501 435 :type: str 436 """ 437 438 self._enable_easy_sign_template_upload = enable_easy_sign_template_upload 439 440 @property 441 def enable_easy_sign_template_upload_metadata(self): 442 """Gets the enable_easy_sign_template_upload_metadata of this AccountUISettings. # noqa: E501 443 444 # noqa: E501 445 446 :return: The enable_easy_sign_template_upload_metadata of this AccountUISettings. # noqa: E501 447 :rtype: SettingsMetadata 448 """ 449 return self._enable_easy_sign_template_upload_metadata 450 451 @enable_easy_sign_template_upload_metadata.setter 452 def enable_easy_sign_template_upload_metadata(self, enable_easy_sign_template_upload_metadata): 453 """Sets the enable_easy_sign_template_upload_metadata of this AccountUISettings. 454 455 # noqa: E501 456 457 :param enable_easy_sign_template_upload_metadata: The enable_easy_sign_template_upload_metadata of this AccountUISettings. # noqa: E501 458 :type: SettingsMetadata 459 """ 460 461 self._enable_easy_sign_template_upload_metadata = enable_easy_sign_template_upload_metadata 462 463 @property 464 def enable_envelope_copy_with_data(self): 465 """Gets the enable_envelope_copy_with_data of this AccountUISettings. # noqa: E501 466 467 # noqa: E501 468 469 :return: The enable_envelope_copy_with_data of this AccountUISettings. # noqa: E501 470 :rtype: str 471 """ 472 return self._enable_envelope_copy_with_data 473 474 @enable_envelope_copy_with_data.setter 475 def enable_envelope_copy_with_data(self, enable_envelope_copy_with_data): 476 """Sets the enable_envelope_copy_with_data of this AccountUISettings. 477 478 # noqa: E501 479 480 :param enable_envelope_copy_with_data: The enable_envelope_copy_with_data of this AccountUISettings. # noqa: E501 481 :type: str 482 """ 483 484 self._enable_envelope_copy_with_data = enable_envelope_copy_with_data 485 486 @property 487 def enable_envelope_copy_with_data_metadata(self): 488 """Gets the enable_envelope_copy_with_data_metadata of this AccountUISettings. # noqa: E501 489 490 # noqa: E501 491 492 :return: The enable_envelope_copy_with_data_metadata of this AccountUISettings. # noqa: E501 493 :rtype: SettingsMetadata 494 """ 495 return self._enable_envelope_copy_with_data_metadata 496 497 @enable_envelope_copy_with_data_metadata.setter 498 def enable_envelope_copy_with_data_metadata(self, enable_envelope_copy_with_data_metadata): 499 """Sets the enable_envelope_copy_with_data_metadata of this AccountUISettings. 500 501 # noqa: E501 502 503 :param enable_envelope_copy_with_data_metadata: The enable_envelope_copy_with_data_metadata of this AccountUISettings. # noqa: E501 504 :type: SettingsMetadata 505 """ 506 507 self._enable_envelope_copy_with_data_metadata = enable_envelope_copy_with_data_metadata 508 509 @property 510 def enable_envelope_types(self): 511 """Gets the enable_envelope_types of this AccountUISettings. # noqa: E501 512 513 # noqa: E501 514 515 :return: The enable_envelope_types of this AccountUISettings. # noqa: E501 516 :rtype: str 517 """ 518 return self._enable_envelope_types 519 520 @enable_envelope_types.setter 521 def enable_envelope_types(self, enable_envelope_types): 522 """Sets the enable_envelope_types of this AccountUISettings. 523 524 # noqa: E501 525 526 :param enable_envelope_types: The enable_envelope_types of this AccountUISettings. # noqa: E501 527 :type: str 528 """ 529 530 self._enable_envelope_types = enable_envelope_types 531 532 @property 533 def enable_envelope_types_metadata(self): 534 """Gets the enable_envelope_types_metadata of this AccountUISettings. # noqa: E501 535 536 # noqa: E501 537 538 :return: The enable_envelope_types_metadata of this AccountUISettings. # noqa: E501 539 :rtype: SettingsMetadata 540 """ 541 return self._enable_envelope_types_metadata 542 543 @enable_envelope_types_metadata.setter 544 def enable_envelope_types_metadata(self, enable_envelope_types_metadata): 545 """Sets the enable_envelope_types_metadata of this AccountUISettings. 546 547 # noqa: E501 548 549 :param enable_envelope_types_metadata: The enable_envelope_types_metadata of this AccountUISettings. # noqa: E501 550 :type: SettingsMetadata 551 """ 552 553 self._enable_envelope_types_metadata = enable_envelope_types_metadata 554 555 @property 556 def enable_legacy_sendflow_link(self): 557 """Gets the enable_legacy_sendflow_link of this AccountUISettings. # noqa: E501 558 559 # noqa: E501 560 561 :return: The enable_legacy_sendflow_link of this AccountUISettings. # noqa: E501 562 :rtype: str 563 """ 564 return self._enable_legacy_sendflow_link 565 566 @enable_legacy_sendflow_link.setter 567 def enable_legacy_sendflow_link(self, enable_legacy_sendflow_link): 568 """Sets the enable_legacy_sendflow_link of this AccountUISettings. 569 570 # noqa: E501 571 572 :param enable_legacy_sendflow_link: The enable_legacy_sendflow_link of this AccountUISettings. # noqa: E501 573 :type: str 574 """ 575 576 self._enable_legacy_sendflow_link = enable_legacy_sendflow_link 577 578 @property 579 def enable_legacy_sendflow_link_metadata(self): 580 """Gets the enable_legacy_sendflow_link_metadata of this AccountUISettings. # noqa: E501 581 582 # noqa: E501 583 584 :return: The enable_legacy_sendflow_link_metadata of this AccountUISettings. # noqa: E501 585 :rtype: SettingsMetadata 586 """ 587 return self._enable_legacy_sendflow_link_metadata 588 589 @enable_legacy_sendflow_link_metadata.setter 590 def enable_legacy_sendflow_link_metadata(self, enable_legacy_sendflow_link_metadata): 591 """Sets the enable_legacy_sendflow_link_metadata of this AccountUISettings. 592 593 # noqa: E501 594 595 :param enable_legacy_sendflow_link_metadata: The enable_legacy_sendflow_link_metadata of this AccountUISettings. # noqa: E501 596 :type: SettingsMetadata 597 """ 598 599 self._enable_legacy_sendflow_link_metadata = enable_legacy_sendflow_link_metadata 600 601 @property 602 def has_external_linked_accounts(self): 603 """Gets the has_external_linked_accounts of this AccountUISettings. # noqa: E501 604 605 # noqa: E501 606 607 :return: The has_external_linked_accounts of this AccountUISettings. # noqa: E501 608 :rtype: str 609 """ 610 return self._has_external_linked_accounts 611 612 @has_external_linked_accounts.setter 613 def has_external_linked_accounts(self, has_external_linked_accounts): 614 """Sets the has_external_linked_accounts of this AccountUISettings. 615 616 # noqa: E501 617 618 :param has_external_linked_accounts: The has_external_linked_accounts of this AccountUISettings. # noqa: E501 619 :type: str 620 """ 621 622 self._has_external_linked_accounts = has_external_linked_accounts 623 624 @property 625 def has_external_linked_accounts_metadata(self): 626 """Gets the has_external_linked_accounts_metadata of this AccountUISettings. # noqa: E501 627 628 # noqa: E501 629 630 :return: The has_external_linked_accounts_metadata of this AccountUISettings. # noqa: E501 631 :rtype: SettingsMetadata 632 """ 633 return self._has_external_linked_accounts_metadata 634 635 @has_external_linked_accounts_metadata.setter 636 def has_external_linked_accounts_metadata(self, has_external_linked_accounts_metadata): 637 """Sets the has_external_linked_accounts_metadata of this AccountUISettings. 638 639 # noqa: E501 640 641 :param has_external_linked_accounts_metadata: The has_external_linked_accounts_metadata of this AccountUISettings. # noqa: E501 642 :type: SettingsMetadata 643 """ 644 645 self._has_external_linked_accounts_metadata = has_external_linked_accounts_metadata 646 647 @property 648 def hide_send_an_envelope(self): 649 """Gets the hide_send_an_envelope of this AccountUISettings. # noqa: E501 650 651 # noqa: E501 652 653 :return: The hide_send_an_envelope of this AccountUISettings. # noqa: E501 654 :rtype: str 655 """ 656 return self._hide_send_an_envelope 657 658 @hide_send_an_envelope.setter 659 def hide_send_an_envelope(self, hide_send_an_envelope): 660 """Sets the hide_send_an_envelope of this AccountUISettings. 661 662 # noqa: E501 663 664 :param hide_send_an_envelope: The hide_send_an_envelope of this AccountUISettings. # noqa: E501 665 :type: str 666 """ 667 668 self._hide_send_an_envelope = hide_send_an_envelope 669 670 @property 671 def hide_send_an_envelope_metadata(self): 672 """Gets the hide_send_an_envelope_metadata of this AccountUISettings. # noqa: E501 673 674 # noqa: E501 675 676 :return: The hide_send_an_envelope_metadata of this AccountUISettings. # noqa: E501 677 :rtype: SettingsMetadata 678 """ 679 return self._hide_send_an_envelope_metadata 680 681 @hide_send_an_envelope_metadata.setter 682 def hide_send_an_envelope_metadata(self, hide_send_an_envelope_metadata): 683 """Sets the hide_send_an_envelope_metadata of this AccountUISettings. 684 685 # noqa: E501 686 687 :param hide_send_an_envelope_metadata: The hide_send_an_envelope_metadata of this AccountUISettings. # noqa: E501 688 :type: SettingsMetadata 689 """ 690 691 self._hide_send_an_envelope_metadata = hide_send_an_envelope_metadata 692 693 @property 694 def hide_use_a_template(self): 695 """Gets the hide_use_a_template of this AccountUISettings. # noqa: E501 696 697 # noqa: E501 698 699 :return: The hide_use_a_template of this AccountUISettings. # noqa: E501 700 :rtype: str 701 """ 702 return self._hide_use_a_template 703 704 @hide_use_a_template.setter 705 def hide_use_a_template(self, hide_use_a_template): 706 """Sets the hide_use_a_template of this AccountUISettings. 707 708 # noqa: E501 709 710 :param hide_use_a_template: The hide_use_a_template of this AccountUISettings. # noqa: E501 711 :type: str 712 """ 713 714 self._hide_use_a_template = hide_use_a_template 715 716 @property 717 def hide_use_a_template_in_prepare(self): 718 """Gets the hide_use_a_template_in_prepare of this AccountUISettings. # noqa: E501 719 720 # noqa: E501 721 722 :return: The hide_use_a_template_in_prepare of this AccountUISettings. # noqa: E501 723 :rtype: str 724 """ 725 return self._hide_use_a_template_in_prepare 726 727 @hide_use_a_template_in_prepare.setter 728 def hide_use_a_template_in_prepare(self, hide_use_a_template_in_prepare): 729 """Sets the hide_use_a_template_in_prepare of this AccountUISettings. 730 731 # noqa: E501 732 733 :param hide_use_a_template_in_prepare: The hide_use_a_template_in_prepare of this AccountUISettings. # noqa: E501 734 :type: str 735 """ 736 737 self._hide_use_a_template_in_prepare = hide_use_a_template_in_prepare 738 739 @property 740 def hide_use_a_template_in_prepare_metadata(self): 741 """Gets the hide_use_a_template_in_prepare_metadata of this AccountUISettings. # noqa: E501 742 743 # noqa: E501 744 745 :return: The hide_use_a_template_in_prepare_metadata of this AccountUISettings. # noqa: E501 746 :rtype: SettingsMetadata 747 """ 748 return self._hide_use_a_template_in_prepare_metadata 749 750 @hide_use_a_template_in_prepare_metadata.setter 751 def hide_use_a_template_in_prepare_metadata(self, hide_use_a_template_in_prepare_metadata): 752 """Sets the hide_use_a_template_in_prepare_metadata of this AccountUISettings. 753 754 # noqa: E501 755 756 :param hide_use_a_template_in_prepare_metadata: The hide_use_a_template_in_prepare_metadata of this AccountUISettings. # noqa: E501 757 :type: SettingsMetadata 758 """ 759 760 self._hide_use_a_template_in_prepare_metadata = hide_use_a_template_in_prepare_metadata 761 762 @property 763 def hide_use_a_template_metadata(self): 764 """Gets the hide_use_a_template_metadata of this AccountUISettings. # noqa: E501 765 766 # noqa: E501 767 768 :return: The hide_use_a_template_metadata of this AccountUISettings. # noqa: E501 769 :rtype: SettingsMetadata 770 """ 771 return self._hide_use_a_template_metadata 772 773 @hide_use_a_template_metadata.setter 774 def hide_use_a_template_metadata(self, hide_use_a_template_metadata): 775 """Sets the hide_use_a_template_metadata of this AccountUISettings. 776 777 # noqa: E501 778 779 :param hide_use_a_template_metadata: The hide_use_a_template_metadata of this AccountUISettings. # noqa: E501 780 :type: SettingsMetadata 781 """ 782 783 self._hide_use_a_template_metadata = hide_use_a_template_metadata 784 785 @property 786 def order_based_recipient_id_generation(self): 787 """Gets the order_based_recipient_id_generation of this AccountUISettings. # noqa: E501 788 789 # noqa: E501 790 791 :return: The order_based_recipient_id_generation of this AccountUISettings. # noqa: E501 792 :rtype: str 793 """ 794 return self._order_based_recipient_id_generation 795 796 @order_based_recipient_id_generation.setter 797 def order_based_recipient_id_generation(self, order_based_recipient_id_generation): 798 """Sets the order_based_recipient_id_generation of this AccountUISettings. 799 800 # noqa: E501 801 802 :param order_based_recipient_id_generation: The order_based_recipient_id_generation of this AccountUISettings. # noqa: E501 803 :type: str 804 """ 805 806 self._order_based_recipient_id_generation = order_based_recipient_id_generation 807 808 @property 809 def order_based_recipient_id_generation_metadata(self): 810 """Gets the order_based_recipient_id_generation_metadata of this AccountUISettings. # noqa: E501 811 812 # noqa: E501 813 814 :return: The order_based_recipient_id_generation_metadata of this AccountUISettings. # noqa: E501 815 :rtype: SettingsMetadata 816 """ 817 return self._order_based_recipient_id_generation_metadata 818 819 @order_based_recipient_id_generation_metadata.setter 820 def order_based_recipient_id_generation_metadata(self, order_based_recipient_id_generation_metadata): 821 """Sets the order_based_recipient_id_generation_metadata of this AccountUISettings. 822 823 # noqa: E501 824 825 :param order_based_recipient_id_generation_metadata: The order_based_recipient_id_generation_metadata of this AccountUISettings. # noqa: E501 826 :type: SettingsMetadata 827 """ 828 829 self._order_based_recipient_id_generation_metadata = order_based_recipient_id_generation_metadata 830 831 @property 832 def remove_envelope_forwarding(self): 833 """Gets the remove_envelope_forwarding of this AccountUISettings. # noqa: E501 834 835 # noqa: E501 836 837 :return: The remove_envelope_forwarding of this AccountUISettings. # noqa: E501 838 :rtype: str 839 """ 840 return self._remove_envelope_forwarding 841 842 @remove_envelope_forwarding.setter 843 def remove_envelope_forwarding(self, remove_envelope_forwarding): 844 """Sets the remove_envelope_forwarding of this AccountUISettings. 845 846 # noqa: E501 847 848 :param remove_envelope_forwarding: The remove_envelope_forwarding of this AccountUISettings. # noqa: E501 849 :type: str 850 """ 851 852 self._remove_envelope_forwarding = remove_envelope_forwarding 853 854 @property 855 def remove_envelope_forwarding_metadata(self): 856 """Gets the remove_envelope_forwarding_metadata of this AccountUISettings. # noqa: E501 857 858 # noqa: E501 859 860 :return: The remove_envelope_forwarding_metadata of this AccountUISettings. # noqa: E501 861 :rtype: SettingsMetadata 862 """ 863 return self._remove_envelope_forwarding_metadata 864 865 @remove_envelope_forwarding_metadata.setter 866 def remove_envelope_forwarding_metadata(self, remove_envelope_forwarding_metadata): 867 """Sets the remove_envelope_forwarding_metadata of this AccountUISettings. 868 869 # noqa: E501 870 871 :param remove_envelope_forwarding_metadata: The remove_envelope_forwarding_metadata of this AccountUISettings. # noqa: E501 872 :type: SettingsMetadata 873 """ 874 875 self._remove_envelope_forwarding_metadata = remove_envelope_forwarding_metadata 876 877 @property 878 def should_redact_access_code(self): 879 """Gets the should_redact_access_code of this AccountUISettings. # noqa: E501 880 881 # noqa: E501 882 883 :return: The should_redact_access_code of this AccountUISettings. # noqa: E501 884 :rtype: str 885 """ 886 return self._should_redact_access_code 887 888 @should_redact_access_code.setter 889 def should_redact_access_code(self, should_redact_access_code): 890 """Sets the should_redact_access_code of this AccountUISettings. 891 892 # noqa: E501 893 894 :param should_redact_access_code: The should_redact_access_code of this AccountUISettings. # noqa: E501 895 :type: str 896 """ 897 898 self._should_redact_access_code = should_redact_access_code 899 900 @property 901 def should_redact_access_code_metadata(self): 902 """Gets the should_redact_access_code_metadata of this AccountUISettings. # noqa: E501 903 904 # noqa: E501 905 906 :return: The should_redact_access_code_metadata of this AccountUISettings. # noqa: E501 907 :rtype: SettingsMetadata 908 """ 909 return self._should_redact_access_code_metadata 910 911 @should_redact_access_code_metadata.setter 912 def should_redact_access_code_metadata(self, should_redact_access_code_metadata): 913 """Sets the should_redact_access_code_metadata of this AccountUISettings. 914 915 # noqa: E501 916 917 :param should_redact_access_code_metadata: The should_redact_access_code_metadata of this AccountUISettings. # noqa: E501 918 :type: SettingsMetadata 919 """ 920 921 self._should_redact_access_code_metadata = should_redact_access_code_metadata 922 923 @property 924 def upload_new_image_to_sign_or_initial(self): 925 """Gets the upload_new_image_to_sign_or_initial of this AccountUISettings. # noqa: E501 926 927 # noqa: E501 928 929 :return: The upload_new_image_to_sign_or_initial of this AccountUISettings. # noqa: E501 930 :rtype: str 931 """ 932 return self._upload_new_image_to_sign_or_initial 933 934 @upload_new_image_to_sign_or_initial.setter 935 def upload_new_image_to_sign_or_initial(self, upload_new_image_to_sign_or_initial): 936 """Sets the upload_new_image_to_sign_or_initial of this AccountUISettings. 937 938 # noqa: E501 939 940 :param upload_new_image_to_sign_or_initial: The upload_new_image_to_sign_or_initial of this AccountUISettings. # noqa: E501 941 :type: str 942 """ 943 944 self._upload_new_image_to_sign_or_initial = upload_new_image_to_sign_or_initial 945 946 @property 947 def upload_new_image_to_sign_or_initial_metadata(self): 948 """Gets the upload_new_image_to_sign_or_initial_metadata of this AccountUISettings. # noqa: E501 949 950 # noqa: E501 951 952 :return: The upload_new_image_to_sign_or_initial_metadata of this AccountUISettings. # noqa: E501 953 :rtype: SettingsMetadata 954 """ 955 return self._upload_new_image_to_sign_or_initial_metadata 956 957 @upload_new_image_to_sign_or_initial_metadata.setter 958 def upload_new_image_to_sign_or_initial_metadata(self, upload_new_image_to_sign_or_initial_metadata): 959 """Sets the upload_new_image_to_sign_or_initial_metadata of this AccountUISettings. 960 961 # noqa: E501 962 963 :param upload_new_image_to_sign_or_initial_metadata: The upload_new_image_to_sign_or_initial_metadata of this AccountUISettings. # noqa: E501 964 :type: SettingsMetadata 965 """ 966 967 self._upload_new_image_to_sign_or_initial_metadata = upload_new_image_to_sign_or_initial_metadata 968 969 def to_dict(self): 970 """Returns the model properties as a dict""" 971 result = {} 972 973 for attr, _ in six.iteritems(self.swagger_types): 974 value = getattr(self, attr) 975 if isinstance(value, list): 976 result[attr] = list(map( 977 lambda x: x.to_dict() if hasattr(x, "to_dict") else x, 978 value 979 )) 980 elif hasattr(value, "to_dict"): 981 result[attr] = value.to_dict() 982 elif isinstance(value, dict): 983 result[attr] = dict(map( 984 lambda item: (item[0], item[1].to_dict()) 985 if hasattr(item[1], "to_dict") else item, 986 value.items() 987 )) 988 else: 989 result[attr] = value 990 if issubclass(AccountUISettings, dict): 991 for key, value in self.items(): 992 result[key] = value 993 994 return result 995 996 def to_str(self): 997 """Returns the string representation of the model""" 998 return pprint.pformat(self.to_dict()) 999 1000 def __repr__(self): 1001 """For `print` and `pprint`""" 1002 return self.to_str() 1003 1004 def __eq__(self, other): 1005 """Returns true if both objects are equal""" 1006 if not isinstance(other, AccountUISettings): 1007 return False 1008 1009 return self.to_dict() == other.to_dict() 1010 1011 def __ne__(self, other): 1012 """Returns true if both objects are not equal""" 1013 if not isinstance(other, AccountUISettings): 1014 return True 1015 1016 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.
110 def __init__(self, _configuration=None, **kwargs): # noqa: E501 111 """AccountUISettings - a model defined in Swagger""" # noqa: E501 112 if _configuration is None: 113 _configuration = Configuration() 114 self._configuration = _configuration 115 116 self._admin_message = None 117 self._allow_users_to_edit_shared_access = None 118 self._allow_users_to_edit_shared_access_metadata = None 119 self._ask_an_admin = None 120 self._clickwrap_schema_version = None 121 self._clickwrap_schema_version_metadata = None 122 self._enable_admin_message = None 123 self._enable_admin_message_metadata = None 124 self._enable_easy_sign_can_use_multi_template_apply = None 125 self._enable_easy_sign_can_use_multi_template_apply_metadata = None 126 self._enable_easy_sign_template_upload = None 127 self._enable_easy_sign_template_upload_metadata = None 128 self._enable_envelope_copy_with_data = None 129 self._enable_envelope_copy_with_data_metadata = None 130 self._enable_envelope_types = None 131 self._enable_envelope_types_metadata = None 132 self._enable_legacy_sendflow_link = None 133 self._enable_legacy_sendflow_link_metadata = None 134 self._has_external_linked_accounts = None 135 self._has_external_linked_accounts_metadata = None 136 self._hide_send_an_envelope = None 137 self._hide_send_an_envelope_metadata = None 138 self._hide_use_a_template = None 139 self._hide_use_a_template_in_prepare = None 140 self._hide_use_a_template_in_prepare_metadata = None 141 self._hide_use_a_template_metadata = None 142 self._order_based_recipient_id_generation = None 143 self._order_based_recipient_id_generation_metadata = None 144 self._remove_envelope_forwarding = None 145 self._remove_envelope_forwarding_metadata = None 146 self._should_redact_access_code = None 147 self._should_redact_access_code_metadata = None 148 self._upload_new_image_to_sign_or_initial = None 149 self._upload_new_image_to_sign_or_initial_metadata = None 150 self.discriminator = None 151 152 setattr(self, "_{}".format('admin_message'), kwargs.get('admin_message', None)) 153 setattr(self, "_{}".format('allow_users_to_edit_shared_access'), kwargs.get('allow_users_to_edit_shared_access', None)) 154 setattr(self, "_{}".format('allow_users_to_edit_shared_access_metadata'), kwargs.get('allow_users_to_edit_shared_access_metadata', None)) 155 setattr(self, "_{}".format('ask_an_admin'), kwargs.get('ask_an_admin', None)) 156 setattr(self, "_{}".format('clickwrap_schema_version'), kwargs.get('clickwrap_schema_version', None)) 157 setattr(self, "_{}".format('clickwrap_schema_version_metadata'), kwargs.get('clickwrap_schema_version_metadata', None)) 158 setattr(self, "_{}".format('enable_admin_message'), kwargs.get('enable_admin_message', None)) 159 setattr(self, "_{}".format('enable_admin_message_metadata'), kwargs.get('enable_admin_message_metadata', None)) 160 setattr(self, "_{}".format('enable_easy_sign_can_use_multi_template_apply'), kwargs.get('enable_easy_sign_can_use_multi_template_apply', None)) 161 setattr(self, "_{}".format('enable_easy_sign_can_use_multi_template_apply_metadata'), kwargs.get('enable_easy_sign_can_use_multi_template_apply_metadata', None)) 162 setattr(self, "_{}".format('enable_easy_sign_template_upload'), kwargs.get('enable_easy_sign_template_upload', None)) 163 setattr(self, "_{}".format('enable_easy_sign_template_upload_metadata'), kwargs.get('enable_easy_sign_template_upload_metadata', None)) 164 setattr(self, "_{}".format('enable_envelope_copy_with_data'), kwargs.get('enable_envelope_copy_with_data', None)) 165 setattr(self, "_{}".format('enable_envelope_copy_with_data_metadata'), kwargs.get('enable_envelope_copy_with_data_metadata', None)) 166 setattr(self, "_{}".format('enable_envelope_types'), kwargs.get('enable_envelope_types', None)) 167 setattr(self, "_{}".format('enable_envelope_types_metadata'), kwargs.get('enable_envelope_types_metadata', None)) 168 setattr(self, "_{}".format('enable_legacy_sendflow_link'), kwargs.get('enable_legacy_sendflow_link', None)) 169 setattr(self, "_{}".format('enable_legacy_sendflow_link_metadata'), kwargs.get('enable_legacy_sendflow_link_metadata', None)) 170 setattr(self, "_{}".format('has_external_linked_accounts'), kwargs.get('has_external_linked_accounts', None)) 171 setattr(self, "_{}".format('has_external_linked_accounts_metadata'), kwargs.get('has_external_linked_accounts_metadata', None)) 172 setattr(self, "_{}".format('hide_send_an_envelope'), kwargs.get('hide_send_an_envelope', None)) 173 setattr(self, "_{}".format('hide_send_an_envelope_metadata'), kwargs.get('hide_send_an_envelope_metadata', None)) 174 setattr(self, "_{}".format('hide_use_a_template'), kwargs.get('hide_use_a_template', None)) 175 setattr(self, "_{}".format('hide_use_a_template_in_prepare'), kwargs.get('hide_use_a_template_in_prepare', None)) 176 setattr(self, "_{}".format('hide_use_a_template_in_prepare_metadata'), kwargs.get('hide_use_a_template_in_prepare_metadata', None)) 177 setattr(self, "_{}".format('hide_use_a_template_metadata'), kwargs.get('hide_use_a_template_metadata', None)) 178 setattr(self, "_{}".format('order_based_recipient_id_generation'), kwargs.get('order_based_recipient_id_generation', None)) 179 setattr(self, "_{}".format('order_based_recipient_id_generation_metadata'), kwargs.get('order_based_recipient_id_generation_metadata', None)) 180 setattr(self, "_{}".format('remove_envelope_forwarding'), kwargs.get('remove_envelope_forwarding', None)) 181 setattr(self, "_{}".format('remove_envelope_forwarding_metadata'), kwargs.get('remove_envelope_forwarding_metadata', None)) 182 setattr(self, "_{}".format('should_redact_access_code'), kwargs.get('should_redact_access_code', None)) 183 setattr(self, "_{}".format('should_redact_access_code_metadata'), kwargs.get('should_redact_access_code_metadata', None)) 184 setattr(self, "_{}".format('upload_new_image_to_sign_or_initial'), kwargs.get('upload_new_image_to_sign_or_initial', None)) 185 setattr(self, "_{}".format('upload_new_image_to_sign_or_initial_metadata'), kwargs.get('upload_new_image_to_sign_or_initial_metadata', None))
AccountUISettings - a model defined in Swagger
Gets the admin_message of this AccountUISettings. # noqa: E501
# noqa: E501
Returns
The admin_message of this AccountUISettings. # noqa: E501
Gets the ask_an_admin of this AccountUISettings. # noqa: E501
# noqa: E501
Returns
The ask_an_admin of this AccountUISettings. # noqa: E501
Gets the clickwrap_schema_version of this AccountUISettings. # noqa: E501
# noqa: E501
Returns
The clickwrap_schema_version of this AccountUISettings. # noqa: E501
Gets the clickwrap_schema_version_metadata of this AccountUISettings. # noqa: E501
# noqa: E501
Returns
The clickwrap_schema_version_metadata of this AccountUISettings. # noqa: E501
Gets the enable_admin_message of this AccountUISettings. # noqa: E501
# noqa: E501
Returns
The enable_admin_message of this AccountUISettings. # noqa: E501
Gets the enable_admin_message_metadata of this AccountUISettings. # noqa: E501
# noqa: E501
Returns
The enable_admin_message_metadata of this AccountUISettings. # noqa: E501
Gets the enable_easy_sign_can_use_multi_template_apply of this AccountUISettings. # noqa: E501
# noqa: E501
Returns
The enable_easy_sign_can_use_multi_template_apply of this AccountUISettings. # noqa: E501
Gets the enable_easy_sign_can_use_multi_template_apply_metadata of this AccountUISettings. # noqa: E501
# noqa: E501
Returns
The enable_easy_sign_can_use_multi_template_apply_metadata of this AccountUISettings. # noqa: E501
Gets the enable_easy_sign_template_upload of this AccountUISettings. # noqa: E501
# noqa: E501
Returns
The enable_easy_sign_template_upload of this AccountUISettings. # noqa: E501
Gets the enable_easy_sign_template_upload_metadata of this AccountUISettings. # noqa: E501
# noqa: E501
Returns
The enable_easy_sign_template_upload_metadata of this AccountUISettings. # noqa: E501
Gets the enable_envelope_copy_with_data of this AccountUISettings. # noqa: E501
# noqa: E501
Returns
The enable_envelope_copy_with_data of this AccountUISettings. # noqa: E501
Gets the enable_envelope_copy_with_data_metadata of this AccountUISettings. # noqa: E501
# noqa: E501
Returns
The enable_envelope_copy_with_data_metadata of this AccountUISettings. # noqa: E501
Gets the enable_envelope_types of this AccountUISettings. # noqa: E501
# noqa: E501
Returns
The enable_envelope_types of this AccountUISettings. # noqa: E501
Gets the enable_envelope_types_metadata of this AccountUISettings. # noqa: E501
# noqa: E501
Returns
The enable_envelope_types_metadata of this AccountUISettings. # noqa: E501
Gets the enable_legacy_sendflow_link of this AccountUISettings. # noqa: E501
# noqa: E501
Returns
The enable_legacy_sendflow_link of this AccountUISettings. # noqa: E501
Gets the enable_legacy_sendflow_link_metadata of this AccountUISettings. # noqa: E501
# noqa: E501
Returns
The enable_legacy_sendflow_link_metadata of this AccountUISettings. # noqa: E501
Gets the has_external_linked_accounts of this AccountUISettings. # noqa: E501
# noqa: E501
Returns
The has_external_linked_accounts of this AccountUISettings. # noqa: E501
Gets the has_external_linked_accounts_metadata of this AccountUISettings. # noqa: E501
# noqa: E501
Returns
The has_external_linked_accounts_metadata of this AccountUISettings. # noqa: E501
Gets the hide_send_an_envelope of this AccountUISettings. # noqa: E501
# noqa: E501
Returns
The hide_send_an_envelope of this AccountUISettings. # noqa: E501
Gets the hide_send_an_envelope_metadata of this AccountUISettings. # noqa: E501
# noqa: E501
Returns
The hide_send_an_envelope_metadata of this AccountUISettings. # noqa: E501
Gets the hide_use_a_template of this AccountUISettings. # noqa: E501
# noqa: E501
Returns
The hide_use_a_template of this AccountUISettings. # noqa: E501
Gets the hide_use_a_template_in_prepare of this AccountUISettings. # noqa: E501
# noqa: E501
Returns
The hide_use_a_template_in_prepare of this AccountUISettings. # noqa: E501
Gets the hide_use_a_template_in_prepare_metadata of this AccountUISettings. # noqa: E501
# noqa: E501
Returns
The hide_use_a_template_in_prepare_metadata of this AccountUISettings. # noqa: E501
Gets the hide_use_a_template_metadata of this AccountUISettings. # noqa: E501
# noqa: E501
Returns
The hide_use_a_template_metadata of this AccountUISettings. # noqa: E501
Gets the order_based_recipient_id_generation of this AccountUISettings. # noqa: E501
# noqa: E501
Returns
The order_based_recipient_id_generation of this AccountUISettings. # noqa: E501
Gets the order_based_recipient_id_generation_metadata of this AccountUISettings. # noqa: E501
# noqa: E501
Returns
The order_based_recipient_id_generation_metadata of this AccountUISettings. # noqa: E501
Gets the remove_envelope_forwarding of this AccountUISettings. # noqa: E501
# noqa: E501
Returns
The remove_envelope_forwarding of this AccountUISettings. # noqa: E501
Gets the remove_envelope_forwarding_metadata of this AccountUISettings. # noqa: E501
# noqa: E501
Returns
The remove_envelope_forwarding_metadata of this AccountUISettings. # noqa: E501
Gets the should_redact_access_code of this AccountUISettings. # noqa: E501
# noqa: E501
Returns
The should_redact_access_code of this AccountUISettings. # noqa: E501
Gets the should_redact_access_code_metadata of this AccountUISettings. # noqa: E501
# noqa: E501
Returns
The should_redact_access_code_metadata of this AccountUISettings. # noqa: E501
Gets the upload_new_image_to_sign_or_initial of this AccountUISettings. # noqa: E501
# noqa: E501
Returns
The upload_new_image_to_sign_or_initial of this AccountUISettings. # noqa: E501
Gets the upload_new_image_to_sign_or_initial_metadata of this AccountUISettings. # noqa: E501
# noqa: E501
Returns
The upload_new_image_to_sign_or_initial_metadata of this AccountUISettings. # noqa: E501
969 def to_dict(self): 970 """Returns the model properties as a dict""" 971 result = {} 972 973 for attr, _ in six.iteritems(self.swagger_types): 974 value = getattr(self, attr) 975 if isinstance(value, list): 976 result[attr] = list(map( 977 lambda x: x.to_dict() if hasattr(x, "to_dict") else x, 978 value 979 )) 980 elif hasattr(value, "to_dict"): 981 result[attr] = value.to_dict() 982 elif isinstance(value, dict): 983 result[attr] = dict(map( 984 lambda item: (item[0], item[1].to_dict()) 985 if hasattr(item[1], "to_dict") else item, 986 value.items() 987 )) 988 else: 989 result[attr] = value 990 if issubclass(AccountUISettings, dict): 991 for key, value in self.items(): 992 result[key] = value 993 994 return result
Returns the model properties as a dict