docusign_esign.models.account_ui_settings

DocuSign REST API

The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. # noqa: E501

OpenAPI spec version: v2.1 Contact: devcenter@docusign.com Generated by: https://github.com/swagger-api/swagger-codegen.git

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

AccountUISettings(_configuration=None, **kwargs)
106    def __init__(self, _configuration=None, **kwargs):  # noqa: E501
107        """AccountUISettings - a model defined in Swagger"""  # noqa: E501
108        if _configuration is None:
109            _configuration = Configuration()
110        self._configuration = _configuration
111
112        self._admin_message = None
113        self._allow_users_to_edit_shared_access = None
114        self._allow_users_to_edit_shared_access_metadata = None
115        self._ask_an_admin = None
116        self._clickwrap_schema_version = None
117        self._clickwrap_schema_version_metadata = None
118        self._enable_admin_message = None
119        self._enable_admin_message_metadata = None
120        self._enable_easy_sign_can_use_multi_template_apply = None
121        self._enable_easy_sign_can_use_multi_template_apply_metadata = None
122        self._enable_easy_sign_template_upload = None
123        self._enable_easy_sign_template_upload_metadata = None
124        self._enable_envelope_copy_with_data = None
125        self._enable_envelope_copy_with_data_metadata = None
126        self._enable_legacy_sendflow_link = None
127        self._enable_legacy_sendflow_link_metadata = None
128        self._has_external_linked_accounts = None
129        self._has_external_linked_accounts_metadata = None
130        self._hide_send_an_envelope = None
131        self._hide_send_an_envelope_metadata = None
132        self._hide_use_a_template = None
133        self._hide_use_a_template_in_prepare = None
134        self._hide_use_a_template_in_prepare_metadata = None
135        self._hide_use_a_template_metadata = None
136        self._order_based_recipient_id_generation = None
137        self._order_based_recipient_id_generation_metadata = None
138        self._remove_envelope_forwarding = None
139        self._remove_envelope_forwarding_metadata = None
140        self._should_redact_access_code = None
141        self._should_redact_access_code_metadata = None
142        self._upload_new_image_to_sign_or_initial = None
143        self._upload_new_image_to_sign_or_initial_metadata = None
144        self.discriminator = None
145
146        setattr(self, "_{}".format('admin_message'), kwargs.get('admin_message', None))
147        setattr(self, "_{}".format('allow_users_to_edit_shared_access'), kwargs.get('allow_users_to_edit_shared_access', None))
148        setattr(self, "_{}".format('allow_users_to_edit_shared_access_metadata'), kwargs.get('allow_users_to_edit_shared_access_metadata', None))
149        setattr(self, "_{}".format('ask_an_admin'), kwargs.get('ask_an_admin', None))
150        setattr(self, "_{}".format('clickwrap_schema_version'), kwargs.get('clickwrap_schema_version', None))
151        setattr(self, "_{}".format('clickwrap_schema_version_metadata'), kwargs.get('clickwrap_schema_version_metadata', None))
152        setattr(self, "_{}".format('enable_admin_message'), kwargs.get('enable_admin_message', None))
153        setattr(self, "_{}".format('enable_admin_message_metadata'), kwargs.get('enable_admin_message_metadata', None))
154        setattr(self, "_{}".format('enable_easy_sign_can_use_multi_template_apply'), kwargs.get('enable_easy_sign_can_use_multi_template_apply', None))
155        setattr(self, "_{}".format('enable_easy_sign_can_use_multi_template_apply_metadata'), kwargs.get('enable_easy_sign_can_use_multi_template_apply_metadata', None))
156        setattr(self, "_{}".format('enable_easy_sign_template_upload'), kwargs.get('enable_easy_sign_template_upload', None))
157        setattr(self, "_{}".format('enable_easy_sign_template_upload_metadata'), kwargs.get('enable_easy_sign_template_upload_metadata', None))
158        setattr(self, "_{}".format('enable_envelope_copy_with_data'), kwargs.get('enable_envelope_copy_with_data', None))
159        setattr(self, "_{}".format('enable_envelope_copy_with_data_metadata'), kwargs.get('enable_envelope_copy_with_data_metadata', None))
160        setattr(self, "_{}".format('enable_legacy_sendflow_link'), kwargs.get('enable_legacy_sendflow_link', None))
161        setattr(self, "_{}".format('enable_legacy_sendflow_link_metadata'), kwargs.get('enable_legacy_sendflow_link_metadata', None))
162        setattr(self, "_{}".format('has_external_linked_accounts'), kwargs.get('has_external_linked_accounts', None))
163        setattr(self, "_{}".format('has_external_linked_accounts_metadata'), kwargs.get('has_external_linked_accounts_metadata', None))
164        setattr(self, "_{}".format('hide_send_an_envelope'), kwargs.get('hide_send_an_envelope', None))
165        setattr(self, "_{}".format('hide_send_an_envelope_metadata'), kwargs.get('hide_send_an_envelope_metadata', None))
166        setattr(self, "_{}".format('hide_use_a_template'), kwargs.get('hide_use_a_template', None))
167        setattr(self, "_{}".format('hide_use_a_template_in_prepare'), kwargs.get('hide_use_a_template_in_prepare', None))
168        setattr(self, "_{}".format('hide_use_a_template_in_prepare_metadata'), kwargs.get('hide_use_a_template_in_prepare_metadata', None))
169        setattr(self, "_{}".format('hide_use_a_template_metadata'), kwargs.get('hide_use_a_template_metadata', None))
170        setattr(self, "_{}".format('order_based_recipient_id_generation'), kwargs.get('order_based_recipient_id_generation', None))
171        setattr(self, "_{}".format('order_based_recipient_id_generation_metadata'), kwargs.get('order_based_recipient_id_generation_metadata', None))
172        setattr(self, "_{}".format('remove_envelope_forwarding'), kwargs.get('remove_envelope_forwarding', None))
173        setattr(self, "_{}".format('remove_envelope_forwarding_metadata'), kwargs.get('remove_envelope_forwarding_metadata', None))
174        setattr(self, "_{}".format('should_redact_access_code'), kwargs.get('should_redact_access_code', None))
175        setattr(self, "_{}".format('should_redact_access_code_metadata'), kwargs.get('should_redact_access_code_metadata', None))
176        setattr(self, "_{}".format('upload_new_image_to_sign_or_initial'), kwargs.get('upload_new_image_to_sign_or_initial', None))
177        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

swagger_types = {'admin_message': 'AdminMessage', 'allow_users_to_edit_shared_access': 'str', 'allow_users_to_edit_shared_access_metadata': 'SettingsMetadata', 'ask_an_admin': 'AskAnAdmin', 'clickwrap_schema_version': 'str', 'clickwrap_schema_version_metadata': 'SettingsMetadata', 'enable_admin_message': 'str', 'enable_admin_message_metadata': 'SettingsMetadata', 'enable_easy_sign_can_use_multi_template_apply': 'str', 'enable_easy_sign_can_use_multi_template_apply_metadata': 'SettingsMetadata', 'enable_easy_sign_template_upload': 'str', 'enable_easy_sign_template_upload_metadata': 'SettingsMetadata', 'enable_envelope_copy_with_data': 'str', 'enable_envelope_copy_with_data_metadata': 'SettingsMetadata', 'enable_legacy_sendflow_link': 'str', 'enable_legacy_sendflow_link_metadata': 'SettingsMetadata', 'has_external_linked_accounts': 'str', 'has_external_linked_accounts_metadata': 'SettingsMetadata', 'hide_send_an_envelope': 'str', 'hide_send_an_envelope_metadata': 'SettingsMetadata', 'hide_use_a_template': 'str', 'hide_use_a_template_in_prepare': 'str', 'hide_use_a_template_in_prepare_metadata': 'SettingsMetadata', 'hide_use_a_template_metadata': 'SettingsMetadata', 'order_based_recipient_id_generation': 'str', 'order_based_recipient_id_generation_metadata': 'SettingsMetadata', 'remove_envelope_forwarding': 'str', 'remove_envelope_forwarding_metadata': 'SettingsMetadata', 'should_redact_access_code': 'str', 'should_redact_access_code_metadata': 'SettingsMetadata', 'upload_new_image_to_sign_or_initial': 'str', 'upload_new_image_to_sign_or_initial_metadata': 'SettingsMetadata'}
attribute_map = {'admin_message': 'adminMessage', 'allow_users_to_edit_shared_access': 'allowUsersToEditSharedAccess', 'allow_users_to_edit_shared_access_metadata': 'allowUsersToEditSharedAccessMetadata', 'ask_an_admin': 'askAnAdmin', 'clickwrap_schema_version': 'clickwrapSchemaVersion', 'clickwrap_schema_version_metadata': 'clickwrapSchemaVersionMetadata', 'enable_admin_message': 'enableAdminMessage', 'enable_admin_message_metadata': 'enableAdminMessageMetadata', 'enable_easy_sign_can_use_multi_template_apply': 'enableEasySignCanUseMultiTemplateApply', 'enable_easy_sign_can_use_multi_template_apply_metadata': 'enableEasySignCanUseMultiTemplateApplyMetadata', 'enable_easy_sign_template_upload': 'enableEasySignTemplateUpload', 'enable_easy_sign_template_upload_metadata': 'enableEasySignTemplateUploadMetadata', 'enable_envelope_copy_with_data': 'enableEnvelopeCopyWithData', 'enable_envelope_copy_with_data_metadata': 'enableEnvelopeCopyWithDataMetadata', 'enable_legacy_sendflow_link': 'enableLegacySendflowLink', 'enable_legacy_sendflow_link_metadata': 'enableLegacySendflowLinkMetadata', 'has_external_linked_accounts': 'hasExternalLinkedAccounts', 'has_external_linked_accounts_metadata': 'hasExternalLinkedAccountsMetadata', 'hide_send_an_envelope': 'hideSendAnEnvelope', 'hide_send_an_envelope_metadata': 'hideSendAnEnvelopeMetadata', 'hide_use_a_template': 'hideUseATemplate', 'hide_use_a_template_in_prepare': 'hideUseATemplateInPrepare', 'hide_use_a_template_in_prepare_metadata': 'hideUseATemplateInPrepareMetadata', 'hide_use_a_template_metadata': 'hideUseATemplateMetadata', 'order_based_recipient_id_generation': 'orderBasedRecipientIdGeneration', 'order_based_recipient_id_generation_metadata': 'orderBasedRecipientIdGenerationMetadata', 'remove_envelope_forwarding': 'removeEnvelopeForwarding', 'remove_envelope_forwarding_metadata': 'removeEnvelopeForwardingMetadata', 'should_redact_access_code': 'shouldRedactAccessCode', 'should_redact_access_code_metadata': 'shouldRedactAccessCodeMetadata', 'upload_new_image_to_sign_or_initial': 'uploadNewImageToSignOrInitial', 'upload_new_image_to_sign_or_initial_metadata': 'uploadNewImageToSignOrInitialMetadata'}
admin_message

Gets the admin_message of this AccountUISettings. # noqa: E501

# noqa: E501

Returns

The admin_message of this AccountUISettings. # noqa: E501

allow_users_to_edit_shared_access

Gets the allow_users_to_edit_shared_access of this AccountUISettings. # noqa: E501

# noqa: E501

Returns

The allow_users_to_edit_shared_access of this AccountUISettings. # noqa: E501

allow_users_to_edit_shared_access_metadata

Gets the allow_users_to_edit_shared_access_metadata of this AccountUISettings. # noqa: E501

# noqa: E501

Returns

The allow_users_to_edit_shared_access_metadata of this AccountUISettings. # noqa: E501

ask_an_admin

Gets the ask_an_admin of this AccountUISettings. # noqa: E501

# noqa: E501

Returns

The ask_an_admin of this AccountUISettings. # noqa: E501

clickwrap_schema_version

Gets the clickwrap_schema_version of this AccountUISettings. # noqa: E501

# noqa: E501

Returns

The clickwrap_schema_version of this AccountUISettings. # noqa: E501

clickwrap_schema_version_metadata

Gets the clickwrap_schema_version_metadata of this AccountUISettings. # noqa: E501

# noqa: E501

Returns

The clickwrap_schema_version_metadata of this AccountUISettings. # noqa: E501

enable_admin_message

Gets the enable_admin_message of this AccountUISettings. # noqa: E501

# noqa: E501

Returns

The enable_admin_message of this AccountUISettings. # noqa: E501

enable_admin_message_metadata

Gets the enable_admin_message_metadata of this AccountUISettings. # noqa: E501

# noqa: E501

Returns

The enable_admin_message_metadata of this AccountUISettings. # noqa: E501

enable_easy_sign_can_use_multi_template_apply

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

enable_easy_sign_can_use_multi_template_apply_metadata

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

enable_easy_sign_template_upload

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

enable_easy_sign_template_upload_metadata

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

enable_envelope_copy_with_data

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

enable_envelope_copy_with_data_metadata

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

has_external_linked_accounts

Gets the has_external_linked_accounts of this AccountUISettings. # noqa: E501

# noqa: E501

Returns

The has_external_linked_accounts of this AccountUISettings. # noqa: E501

has_external_linked_accounts_metadata

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

hide_send_an_envelope

Gets the hide_send_an_envelope of this AccountUISettings. # noqa: E501

# noqa: E501

Returns

The hide_send_an_envelope of this AccountUISettings. # noqa: E501

hide_send_an_envelope_metadata

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

hide_use_a_template

Gets the hide_use_a_template of this AccountUISettings. # noqa: E501

# noqa: E501

Returns

The hide_use_a_template of this AccountUISettings. # noqa: E501

hide_use_a_template_in_prepare

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

hide_use_a_template_in_prepare_metadata

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

hide_use_a_template_metadata

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

order_based_recipient_id_generation

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

order_based_recipient_id_generation_metadata

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

remove_envelope_forwarding

Gets the remove_envelope_forwarding of this AccountUISettings. # noqa: E501

# noqa: E501

Returns

The remove_envelope_forwarding of this AccountUISettings. # noqa: E501

remove_envelope_forwarding_metadata

Gets the remove_envelope_forwarding_metadata of this AccountUISettings. # noqa: E501

# noqa: E501

Returns

The remove_envelope_forwarding_metadata of this AccountUISettings. # noqa: E501

should_redact_access_code

Gets the should_redact_access_code of this AccountUISettings. # noqa: E501

# noqa: E501

Returns

The should_redact_access_code of this AccountUISettings. # noqa: E501

should_redact_access_code_metadata

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

upload_new_image_to_sign_or_initial

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

upload_new_image_to_sign_or_initial_metadata

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

def to_dict(self)
915    def to_dict(self):
916        """Returns the model properties as a dict"""
917        result = {}
918
919        for attr, _ in six.iteritems(self.swagger_types):
920            value = getattr(self, attr)
921            if isinstance(value, list):
922                result[attr] = list(map(
923                    lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
924                    value
925                ))
926            elif hasattr(value, "to_dict"):
927                result[attr] = value.to_dict()
928            elif isinstance(value, dict):
929                result[attr] = dict(map(
930                    lambda item: (item[0], item[1].to_dict())
931                    if hasattr(item[1], "to_dict") else item,
932                    value.items()
933                ))
934            else:
935                result[attr] = value
936        if issubclass(AccountUISettings, dict):
937            for key, value in self.items():
938                result[key] = value
939
940        return result

Returns the model properties as a dict

def to_str(self)
942    def to_str(self):
943        """Returns the string representation of the model"""
944        return pprint.pformat(self.to_dict())

Returns the string representation of the model