docusign_esign.models.draw

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 Draw(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        'allow_signer_upload': 'str',
  37        'anchor_allow_white_space_in_characters': 'str',
  38        'anchor_allow_white_space_in_characters_metadata': 'PropertyMetadata',
  39        'anchor_case_sensitive': 'str',
  40        'anchor_case_sensitive_metadata': 'PropertyMetadata',
  41        'anchor_horizontal_alignment': 'str',
  42        'anchor_horizontal_alignment_metadata': 'PropertyMetadata',
  43        'anchor_ignore_if_not_present': 'str',
  44        'anchor_ignore_if_not_present_metadata': 'PropertyMetadata',
  45        'anchor_match_whole_word': 'str',
  46        'anchor_match_whole_word_metadata': 'PropertyMetadata',
  47        'anchor_string': 'str',
  48        'anchor_string_metadata': 'PropertyMetadata',
  49        'anchor_tab_processor_version': 'str',
  50        'anchor_tab_processor_version_metadata': 'PropertyMetadata',
  51        'anchor_units': 'str',
  52        'anchor_units_metadata': 'PropertyMetadata',
  53        'anchor_x_offset': 'str',
  54        'anchor_x_offset_metadata': 'PropertyMetadata',
  55        'anchor_y_offset': 'str',
  56        'anchor_y_offset_metadata': 'PropertyMetadata',
  57        'caption': 'str',
  58        'caption_metadata': 'PropertyMetadata',
  59        'conditional_parent_label': 'str',
  60        'conditional_parent_label_metadata': 'PropertyMetadata',
  61        'conditional_parent_value': 'str',
  62        'conditional_parent_value_metadata': 'PropertyMetadata',
  63        'custom_tab_id': 'str',
  64        'custom_tab_id_metadata': 'PropertyMetadata',
  65        'document_id': 'str',
  66        'document_id_metadata': 'PropertyMetadata',
  67        'error_details': 'ErrorDetails',
  68        'form_order': 'str',
  69        'form_order_metadata': 'PropertyMetadata',
  70        'form_page_label': 'str',
  71        'form_page_label_metadata': 'PropertyMetadata',
  72        'form_page_number': 'str',
  73        'form_page_number_metadata': 'PropertyMetadata',
  74        'height': 'str',
  75        'height_metadata': 'PropertyMetadata',
  76        'locked': 'str',
  77        'locked_metadata': 'PropertyMetadata',
  78        'merge_field': 'MergeField',
  79        'merge_field_xml': 'str',
  80        'page_number': 'str',
  81        'page_number_metadata': 'PropertyMetadata',
  82        'recipient_id': 'str',
  83        'recipient_id_guid': 'str',
  84        'recipient_id_guid_metadata': 'PropertyMetadata',
  85        'recipient_id_metadata': 'PropertyMetadata',
  86        'required': 'str',
  87        'required_metadata': 'PropertyMetadata',
  88        'shared': 'str',
  89        'shared_metadata': 'PropertyMetadata',
  90        'smart_contract_information': 'SmartContractInformation',
  91        'source': 'str',
  92        'status': 'str',
  93        'status_metadata': 'PropertyMetadata',
  94        'tab_group_labels': 'list[str]',
  95        'tab_group_labels_metadata': 'PropertyMetadata',
  96        'tab_id': 'str',
  97        'tab_id_metadata': 'PropertyMetadata',
  98        'tab_label_metadata': 'PropertyMetadata',
  99        'tab_order': 'str',
 100        'tab_order_metadata': 'PropertyMetadata',
 101        'tab_type': 'str',
 102        'tab_type_metadata': 'PropertyMetadata',
 103        'template_locked': 'str',
 104        'template_locked_metadata': 'PropertyMetadata',
 105        'template_required': 'str',
 106        'template_required_metadata': 'PropertyMetadata',
 107        'tooltip': 'str',
 108        'tool_tip_metadata': 'PropertyMetadata',
 109        'use_background_as_canvas': 'str',
 110        'width': 'str',
 111        'width_metadata': 'PropertyMetadata',
 112        'x_position': 'str',
 113        'x_position_metadata': 'PropertyMetadata',
 114        'y_position': 'str',
 115        'y_position_metadata': 'PropertyMetadata'
 116    }
 117
 118    attribute_map = {
 119        'allow_signer_upload': 'allowSignerUpload',
 120        'anchor_allow_white_space_in_characters': 'anchorAllowWhiteSpaceInCharacters',
 121        'anchor_allow_white_space_in_characters_metadata': 'anchorAllowWhiteSpaceInCharactersMetadata',
 122        'anchor_case_sensitive': 'anchorCaseSensitive',
 123        'anchor_case_sensitive_metadata': 'anchorCaseSensitiveMetadata',
 124        'anchor_horizontal_alignment': 'anchorHorizontalAlignment',
 125        'anchor_horizontal_alignment_metadata': 'anchorHorizontalAlignmentMetadata',
 126        'anchor_ignore_if_not_present': 'anchorIgnoreIfNotPresent',
 127        'anchor_ignore_if_not_present_metadata': 'anchorIgnoreIfNotPresentMetadata',
 128        'anchor_match_whole_word': 'anchorMatchWholeWord',
 129        'anchor_match_whole_word_metadata': 'anchorMatchWholeWordMetadata',
 130        'anchor_string': 'anchorString',
 131        'anchor_string_metadata': 'anchorStringMetadata',
 132        'anchor_tab_processor_version': 'anchorTabProcessorVersion',
 133        'anchor_tab_processor_version_metadata': 'anchorTabProcessorVersionMetadata',
 134        'anchor_units': 'anchorUnits',
 135        'anchor_units_metadata': 'anchorUnitsMetadata',
 136        'anchor_x_offset': 'anchorXOffset',
 137        'anchor_x_offset_metadata': 'anchorXOffsetMetadata',
 138        'anchor_y_offset': 'anchorYOffset',
 139        'anchor_y_offset_metadata': 'anchorYOffsetMetadata',
 140        'caption': 'caption',
 141        'caption_metadata': 'captionMetadata',
 142        'conditional_parent_label': 'conditionalParentLabel',
 143        'conditional_parent_label_metadata': 'conditionalParentLabelMetadata',
 144        'conditional_parent_value': 'conditionalParentValue',
 145        'conditional_parent_value_metadata': 'conditionalParentValueMetadata',
 146        'custom_tab_id': 'customTabId',
 147        'custom_tab_id_metadata': 'customTabIdMetadata',
 148        'document_id': 'documentId',
 149        'document_id_metadata': 'documentIdMetadata',
 150        'error_details': 'errorDetails',
 151        'form_order': 'formOrder',
 152        'form_order_metadata': 'formOrderMetadata',
 153        'form_page_label': 'formPageLabel',
 154        'form_page_label_metadata': 'formPageLabelMetadata',
 155        'form_page_number': 'formPageNumber',
 156        'form_page_number_metadata': 'formPageNumberMetadata',
 157        'height': 'height',
 158        'height_metadata': 'heightMetadata',
 159        'locked': 'locked',
 160        'locked_metadata': 'lockedMetadata',
 161        'merge_field': 'mergeField',
 162        'merge_field_xml': 'mergeFieldXml',
 163        'page_number': 'pageNumber',
 164        'page_number_metadata': 'pageNumberMetadata',
 165        'recipient_id': 'recipientId',
 166        'recipient_id_guid': 'recipientIdGuid',
 167        'recipient_id_guid_metadata': 'recipientIdGuidMetadata',
 168        'recipient_id_metadata': 'recipientIdMetadata',
 169        'required': 'required',
 170        'required_metadata': 'requiredMetadata',
 171        'shared': 'shared',
 172        'shared_metadata': 'sharedMetadata',
 173        'smart_contract_information': 'smartContractInformation',
 174        'source': 'source',
 175        'status': 'status',
 176        'status_metadata': 'statusMetadata',
 177        'tab_group_labels': 'tabGroupLabels',
 178        'tab_group_labels_metadata': 'tabGroupLabelsMetadata',
 179        'tab_id': 'tabId',
 180        'tab_id_metadata': 'tabIdMetadata',
 181        'tab_label_metadata': 'tabLabelMetadata',
 182        'tab_order': 'tabOrder',
 183        'tab_order_metadata': 'tabOrderMetadata',
 184        'tab_type': 'tabType',
 185        'tab_type_metadata': 'tabTypeMetadata',
 186        'template_locked': 'templateLocked',
 187        'template_locked_metadata': 'templateLockedMetadata',
 188        'template_required': 'templateRequired',
 189        'template_required_metadata': 'templateRequiredMetadata',
 190        'tooltip': 'tooltip',
 191        'tool_tip_metadata': 'toolTipMetadata',
 192        'use_background_as_canvas': 'useBackgroundAsCanvas',
 193        'width': 'width',
 194        'width_metadata': 'widthMetadata',
 195        'x_position': 'xPosition',
 196        'x_position_metadata': 'xPositionMetadata',
 197        'y_position': 'yPosition',
 198        'y_position_metadata': 'yPositionMetadata'
 199    }
 200
 201    def __init__(self, _configuration=None, **kwargs):  # noqa: E501
 202        """Draw - a model defined in Swagger"""  # noqa: E501
 203        if _configuration is None:
 204            _configuration = Configuration()
 205        self._configuration = _configuration
 206
 207        self._allow_signer_upload = None
 208        self._anchor_allow_white_space_in_characters = None
 209        self._anchor_allow_white_space_in_characters_metadata = None
 210        self._anchor_case_sensitive = None
 211        self._anchor_case_sensitive_metadata = None
 212        self._anchor_horizontal_alignment = None
 213        self._anchor_horizontal_alignment_metadata = None
 214        self._anchor_ignore_if_not_present = None
 215        self._anchor_ignore_if_not_present_metadata = None
 216        self._anchor_match_whole_word = None
 217        self._anchor_match_whole_word_metadata = None
 218        self._anchor_string = None
 219        self._anchor_string_metadata = None
 220        self._anchor_tab_processor_version = None
 221        self._anchor_tab_processor_version_metadata = None
 222        self._anchor_units = None
 223        self._anchor_units_metadata = None
 224        self._anchor_x_offset = None
 225        self._anchor_x_offset_metadata = None
 226        self._anchor_y_offset = None
 227        self._anchor_y_offset_metadata = None
 228        self._caption = None
 229        self._caption_metadata = None
 230        self._conditional_parent_label = None
 231        self._conditional_parent_label_metadata = None
 232        self._conditional_parent_value = None
 233        self._conditional_parent_value_metadata = None
 234        self._custom_tab_id = None
 235        self._custom_tab_id_metadata = None
 236        self._document_id = None
 237        self._document_id_metadata = None
 238        self._error_details = None
 239        self._form_order = None
 240        self._form_order_metadata = None
 241        self._form_page_label = None
 242        self._form_page_label_metadata = None
 243        self._form_page_number = None
 244        self._form_page_number_metadata = None
 245        self._height = None
 246        self._height_metadata = None
 247        self._locked = None
 248        self._locked_metadata = None
 249        self._merge_field = None
 250        self._merge_field_xml = None
 251        self._page_number = None
 252        self._page_number_metadata = None
 253        self._recipient_id = None
 254        self._recipient_id_guid = None
 255        self._recipient_id_guid_metadata = None
 256        self._recipient_id_metadata = None
 257        self._required = None
 258        self._required_metadata = None
 259        self._shared = None
 260        self._shared_metadata = None
 261        self._smart_contract_information = None
 262        self._source = None
 263        self._status = None
 264        self._status_metadata = None
 265        self._tab_group_labels = None
 266        self._tab_group_labels_metadata = None
 267        self._tab_id = None
 268        self._tab_id_metadata = None
 269        self._tab_label_metadata = None
 270        self._tab_order = None
 271        self._tab_order_metadata = None
 272        self._tab_type = None
 273        self._tab_type_metadata = None
 274        self._template_locked = None
 275        self._template_locked_metadata = None
 276        self._template_required = None
 277        self._template_required_metadata = None
 278        self._tooltip = None
 279        self._tool_tip_metadata = None
 280        self._use_background_as_canvas = None
 281        self._width = None
 282        self._width_metadata = None
 283        self._x_position = None
 284        self._x_position_metadata = None
 285        self._y_position = None
 286        self._y_position_metadata = None
 287        self.discriminator = None
 288
 289        setattr(self, "_{}".format('allow_signer_upload'), kwargs.get('allow_signer_upload', None))
 290        setattr(self, "_{}".format('anchor_allow_white_space_in_characters'), kwargs.get('anchor_allow_white_space_in_characters', None))
 291        setattr(self, "_{}".format('anchor_allow_white_space_in_characters_metadata'), kwargs.get('anchor_allow_white_space_in_characters_metadata', None))
 292        setattr(self, "_{}".format('anchor_case_sensitive'), kwargs.get('anchor_case_sensitive', None))
 293        setattr(self, "_{}".format('anchor_case_sensitive_metadata'), kwargs.get('anchor_case_sensitive_metadata', None))
 294        setattr(self, "_{}".format('anchor_horizontal_alignment'), kwargs.get('anchor_horizontal_alignment', None))
 295        setattr(self, "_{}".format('anchor_horizontal_alignment_metadata'), kwargs.get('anchor_horizontal_alignment_metadata', None))
 296        setattr(self, "_{}".format('anchor_ignore_if_not_present'), kwargs.get('anchor_ignore_if_not_present', None))
 297        setattr(self, "_{}".format('anchor_ignore_if_not_present_metadata'), kwargs.get('anchor_ignore_if_not_present_metadata', None))
 298        setattr(self, "_{}".format('anchor_match_whole_word'), kwargs.get('anchor_match_whole_word', None))
 299        setattr(self, "_{}".format('anchor_match_whole_word_metadata'), kwargs.get('anchor_match_whole_word_metadata', None))
 300        setattr(self, "_{}".format('anchor_string'), kwargs.get('anchor_string', None))
 301        setattr(self, "_{}".format('anchor_string_metadata'), kwargs.get('anchor_string_metadata', None))
 302        setattr(self, "_{}".format('anchor_tab_processor_version'), kwargs.get('anchor_tab_processor_version', None))
 303        setattr(self, "_{}".format('anchor_tab_processor_version_metadata'), kwargs.get('anchor_tab_processor_version_metadata', None))
 304        setattr(self, "_{}".format('anchor_units'), kwargs.get('anchor_units', None))
 305        setattr(self, "_{}".format('anchor_units_metadata'), kwargs.get('anchor_units_metadata', None))
 306        setattr(self, "_{}".format('anchor_x_offset'), kwargs.get('anchor_x_offset', None))
 307        setattr(self, "_{}".format('anchor_x_offset_metadata'), kwargs.get('anchor_x_offset_metadata', None))
 308        setattr(self, "_{}".format('anchor_y_offset'), kwargs.get('anchor_y_offset', None))
 309        setattr(self, "_{}".format('anchor_y_offset_metadata'), kwargs.get('anchor_y_offset_metadata', None))
 310        setattr(self, "_{}".format('caption'), kwargs.get('caption', None))
 311        setattr(self, "_{}".format('caption_metadata'), kwargs.get('caption_metadata', None))
 312        setattr(self, "_{}".format('conditional_parent_label'), kwargs.get('conditional_parent_label', None))
 313        setattr(self, "_{}".format('conditional_parent_label_metadata'), kwargs.get('conditional_parent_label_metadata', None))
 314        setattr(self, "_{}".format('conditional_parent_value'), kwargs.get('conditional_parent_value', None))
 315        setattr(self, "_{}".format('conditional_parent_value_metadata'), kwargs.get('conditional_parent_value_metadata', None))
 316        setattr(self, "_{}".format('custom_tab_id'), kwargs.get('custom_tab_id', None))
 317        setattr(self, "_{}".format('custom_tab_id_metadata'), kwargs.get('custom_tab_id_metadata', None))
 318        setattr(self, "_{}".format('document_id'), kwargs.get('document_id', None))
 319        setattr(self, "_{}".format('document_id_metadata'), kwargs.get('document_id_metadata', None))
 320        setattr(self, "_{}".format('error_details'), kwargs.get('error_details', None))
 321        setattr(self, "_{}".format('form_order'), kwargs.get('form_order', None))
 322        setattr(self, "_{}".format('form_order_metadata'), kwargs.get('form_order_metadata', None))
 323        setattr(self, "_{}".format('form_page_label'), kwargs.get('form_page_label', None))
 324        setattr(self, "_{}".format('form_page_label_metadata'), kwargs.get('form_page_label_metadata', None))
 325        setattr(self, "_{}".format('form_page_number'), kwargs.get('form_page_number', None))
 326        setattr(self, "_{}".format('form_page_number_metadata'), kwargs.get('form_page_number_metadata', None))
 327        setattr(self, "_{}".format('height'), kwargs.get('height', None))
 328        setattr(self, "_{}".format('height_metadata'), kwargs.get('height_metadata', None))
 329        setattr(self, "_{}".format('locked'), kwargs.get('locked', None))
 330        setattr(self, "_{}".format('locked_metadata'), kwargs.get('locked_metadata', None))
 331        setattr(self, "_{}".format('merge_field'), kwargs.get('merge_field', None))
 332        setattr(self, "_{}".format('merge_field_xml'), kwargs.get('merge_field_xml', None))
 333        setattr(self, "_{}".format('page_number'), kwargs.get('page_number', None))
 334        setattr(self, "_{}".format('page_number_metadata'), kwargs.get('page_number_metadata', None))
 335        setattr(self, "_{}".format('recipient_id'), kwargs.get('recipient_id', None))
 336        setattr(self, "_{}".format('recipient_id_guid'), kwargs.get('recipient_id_guid', None))
 337        setattr(self, "_{}".format('recipient_id_guid_metadata'), kwargs.get('recipient_id_guid_metadata', None))
 338        setattr(self, "_{}".format('recipient_id_metadata'), kwargs.get('recipient_id_metadata', None))
 339        setattr(self, "_{}".format('required'), kwargs.get('required', None))
 340        setattr(self, "_{}".format('required_metadata'), kwargs.get('required_metadata', None))
 341        setattr(self, "_{}".format('shared'), kwargs.get('shared', None))
 342        setattr(self, "_{}".format('shared_metadata'), kwargs.get('shared_metadata', None))
 343        setattr(self, "_{}".format('smart_contract_information'), kwargs.get('smart_contract_information', None))
 344        setattr(self, "_{}".format('source'), kwargs.get('source', None))
 345        setattr(self, "_{}".format('status'), kwargs.get('status', None))
 346        setattr(self, "_{}".format('status_metadata'), kwargs.get('status_metadata', None))
 347        setattr(self, "_{}".format('tab_group_labels'), kwargs.get('tab_group_labels', None))
 348        setattr(self, "_{}".format('tab_group_labels_metadata'), kwargs.get('tab_group_labels_metadata', None))
 349        setattr(self, "_{}".format('tab_id'), kwargs.get('tab_id', None))
 350        setattr(self, "_{}".format('tab_id_metadata'), kwargs.get('tab_id_metadata', None))
 351        setattr(self, "_{}".format('tab_label_metadata'), kwargs.get('tab_label_metadata', None))
 352        setattr(self, "_{}".format('tab_order'), kwargs.get('tab_order', None))
 353        setattr(self, "_{}".format('tab_order_metadata'), kwargs.get('tab_order_metadata', None))
 354        setattr(self, "_{}".format('tab_type'), kwargs.get('tab_type', None))
 355        setattr(self, "_{}".format('tab_type_metadata'), kwargs.get('tab_type_metadata', None))
 356        setattr(self, "_{}".format('template_locked'), kwargs.get('template_locked', None))
 357        setattr(self, "_{}".format('template_locked_metadata'), kwargs.get('template_locked_metadata', None))
 358        setattr(self, "_{}".format('template_required'), kwargs.get('template_required', None))
 359        setattr(self, "_{}".format('template_required_metadata'), kwargs.get('template_required_metadata', None))
 360        setattr(self, "_{}".format('tooltip'), kwargs.get('tooltip', None))
 361        setattr(self, "_{}".format('tool_tip_metadata'), kwargs.get('tool_tip_metadata', None))
 362        setattr(self, "_{}".format('use_background_as_canvas'), kwargs.get('use_background_as_canvas', None))
 363        setattr(self, "_{}".format('width'), kwargs.get('width', None))
 364        setattr(self, "_{}".format('width_metadata'), kwargs.get('width_metadata', None))
 365        setattr(self, "_{}".format('x_position'), kwargs.get('x_position', None))
 366        setattr(self, "_{}".format('x_position_metadata'), kwargs.get('x_position_metadata', None))
 367        setattr(self, "_{}".format('y_position'), kwargs.get('y_position', None))
 368        setattr(self, "_{}".format('y_position_metadata'), kwargs.get('y_position_metadata', None))
 369
 370    @property
 371    def allow_signer_upload(self):
 372        """Gets the allow_signer_upload of this Draw.  # noqa: E501
 373
 374          # noqa: E501
 375
 376        :return: The allow_signer_upload of this Draw.  # noqa: E501
 377        :rtype: str
 378        """
 379        return self._allow_signer_upload
 380
 381    @allow_signer_upload.setter
 382    def allow_signer_upload(self, allow_signer_upload):
 383        """Sets the allow_signer_upload of this Draw.
 384
 385          # noqa: E501
 386
 387        :param allow_signer_upload: The allow_signer_upload of this Draw.  # noqa: E501
 388        :type: str
 389        """
 390
 391        self._allow_signer_upload = allow_signer_upload
 392
 393    @property
 394    def anchor_allow_white_space_in_characters(self):
 395        """Gets the anchor_allow_white_space_in_characters of this Draw.  # noqa: E501
 396
 397          # noqa: E501
 398
 399        :return: The anchor_allow_white_space_in_characters of this Draw.  # noqa: E501
 400        :rtype: str
 401        """
 402        return self._anchor_allow_white_space_in_characters
 403
 404    @anchor_allow_white_space_in_characters.setter
 405    def anchor_allow_white_space_in_characters(self, anchor_allow_white_space_in_characters):
 406        """Sets the anchor_allow_white_space_in_characters of this Draw.
 407
 408          # noqa: E501
 409
 410        :param anchor_allow_white_space_in_characters: The anchor_allow_white_space_in_characters of this Draw.  # noqa: E501
 411        :type: str
 412        """
 413
 414        self._anchor_allow_white_space_in_characters = anchor_allow_white_space_in_characters
 415
 416    @property
 417    def anchor_allow_white_space_in_characters_metadata(self):
 418        """Gets the anchor_allow_white_space_in_characters_metadata of this Draw.  # noqa: E501
 419
 420        Metadata that indicates whether the `anchorAllowWhiteSpaceInCharacters` property is editable.  # noqa: E501
 421
 422        :return: The anchor_allow_white_space_in_characters_metadata of this Draw.  # noqa: E501
 423        :rtype: PropertyMetadata
 424        """
 425        return self._anchor_allow_white_space_in_characters_metadata
 426
 427    @anchor_allow_white_space_in_characters_metadata.setter
 428    def anchor_allow_white_space_in_characters_metadata(self, anchor_allow_white_space_in_characters_metadata):
 429        """Sets the anchor_allow_white_space_in_characters_metadata of this Draw.
 430
 431        Metadata that indicates whether the `anchorAllowWhiteSpaceInCharacters` property is editable.  # noqa: E501
 432
 433        :param anchor_allow_white_space_in_characters_metadata: The anchor_allow_white_space_in_characters_metadata of this Draw.  # noqa: E501
 434        :type: PropertyMetadata
 435        """
 436
 437        self._anchor_allow_white_space_in_characters_metadata = anchor_allow_white_space_in_characters_metadata
 438
 439    @property
 440    def anchor_case_sensitive(self):
 441        """Gets the anchor_case_sensitive of this Draw.  # noqa: E501
 442
 443        When set to **true**, the anchor string does not consider case when matching strings in the document. The default value is **true**.  # noqa: E501
 444
 445        :return: The anchor_case_sensitive of this Draw.  # noqa: E501
 446        :rtype: str
 447        """
 448        return self._anchor_case_sensitive
 449
 450    @anchor_case_sensitive.setter
 451    def anchor_case_sensitive(self, anchor_case_sensitive):
 452        """Sets the anchor_case_sensitive of this Draw.
 453
 454        When set to **true**, the anchor string does not consider case when matching strings in the document. The default value is **true**.  # noqa: E501
 455
 456        :param anchor_case_sensitive: The anchor_case_sensitive of this Draw.  # noqa: E501
 457        :type: str
 458        """
 459
 460        self._anchor_case_sensitive = anchor_case_sensitive
 461
 462    @property
 463    def anchor_case_sensitive_metadata(self):
 464        """Gets the anchor_case_sensitive_metadata of this Draw.  # noqa: E501
 465
 466        Metadata that indicates whether the `anchorCaseSensitive` property is editable.  # noqa: E501
 467
 468        :return: The anchor_case_sensitive_metadata of this Draw.  # noqa: E501
 469        :rtype: PropertyMetadata
 470        """
 471        return self._anchor_case_sensitive_metadata
 472
 473    @anchor_case_sensitive_metadata.setter
 474    def anchor_case_sensitive_metadata(self, anchor_case_sensitive_metadata):
 475        """Sets the anchor_case_sensitive_metadata of this Draw.
 476
 477        Metadata that indicates whether the `anchorCaseSensitive` property is editable.  # noqa: E501
 478
 479        :param anchor_case_sensitive_metadata: The anchor_case_sensitive_metadata of this Draw.  # noqa: E501
 480        :type: PropertyMetadata
 481        """
 482
 483        self._anchor_case_sensitive_metadata = anchor_case_sensitive_metadata
 484
 485    @property
 486    def anchor_horizontal_alignment(self):
 487        """Gets the anchor_horizontal_alignment of this Draw.  # noqa: E501
 488
 489        Specifies the alignment of anchor tabs with anchor strings. Possible values are **left** or **right**. The default value is **left**.  # noqa: E501
 490
 491        :return: The anchor_horizontal_alignment of this Draw.  # noqa: E501
 492        :rtype: str
 493        """
 494        return self._anchor_horizontal_alignment
 495
 496    @anchor_horizontal_alignment.setter
 497    def anchor_horizontal_alignment(self, anchor_horizontal_alignment):
 498        """Sets the anchor_horizontal_alignment of this Draw.
 499
 500        Specifies the alignment of anchor tabs with anchor strings. Possible values are **left** or **right**. The default value is **left**.  # noqa: E501
 501
 502        :param anchor_horizontal_alignment: The anchor_horizontal_alignment of this Draw.  # noqa: E501
 503        :type: str
 504        """
 505
 506        self._anchor_horizontal_alignment = anchor_horizontal_alignment
 507
 508    @property
 509    def anchor_horizontal_alignment_metadata(self):
 510        """Gets the anchor_horizontal_alignment_metadata of this Draw.  # noqa: E501
 511
 512        Metadata that indicates whether the `anchorHorizontalAlignment` property is editable.  # noqa: E501
 513
 514        :return: The anchor_horizontal_alignment_metadata of this Draw.  # noqa: E501
 515        :rtype: PropertyMetadata
 516        """
 517        return self._anchor_horizontal_alignment_metadata
 518
 519    @anchor_horizontal_alignment_metadata.setter
 520    def anchor_horizontal_alignment_metadata(self, anchor_horizontal_alignment_metadata):
 521        """Sets the anchor_horizontal_alignment_metadata of this Draw.
 522
 523        Metadata that indicates whether the `anchorHorizontalAlignment` property is editable.  # noqa: E501
 524
 525        :param anchor_horizontal_alignment_metadata: The anchor_horizontal_alignment_metadata of this Draw.  # noqa: E501
 526        :type: PropertyMetadata
 527        """
 528
 529        self._anchor_horizontal_alignment_metadata = anchor_horizontal_alignment_metadata
 530
 531    @property
 532    def anchor_ignore_if_not_present(self):
 533        """Gets the anchor_ignore_if_not_present of this Draw.  # noqa: E501
 534
 535        When set to **true**, this tab is ignored if anchorString is not found in the document.  # noqa: E501
 536
 537        :return: The anchor_ignore_if_not_present of this Draw.  # noqa: E501
 538        :rtype: str
 539        """
 540        return self._anchor_ignore_if_not_present
 541
 542    @anchor_ignore_if_not_present.setter
 543    def anchor_ignore_if_not_present(self, anchor_ignore_if_not_present):
 544        """Sets the anchor_ignore_if_not_present of this Draw.
 545
 546        When set to **true**, this tab is ignored if anchorString is not found in the document.  # noqa: E501
 547
 548        :param anchor_ignore_if_not_present: The anchor_ignore_if_not_present of this Draw.  # noqa: E501
 549        :type: str
 550        """
 551
 552        self._anchor_ignore_if_not_present = anchor_ignore_if_not_present
 553
 554    @property
 555    def anchor_ignore_if_not_present_metadata(self):
 556        """Gets the anchor_ignore_if_not_present_metadata of this Draw.  # noqa: E501
 557
 558        Metadata that indicates whether the `anchorIgnoreIfNotPresent` property is editable.  # noqa: E501
 559
 560        :return: The anchor_ignore_if_not_present_metadata of this Draw.  # noqa: E501
 561        :rtype: PropertyMetadata
 562        """
 563        return self._anchor_ignore_if_not_present_metadata
 564
 565    @anchor_ignore_if_not_present_metadata.setter
 566    def anchor_ignore_if_not_present_metadata(self, anchor_ignore_if_not_present_metadata):
 567        """Sets the anchor_ignore_if_not_present_metadata of this Draw.
 568
 569        Metadata that indicates whether the `anchorIgnoreIfNotPresent` property is editable.  # noqa: E501
 570
 571        :param anchor_ignore_if_not_present_metadata: The anchor_ignore_if_not_present_metadata of this Draw.  # noqa: E501
 572        :type: PropertyMetadata
 573        """
 574
 575        self._anchor_ignore_if_not_present_metadata = anchor_ignore_if_not_present_metadata
 576
 577    @property
 578    def anchor_match_whole_word(self):
 579        """Gets the anchor_match_whole_word of this Draw.  # noqa: E501
 580
 581        When set to **true**, the anchor string in this tab matches whole words only (strings embedded in other strings are ignored.) The default value is **true**.  # noqa: E501
 582
 583        :return: The anchor_match_whole_word of this Draw.  # noqa: E501
 584        :rtype: str
 585        """
 586        return self._anchor_match_whole_word
 587
 588    @anchor_match_whole_word.setter
 589    def anchor_match_whole_word(self, anchor_match_whole_word):
 590        """Sets the anchor_match_whole_word of this Draw.
 591
 592        When set to **true**, the anchor string in this tab matches whole words only (strings embedded in other strings are ignored.) The default value is **true**.  # noqa: E501
 593
 594        :param anchor_match_whole_word: The anchor_match_whole_word of this Draw.  # noqa: E501
 595        :type: str
 596        """
 597
 598        self._anchor_match_whole_word = anchor_match_whole_word
 599
 600    @property
 601    def anchor_match_whole_word_metadata(self):
 602        """Gets the anchor_match_whole_word_metadata of this Draw.  # noqa: E501
 603
 604        Metadata that indicates whether the `anchorMatchWholeWord` property is editable.  # noqa: E501
 605
 606        :return: The anchor_match_whole_word_metadata of this Draw.  # noqa: E501
 607        :rtype: PropertyMetadata
 608        """
 609        return self._anchor_match_whole_word_metadata
 610
 611    @anchor_match_whole_word_metadata.setter
 612    def anchor_match_whole_word_metadata(self, anchor_match_whole_word_metadata):
 613        """Sets the anchor_match_whole_word_metadata of this Draw.
 614
 615        Metadata that indicates whether the `anchorMatchWholeWord` property is editable.  # noqa: E501
 616
 617        :param anchor_match_whole_word_metadata: The anchor_match_whole_word_metadata of this Draw.  # noqa: E501
 618        :type: PropertyMetadata
 619        """
 620
 621        self._anchor_match_whole_word_metadata = anchor_match_whole_word_metadata
 622
 623    @property
 624    def anchor_string(self):
 625        """Gets the anchor_string of this Draw.  # noqa: E501
 626
 627        Anchor text information for a radio button.  # noqa: E501
 628
 629        :return: The anchor_string of this Draw.  # noqa: E501
 630        :rtype: str
 631        """
 632        return self._anchor_string
 633
 634    @anchor_string.setter
 635    def anchor_string(self, anchor_string):
 636        """Sets the anchor_string of this Draw.
 637
 638        Anchor text information for a radio button.  # noqa: E501
 639
 640        :param anchor_string: The anchor_string of this Draw.  # noqa: E501
 641        :type: str
 642        """
 643
 644        self._anchor_string = anchor_string
 645
 646    @property
 647    def anchor_string_metadata(self):
 648        """Gets the anchor_string_metadata of this Draw.  # noqa: E501
 649
 650        Metadata that indicates whether the `anchorString` property is editable.  # noqa: E501
 651
 652        :return: The anchor_string_metadata of this Draw.  # noqa: E501
 653        :rtype: PropertyMetadata
 654        """
 655        return self._anchor_string_metadata
 656
 657    @anchor_string_metadata.setter
 658    def anchor_string_metadata(self, anchor_string_metadata):
 659        """Sets the anchor_string_metadata of this Draw.
 660
 661        Metadata that indicates whether the `anchorString` property is editable.  # noqa: E501
 662
 663        :param anchor_string_metadata: The anchor_string_metadata of this Draw.  # noqa: E501
 664        :type: PropertyMetadata
 665        """
 666
 667        self._anchor_string_metadata = anchor_string_metadata
 668
 669    @property
 670    def anchor_tab_processor_version(self):
 671        """Gets the anchor_tab_processor_version of this Draw.  # noqa: E501
 672
 673          # noqa: E501
 674
 675        :return: The anchor_tab_processor_version of this Draw.  # noqa: E501
 676        :rtype: str
 677        """
 678        return self._anchor_tab_processor_version
 679
 680    @anchor_tab_processor_version.setter
 681    def anchor_tab_processor_version(self, anchor_tab_processor_version):
 682        """Sets the anchor_tab_processor_version of this Draw.
 683
 684          # noqa: E501
 685
 686        :param anchor_tab_processor_version: The anchor_tab_processor_version of this Draw.  # noqa: E501
 687        :type: str
 688        """
 689
 690        self._anchor_tab_processor_version = anchor_tab_processor_version
 691
 692    @property
 693    def anchor_tab_processor_version_metadata(self):
 694        """Gets the anchor_tab_processor_version_metadata of this Draw.  # noqa: E501
 695
 696        Reserved for DocuSign.  # noqa: E501
 697
 698        :return: The anchor_tab_processor_version_metadata of this Draw.  # noqa: E501
 699        :rtype: PropertyMetadata
 700        """
 701        return self._anchor_tab_processor_version_metadata
 702
 703    @anchor_tab_processor_version_metadata.setter
 704    def anchor_tab_processor_version_metadata(self, anchor_tab_processor_version_metadata):
 705        """Sets the anchor_tab_processor_version_metadata of this Draw.
 706
 707        Reserved for DocuSign.  # noqa: E501
 708
 709        :param anchor_tab_processor_version_metadata: The anchor_tab_processor_version_metadata of this Draw.  # noqa: E501
 710        :type: PropertyMetadata
 711        """
 712
 713        self._anchor_tab_processor_version_metadata = anchor_tab_processor_version_metadata
 714
 715    @property
 716    def anchor_units(self):
 717        """Gets the anchor_units of this Draw.  # noqa: E501
 718
 719        Specifies units of the X and Y offset. Units could be pixels, millimeters, centimeters, or inches.  # noqa: E501
 720
 721        :return: The anchor_units of this Draw.  # noqa: E501
 722        :rtype: str
 723        """
 724        return self._anchor_units
 725
 726    @anchor_units.setter
 727    def anchor_units(self, anchor_units):
 728        """Sets the anchor_units of this Draw.
 729
 730        Specifies units of the X and Y offset. Units could be pixels, millimeters, centimeters, or inches.  # noqa: E501
 731
 732        :param anchor_units: The anchor_units of this Draw.  # noqa: E501
 733        :type: str
 734        """
 735
 736        self._anchor_units = anchor_units
 737
 738    @property
 739    def anchor_units_metadata(self):
 740        """Gets the anchor_units_metadata of this Draw.  # noqa: E501
 741
 742        Metadata that indicates whether the `anchorUnits` property is editable.  # noqa: E501
 743
 744        :return: The anchor_units_metadata of this Draw.  # noqa: E501
 745        :rtype: PropertyMetadata
 746        """
 747        return self._anchor_units_metadata
 748
 749    @anchor_units_metadata.setter
 750    def anchor_units_metadata(self, anchor_units_metadata):
 751        """Sets the anchor_units_metadata of this Draw.
 752
 753        Metadata that indicates whether the `anchorUnits` property is editable.  # noqa: E501
 754
 755        :param anchor_units_metadata: The anchor_units_metadata of this Draw.  # noqa: E501
 756        :type: PropertyMetadata
 757        """
 758
 759        self._anchor_units_metadata = anchor_units_metadata
 760
 761    @property
 762    def anchor_x_offset(self):
 763        """Gets the anchor_x_offset of this Draw.  # noqa: E501
 764
 765        Specifies the X axis location of the tab, in anchorUnits, relative to the anchorString.  # noqa: E501
 766
 767        :return: The anchor_x_offset of this Draw.  # noqa: E501
 768        :rtype: str
 769        """
 770        return self._anchor_x_offset
 771
 772    @anchor_x_offset.setter
 773    def anchor_x_offset(self, anchor_x_offset):
 774        """Sets the anchor_x_offset of this Draw.
 775
 776        Specifies the X axis location of the tab, in anchorUnits, relative to the anchorString.  # noqa: E501
 777
 778        :param anchor_x_offset: The anchor_x_offset of this Draw.  # noqa: E501
 779        :type: str
 780        """
 781
 782        self._anchor_x_offset = anchor_x_offset
 783
 784    @property
 785    def anchor_x_offset_metadata(self):
 786        """Gets the anchor_x_offset_metadata of this Draw.  # noqa: E501
 787
 788        Metadata that indicates whether the `anchorXOffset` property is editable.  # noqa: E501
 789
 790        :return: The anchor_x_offset_metadata of this Draw.  # noqa: E501
 791        :rtype: PropertyMetadata
 792        """
 793        return self._anchor_x_offset_metadata
 794
 795    @anchor_x_offset_metadata.setter
 796    def anchor_x_offset_metadata(self, anchor_x_offset_metadata):
 797        """Sets the anchor_x_offset_metadata of this Draw.
 798
 799        Metadata that indicates whether the `anchorXOffset` property is editable.  # noqa: E501
 800
 801        :param anchor_x_offset_metadata: The anchor_x_offset_metadata of this Draw.  # noqa: E501
 802        :type: PropertyMetadata
 803        """
 804
 805        self._anchor_x_offset_metadata = anchor_x_offset_metadata
 806
 807    @property
 808    def anchor_y_offset(self):
 809        """Gets the anchor_y_offset of this Draw.  # noqa: E501
 810
 811        Specifies the Y axis location of the tab, in anchorUnits, relative to the anchorString.  # noqa: E501
 812
 813        :return: The anchor_y_offset of this Draw.  # noqa: E501
 814        :rtype: str
 815        """
 816        return self._anchor_y_offset
 817
 818    @anchor_y_offset.setter
 819    def anchor_y_offset(self, anchor_y_offset):
 820        """Sets the anchor_y_offset of this Draw.
 821
 822        Specifies the Y axis location of the tab, in anchorUnits, relative to the anchorString.  # noqa: E501
 823
 824        :param anchor_y_offset: The anchor_y_offset of this Draw.  # noqa: E501
 825        :type: str
 826        """
 827
 828        self._anchor_y_offset = anchor_y_offset
 829
 830    @property
 831    def anchor_y_offset_metadata(self):
 832        """Gets the anchor_y_offset_metadata of this Draw.  # noqa: E501
 833
 834        Metadata that indicates whether the `anchorYOffset` property is editable.  # noqa: E501
 835
 836        :return: The anchor_y_offset_metadata of this Draw.  # noqa: E501
 837        :rtype: PropertyMetadata
 838        """
 839        return self._anchor_y_offset_metadata
 840
 841    @anchor_y_offset_metadata.setter
 842    def anchor_y_offset_metadata(self, anchor_y_offset_metadata):
 843        """Sets the anchor_y_offset_metadata of this Draw.
 844
 845        Metadata that indicates whether the `anchorYOffset` property is editable.  # noqa: E501
 846
 847        :param anchor_y_offset_metadata: The anchor_y_offset_metadata of this Draw.  # noqa: E501
 848        :type: PropertyMetadata
 849        """
 850
 851        self._anchor_y_offset_metadata = anchor_y_offset_metadata
 852
 853    @property
 854    def caption(self):
 855        """Gets the caption of this Draw.  # noqa: E501
 856
 857          # noqa: E501
 858
 859        :return: The caption of this Draw.  # noqa: E501
 860        :rtype: str
 861        """
 862        return self._caption
 863
 864    @caption.setter
 865    def caption(self, caption):
 866        """Sets the caption of this Draw.
 867
 868          # noqa: E501
 869
 870        :param caption: The caption of this Draw.  # noqa: E501
 871        :type: str
 872        """
 873
 874        self._caption = caption
 875
 876    @property
 877    def caption_metadata(self):
 878        """Gets the caption_metadata of this Draw.  # noqa: E501
 879
 880          # noqa: E501
 881
 882        :return: The caption_metadata of this Draw.  # noqa: E501
 883        :rtype: PropertyMetadata
 884        """
 885        return self._caption_metadata
 886
 887    @caption_metadata.setter
 888    def caption_metadata(self, caption_metadata):
 889        """Sets the caption_metadata of this Draw.
 890
 891          # noqa: E501
 892
 893        :param caption_metadata: The caption_metadata of this Draw.  # noqa: E501
 894        :type: PropertyMetadata
 895        """
 896
 897        self._caption_metadata = caption_metadata
 898
 899    @property
 900    def conditional_parent_label(self):
 901        """Gets the conditional_parent_label of this Draw.  # noqa: E501
 902
 903        For conditional fields this is the TabLabel of the parent tab that controls this tab's visibility.  # noqa: E501
 904
 905        :return: The conditional_parent_label of this Draw.  # noqa: E501
 906        :rtype: str
 907        """
 908        return self._conditional_parent_label
 909
 910    @conditional_parent_label.setter
 911    def conditional_parent_label(self, conditional_parent_label):
 912        """Sets the conditional_parent_label of this Draw.
 913
 914        For conditional fields this is the TabLabel of the parent tab that controls this tab's visibility.  # noqa: E501
 915
 916        :param conditional_parent_label: The conditional_parent_label of this Draw.  # noqa: E501
 917        :type: str
 918        """
 919
 920        self._conditional_parent_label = conditional_parent_label
 921
 922    @property
 923    def conditional_parent_label_metadata(self):
 924        """Gets the conditional_parent_label_metadata of this Draw.  # noqa: E501
 925
 926        Metadata that indicates whether the `conditionalParentLabel` property is editable.  # noqa: E501
 927
 928        :return: The conditional_parent_label_metadata of this Draw.  # noqa: E501
 929        :rtype: PropertyMetadata
 930        """
 931        return self._conditional_parent_label_metadata
 932
 933    @conditional_parent_label_metadata.setter
 934    def conditional_parent_label_metadata(self, conditional_parent_label_metadata):
 935        """Sets the conditional_parent_label_metadata of this Draw.
 936
 937        Metadata that indicates whether the `conditionalParentLabel` property is editable.  # noqa: E501
 938
 939        :param conditional_parent_label_metadata: The conditional_parent_label_metadata of this Draw.  # noqa: E501
 940        :type: PropertyMetadata
 941        """
 942
 943        self._conditional_parent_label_metadata = conditional_parent_label_metadata
 944
 945    @property
 946    def conditional_parent_value(self):
 947        """Gets the conditional_parent_value of this Draw.  # noqa: E501
 948
 949        For conditional fields, this is the value of the parent tab that controls the tab's visibility.  If the parent tab is a Checkbox, Radio button, Optional Signature, or Optional Initial use \"on\" as the value to show that the parent tab is active.   # noqa: E501
 950
 951        :return: The conditional_parent_value of this Draw.  # noqa: E501
 952        :rtype: str
 953        """
 954        return self._conditional_parent_value
 955
 956    @conditional_parent_value.setter
 957    def conditional_parent_value(self, conditional_parent_value):
 958        """Sets the conditional_parent_value of this Draw.
 959
 960        For conditional fields, this is the value of the parent tab that controls the tab's visibility.  If the parent tab is a Checkbox, Radio button, Optional Signature, or Optional Initial use \"on\" as the value to show that the parent tab is active.   # noqa: E501
 961
 962        :param conditional_parent_value: The conditional_parent_value of this Draw.  # noqa: E501
 963        :type: str
 964        """
 965
 966        self._conditional_parent_value = conditional_parent_value
 967
 968    @property
 969    def conditional_parent_value_metadata(self):
 970        """Gets the conditional_parent_value_metadata of this Draw.  # noqa: E501
 971
 972        Metadata that indicates whether the `conditionalParentValue` property is editable.  # noqa: E501
 973
 974        :return: The conditional_parent_value_metadata of this Draw.  # noqa: E501
 975        :rtype: PropertyMetadata
 976        """
 977        return self._conditional_parent_value_metadata
 978
 979    @conditional_parent_value_metadata.setter
 980    def conditional_parent_value_metadata(self, conditional_parent_value_metadata):
 981        """Sets the conditional_parent_value_metadata of this Draw.
 982
 983        Metadata that indicates whether the `conditionalParentValue` property is editable.  # noqa: E501
 984
 985        :param conditional_parent_value_metadata: The conditional_parent_value_metadata of this Draw.  # noqa: E501
 986        :type: PropertyMetadata
 987        """
 988
 989        self._conditional_parent_value_metadata = conditional_parent_value_metadata
 990
 991    @property
 992    def custom_tab_id(self):
 993        """Gets the custom_tab_id of this Draw.  # noqa: E501
 994
 995        The DocuSign generated custom tab ID for the custom tab to be applied. This can only be used when adding new tabs for a recipient. When used, the new tab inherits all the custom tab properties.  # noqa: E501
 996
 997        :return: The custom_tab_id of this Draw.  # noqa: E501
 998        :rtype: str
 999        """
1000        return self._custom_tab_id
1001
1002    @custom_tab_id.setter
1003    def custom_tab_id(self, custom_tab_id):
1004        """Sets the custom_tab_id of this Draw.
1005
1006        The DocuSign generated custom tab ID for the custom tab to be applied. This can only be used when adding new tabs for a recipient. When used, the new tab inherits all the custom tab properties.  # noqa: E501
1007
1008        :param custom_tab_id: The custom_tab_id of this Draw.  # noqa: E501
1009        :type: str
1010        """
1011
1012        self._custom_tab_id = custom_tab_id
1013
1014    @property
1015    def custom_tab_id_metadata(self):
1016        """Gets the custom_tab_id_metadata of this Draw.  # noqa: E501
1017
1018        Metadata that indicates whether the `customTabId` property is editable.  # noqa: E501
1019
1020        :return: The custom_tab_id_metadata of this Draw.  # noqa: E501
1021        :rtype: PropertyMetadata
1022        """
1023        return self._custom_tab_id_metadata
1024
1025    @custom_tab_id_metadata.setter
1026    def custom_tab_id_metadata(self, custom_tab_id_metadata):
1027        """Sets the custom_tab_id_metadata of this Draw.
1028
1029        Metadata that indicates whether the `customTabId` property is editable.  # noqa: E501
1030
1031        :param custom_tab_id_metadata: The custom_tab_id_metadata of this Draw.  # noqa: E501
1032        :type: PropertyMetadata
1033        """
1034
1035        self._custom_tab_id_metadata = custom_tab_id_metadata
1036
1037    @property
1038    def document_id(self):
1039        """Gets the document_id of this Draw.  # noqa: E501
1040
1041        Specifies the document ID number that the tab is placed on. This must refer to an existing Document's ID attribute.  # noqa: E501
1042
1043        :return: The document_id of this Draw.  # noqa: E501
1044        :rtype: str
1045        """
1046        return self._document_id
1047
1048    @document_id.setter
1049    def document_id(self, document_id):
1050        """Sets the document_id of this Draw.
1051
1052        Specifies the document ID number that the tab is placed on. This must refer to an existing Document's ID attribute.  # noqa: E501
1053
1054        :param document_id: The document_id of this Draw.  # noqa: E501
1055        :type: str
1056        """
1057
1058        self._document_id = document_id
1059
1060    @property
1061    def document_id_metadata(self):
1062        """Gets the document_id_metadata of this Draw.  # noqa: E501
1063
1064        Metadata that indicates whether the `documentId` property is editable.  # noqa: E501
1065
1066        :return: The document_id_metadata of this Draw.  # noqa: E501
1067        :rtype: PropertyMetadata
1068        """
1069        return self._document_id_metadata
1070
1071    @document_id_metadata.setter
1072    def document_id_metadata(self, document_id_metadata):
1073        """Sets the document_id_metadata of this Draw.
1074
1075        Metadata that indicates whether the `documentId` property is editable.  # noqa: E501
1076
1077        :param document_id_metadata: The document_id_metadata of this Draw.  # noqa: E501
1078        :type: PropertyMetadata
1079        """
1080
1081        self._document_id_metadata = document_id_metadata
1082
1083    @property
1084    def error_details(self):
1085        """Gets the error_details of this Draw.  # noqa: E501
1086
1087        Array or errors.  # noqa: E501
1088
1089        :return: The error_details of this Draw.  # noqa: E501
1090        :rtype: ErrorDetails
1091        """
1092        return self._error_details
1093
1094    @error_details.setter
1095    def error_details(self, error_details):
1096        """Sets the error_details of this Draw.
1097
1098        Array or errors.  # noqa: E501
1099
1100        :param error_details: The error_details of this Draw.  # noqa: E501
1101        :type: ErrorDetails
1102        """
1103
1104        self._error_details = error_details
1105
1106    @property
1107    def form_order(self):
1108        """Gets the form_order of this Draw.  # noqa: E501
1109
1110          # noqa: E501
1111
1112        :return: The form_order of this Draw.  # noqa: E501
1113        :rtype: str
1114        """
1115        return self._form_order
1116
1117    @form_order.setter
1118    def form_order(self, form_order):
1119        """Sets the form_order of this Draw.
1120
1121          # noqa: E501
1122
1123        :param form_order: The form_order of this Draw.  # noqa: E501
1124        :type: str
1125        """
1126
1127        self._form_order = form_order
1128
1129    @property
1130    def form_order_metadata(self):
1131        """Gets the form_order_metadata of this Draw.  # noqa: E501
1132
1133        Metadata that indicates whether the `formOrder` property is editable.  # noqa: E501
1134
1135        :return: The form_order_metadata of this Draw.  # noqa: E501
1136        :rtype: PropertyMetadata
1137        """
1138        return self._form_order_metadata
1139
1140    @form_order_metadata.setter
1141    def form_order_metadata(self, form_order_metadata):
1142        """Sets the form_order_metadata of this Draw.
1143
1144        Metadata that indicates whether the `formOrder` property is editable.  # noqa: E501
1145
1146        :param form_order_metadata: The form_order_metadata of this Draw.  # noqa: E501
1147        :type: PropertyMetadata
1148        """
1149
1150        self._form_order_metadata = form_order_metadata
1151
1152    @property
1153    def form_page_label(self):
1154        """Gets the form_page_label of this Draw.  # noqa: E501
1155
1156          # noqa: E501
1157
1158        :return: The form_page_label of this Draw.  # noqa: E501
1159        :rtype: str
1160        """
1161        return self._form_page_label
1162
1163    @form_page_label.setter
1164    def form_page_label(self, form_page_label):
1165        """Sets the form_page_label of this Draw.
1166
1167          # noqa: E501
1168
1169        :param form_page_label: The form_page_label of this Draw.  # noqa: E501
1170        :type: str
1171        """
1172
1173        self._form_page_label = form_page_label
1174
1175    @property
1176    def form_page_label_metadata(self):
1177        """Gets the form_page_label_metadata of this Draw.  # noqa: E501
1178
1179        Metadata that indicates whether the `formPageLabel` property is editable.  # noqa: E501
1180
1181        :return: The form_page_label_metadata of this Draw.  # noqa: E501
1182        :rtype: PropertyMetadata
1183        """
1184        return self._form_page_label_metadata
1185
1186    @form_page_label_metadata.setter
1187    def form_page_label_metadata(self, form_page_label_metadata):
1188        """Sets the form_page_label_metadata of this Draw.
1189
1190        Metadata that indicates whether the `formPageLabel` property is editable.  # noqa: E501
1191
1192        :param form_page_label_metadata: The form_page_label_metadata of this Draw.  # noqa: E501
1193        :type: PropertyMetadata
1194        """
1195
1196        self._form_page_label_metadata = form_page_label_metadata
1197
1198    @property
1199    def form_page_number(self):
1200        """Gets the form_page_number of this Draw.  # noqa: E501
1201
1202          # noqa: E501
1203
1204        :return: The form_page_number of this Draw.  # noqa: E501
1205        :rtype: str
1206        """
1207        return self._form_page_number
1208
1209    @form_page_number.setter
1210    def form_page_number(self, form_page_number):
1211        """Sets the form_page_number of this Draw.
1212
1213          # noqa: E501
1214
1215        :param form_page_number: The form_page_number of this Draw.  # noqa: E501
1216        :type: str
1217        """
1218
1219        self._form_page_number = form_page_number
1220
1221    @property
1222    def form_page_number_metadata(self):
1223        """Gets the form_page_number_metadata of this Draw.  # noqa: E501
1224
1225        Metadata that indicates whether the `fromPageNumber` property is editable.  # noqa: E501
1226
1227        :return: The form_page_number_metadata of this Draw.  # noqa: E501
1228        :rtype: PropertyMetadata
1229        """
1230        return self._form_page_number_metadata
1231
1232    @form_page_number_metadata.setter
1233    def form_page_number_metadata(self, form_page_number_metadata):
1234        """Sets the form_page_number_metadata of this Draw.
1235
1236        Metadata that indicates whether the `fromPageNumber` property is editable.  # noqa: E501
1237
1238        :param form_page_number_metadata: The form_page_number_metadata of this Draw.  # noqa: E501
1239        :type: PropertyMetadata
1240        """
1241
1242        self._form_page_number_metadata = form_page_number_metadata
1243
1244    @property
1245    def height(self):
1246        """Gets the height of this Draw.  # noqa: E501
1247
1248        Height of the tab in pixels.  # noqa: E501
1249
1250        :return: The height of this Draw.  # noqa: E501
1251        :rtype: str
1252        """
1253        return self._height
1254
1255    @height.setter
1256    def height(self, height):
1257        """Sets the height of this Draw.
1258
1259        Height of the tab in pixels.  # noqa: E501
1260
1261        :param height: The height of this Draw.  # noqa: E501
1262        :type: str
1263        """
1264
1265        self._height = height
1266
1267    @property
1268    def height_metadata(self):
1269        """Gets the height_metadata of this Draw.  # noqa: E501
1270
1271        Metadata that indicates whether the `height` property is editable.  # noqa: E501
1272
1273        :return: The height_metadata of this Draw.  # noqa: E501
1274        :rtype: PropertyMetadata
1275        """
1276        return self._height_metadata
1277
1278    @height_metadata.setter
1279    def height_metadata(self, height_metadata):
1280        """Sets the height_metadata of this Draw.
1281
1282        Metadata that indicates whether the `height` property is editable.  # noqa: E501
1283
1284        :param height_metadata: The height_metadata of this Draw.  # noqa: E501
1285        :type: PropertyMetadata
1286        """
1287
1288        self._height_metadata = height_metadata
1289
1290    @property
1291    def locked(self):
1292        """Gets the locked of this Draw.  # noqa: E501
1293
1294        When set to **true**, the signer cannot change the data of the custom tab.  # noqa: E501
1295
1296        :return: The locked of this Draw.  # noqa: E501
1297        :rtype: str
1298        """
1299        return self._locked
1300
1301    @locked.setter
1302    def locked(self, locked):
1303        """Sets the locked of this Draw.
1304
1305        When set to **true**, the signer cannot change the data of the custom tab.  # noqa: E501
1306
1307        :param locked: The locked of this Draw.  # noqa: E501
1308        :type: str
1309        """
1310
1311        self._locked = locked
1312
1313    @property
1314    def locked_metadata(self):
1315        """Gets the locked_metadata of this Draw.  # noqa: E501
1316
1317        Metadata that indicates whether the `locked` property is editable.  # noqa: E501
1318
1319        :return: The locked_metadata of this Draw.  # noqa: E501
1320        :rtype: PropertyMetadata
1321        """
1322        return self._locked_metadata
1323
1324    @locked_metadata.setter
1325    def locked_metadata(self, locked_metadata):
1326        """Sets the locked_metadata of this Draw.
1327
1328        Metadata that indicates whether the `locked` property is editable.  # noqa: E501
1329
1330        :param locked_metadata: The locked_metadata of this Draw.  # noqa: E501
1331        :type: PropertyMetadata
1332        """
1333
1334        self._locked_metadata = locked_metadata
1335
1336    @property
1337    def merge_field(self):
1338        """Gets the merge_field of this Draw.  # noqa: E501
1339
1340        Contains the information necessary to map the tab to a field in SalesForce.  # noqa: E501
1341
1342        :return: The merge_field of this Draw.  # noqa: E501
1343        :rtype: MergeField
1344        """
1345        return self._merge_field
1346
1347    @merge_field.setter
1348    def merge_field(self, merge_field):
1349        """Sets the merge_field of this Draw.
1350
1351        Contains the information necessary to map the tab to a field in SalesForce.  # noqa: E501
1352
1353        :param merge_field: The merge_field of this Draw.  # noqa: E501
1354        :type: MergeField
1355        """
1356
1357        self._merge_field = merge_field
1358
1359    @property
1360    def merge_field_xml(self):
1361        """Gets the merge_field_xml of this Draw.  # noqa: E501
1362
1363          # noqa: E501
1364
1365        :return: The merge_field_xml of this Draw.  # noqa: E501
1366        :rtype: str
1367        """
1368        return self._merge_field_xml
1369
1370    @merge_field_xml.setter
1371    def merge_field_xml(self, merge_field_xml):
1372        """Sets the merge_field_xml of this Draw.
1373
1374          # noqa: E501
1375
1376        :param merge_field_xml: The merge_field_xml of this Draw.  # noqa: E501
1377        :type: str
1378        """
1379
1380        self._merge_field_xml = merge_field_xml
1381
1382    @property
1383    def page_number(self):
1384        """Gets the page_number of this Draw.  # noqa: E501
1385
1386        Specifies the page number on which the tab is located.  # noqa: E501
1387
1388        :return: The page_number of this Draw.  # noqa: E501
1389        :rtype: str
1390        """
1391        return self._page_number
1392
1393    @page_number.setter
1394    def page_number(self, page_number):
1395        """Sets the page_number of this Draw.
1396
1397        Specifies the page number on which the tab is located.  # noqa: E501
1398
1399        :param page_number: The page_number of this Draw.  # noqa: E501
1400        :type: str
1401        """
1402
1403        self._page_number = page_number
1404
1405    @property
1406    def page_number_metadata(self):
1407        """Gets the page_number_metadata of this Draw.  # noqa: E501
1408
1409        Metadata that indicates whether the `pageNumber` property is editable.  # noqa: E501
1410
1411        :return: The page_number_metadata of this Draw.  # noqa: E501
1412        :rtype: PropertyMetadata
1413        """
1414        return self._page_number_metadata
1415
1416    @page_number_metadata.setter
1417    def page_number_metadata(self, page_number_metadata):
1418        """Sets the page_number_metadata of this Draw.
1419
1420        Metadata that indicates whether the `pageNumber` property is editable.  # noqa: E501
1421
1422        :param page_number_metadata: The page_number_metadata of this Draw.  # noqa: E501
1423        :type: PropertyMetadata
1424        """
1425
1426        self._page_number_metadata = page_number_metadata
1427
1428    @property
1429    def recipient_id(self):
1430        """Gets the recipient_id of this Draw.  # noqa: E501
1431
1432        Unique for the recipient. It is used by the tab element to indicate which recipient is to sign the Document.  # noqa: E501
1433
1434        :return: The recipient_id of this Draw.  # noqa: E501
1435        :rtype: str
1436        """
1437        return self._recipient_id
1438
1439    @recipient_id.setter
1440    def recipient_id(self, recipient_id):
1441        """Sets the recipient_id of this Draw.
1442
1443        Unique for the recipient. It is used by the tab element to indicate which recipient is to sign the Document.  # noqa: E501
1444
1445        :param recipient_id: The recipient_id of this Draw.  # noqa: E501
1446        :type: str
1447        """
1448
1449        self._recipient_id = recipient_id
1450
1451    @property
1452    def recipient_id_guid(self):
1453        """Gets the recipient_id_guid of this Draw.  # noqa: E501
1454
1455          # noqa: E501
1456
1457        :return: The recipient_id_guid of this Draw.  # noqa: E501
1458        :rtype: str
1459        """
1460        return self._recipient_id_guid
1461
1462    @recipient_id_guid.setter
1463    def recipient_id_guid(self, recipient_id_guid):
1464        """Sets the recipient_id_guid of this Draw.
1465
1466          # noqa: E501
1467
1468        :param recipient_id_guid: The recipient_id_guid of this Draw.  # noqa: E501
1469        :type: str
1470        """
1471
1472        self._recipient_id_guid = recipient_id_guid
1473
1474    @property
1475    def recipient_id_guid_metadata(self):
1476        """Gets the recipient_id_guid_metadata of this Draw.  # noqa: E501
1477
1478        Metadata that indicates whether the `recipientIdGuid` property is editable.  # noqa: E501
1479
1480        :return: The recipient_id_guid_metadata of this Draw.  # noqa: E501
1481        :rtype: PropertyMetadata
1482        """
1483        return self._recipient_id_guid_metadata
1484
1485    @recipient_id_guid_metadata.setter
1486    def recipient_id_guid_metadata(self, recipient_id_guid_metadata):
1487        """Sets the recipient_id_guid_metadata of this Draw.
1488
1489        Metadata that indicates whether the `recipientIdGuid` property is editable.  # noqa: E501
1490
1491        :param recipient_id_guid_metadata: The recipient_id_guid_metadata of this Draw.  # noqa: E501
1492        :type: PropertyMetadata
1493        """
1494
1495        self._recipient_id_guid_metadata = recipient_id_guid_metadata
1496
1497    @property
1498    def recipient_id_metadata(self):
1499        """Gets the recipient_id_metadata of this Draw.  # noqa: E501
1500
1501        Metadata that indicates whether the `recipientId` property is editable.  # noqa: E501
1502
1503        :return: The recipient_id_metadata of this Draw.  # noqa: E501
1504        :rtype: PropertyMetadata
1505        """
1506        return self._recipient_id_metadata
1507
1508    @recipient_id_metadata.setter
1509    def recipient_id_metadata(self, recipient_id_metadata):
1510        """Sets the recipient_id_metadata of this Draw.
1511
1512        Metadata that indicates whether the `recipientId` property is editable.  # noqa: E501
1513
1514        :param recipient_id_metadata: The recipient_id_metadata of this Draw.  # noqa: E501
1515        :type: PropertyMetadata
1516        """
1517
1518        self._recipient_id_metadata = recipient_id_metadata
1519
1520    @property
1521    def required(self):
1522        """Gets the required of this Draw.  # noqa: E501
1523
1524        When set to **true**, the signer is required to fill out this tab  # noqa: E501
1525
1526        :return: The required of this Draw.  # noqa: E501
1527        :rtype: str
1528        """
1529        return self._required
1530
1531    @required.setter
1532    def required(self, required):
1533        """Sets the required of this Draw.
1534
1535        When set to **true**, the signer is required to fill out this tab  # noqa: E501
1536
1537        :param required: The required of this Draw.  # noqa: E501
1538        :type: str
1539        """
1540
1541        self._required = required
1542
1543    @property
1544    def required_metadata(self):
1545        """Gets the required_metadata of this Draw.  # noqa: E501
1546
1547        Metadata that indicates whether the `required` property is editable.  # noqa: E501
1548
1549        :return: The required_metadata of this Draw.  # noqa: E501
1550        :rtype: PropertyMetadata
1551        """
1552        return self._required_metadata
1553
1554    @required_metadata.setter
1555    def required_metadata(self, required_metadata):
1556        """Sets the required_metadata of this Draw.
1557
1558        Metadata that indicates whether the `required` property is editable.  # noqa: E501
1559
1560        :param required_metadata: The required_metadata of this Draw.  # noqa: E501
1561        :type: PropertyMetadata
1562        """
1563
1564        self._required_metadata = required_metadata
1565
1566    @property
1567    def shared(self):
1568        """Gets the shared of this Draw.  # noqa: E501
1569
1570        When set to **true**, this custom tab is shared.  # noqa: E501
1571
1572        :return: The shared of this Draw.  # noqa: E501
1573        :rtype: str
1574        """
1575        return self._shared
1576
1577    @shared.setter
1578    def shared(self, shared):
1579        """Sets the shared of this Draw.
1580
1581        When set to **true**, this custom tab is shared.  # noqa: E501
1582
1583        :param shared: The shared of this Draw.  # noqa: E501
1584        :type: str
1585        """
1586
1587        self._shared = shared
1588
1589    @property
1590    def shared_metadata(self):
1591        """Gets the shared_metadata of this Draw.  # noqa: E501
1592
1593        Metadata that indicates whether the `shared` property is editable.  # noqa: E501
1594
1595        :return: The shared_metadata of this Draw.  # noqa: E501
1596        :rtype: PropertyMetadata
1597        """
1598        return self._shared_metadata
1599
1600    @shared_metadata.setter
1601    def shared_metadata(self, shared_metadata):
1602        """Sets the shared_metadata of this Draw.
1603
1604        Metadata that indicates whether the `shared` property is editable.  # noqa: E501
1605
1606        :param shared_metadata: The shared_metadata of this Draw.  # noqa: E501
1607        :type: PropertyMetadata
1608        """
1609
1610        self._shared_metadata = shared_metadata
1611
1612    @property
1613    def smart_contract_information(self):
1614        """Gets the smart_contract_information of this Draw.  # noqa: E501
1615
1616        Reserved for DocuSign.  # noqa: E501
1617
1618        :return: The smart_contract_information of this Draw.  # noqa: E501
1619        :rtype: SmartContractInformation
1620        """
1621        return self._smart_contract_information
1622
1623    @smart_contract_information.setter
1624    def smart_contract_information(self, smart_contract_information):
1625        """Sets the smart_contract_information of this Draw.
1626
1627        Reserved for DocuSign.  # noqa: E501
1628
1629        :param smart_contract_information: The smart_contract_information of this Draw.  # noqa: E501
1630        :type: SmartContractInformation
1631        """
1632
1633        self._smart_contract_information = smart_contract_information
1634
1635    @property
1636    def source(self):
1637        """Gets the source of this Draw.  # noqa: E501
1638
1639          # noqa: E501
1640
1641        :return: The source of this Draw.  # noqa: E501
1642        :rtype: str
1643        """
1644        return self._source
1645
1646    @source.setter
1647    def source(self, source):
1648        """Sets the source of this Draw.
1649
1650          # noqa: E501
1651
1652        :param source: The source of this Draw.  # noqa: E501
1653        :type: str
1654        """
1655
1656        self._source = source
1657
1658    @property
1659    def status(self):
1660        """Gets the status of this Draw.  # noqa: E501
1661
1662        Indicates the envelope status. Valid values are:  * sent - The envelope is sent to the recipients.  * created - The envelope is saved as a draft and can be modified and sent later.  # noqa: E501
1663
1664        :return: The status of this Draw.  # noqa: E501
1665        :rtype: str
1666        """
1667        return self._status
1668
1669    @status.setter
1670    def status(self, status):
1671        """Sets the status of this Draw.
1672
1673        Indicates the envelope status. Valid values are:  * sent - The envelope is sent to the recipients.  * created - The envelope is saved as a draft and can be modified and sent later.  # noqa: E501
1674
1675        :param status: The status of this Draw.  # noqa: E501
1676        :type: str
1677        """
1678
1679        self._status = status
1680
1681    @property
1682    def status_metadata(self):
1683        """Gets the status_metadata of this Draw.  # noqa: E501
1684
1685        Metadata that indicates whether the `status` property is editable.  # noqa: E501
1686
1687        :return: The status_metadata of this Draw.  # noqa: E501
1688        :rtype: PropertyMetadata
1689        """
1690        return self._status_metadata
1691
1692    @status_metadata.setter
1693    def status_metadata(self, status_metadata):
1694        """Sets the status_metadata of this Draw.
1695
1696        Metadata that indicates whether the `status` property is editable.  # noqa: E501
1697
1698        :param status_metadata: The status_metadata of this Draw.  # noqa: E501
1699        :type: PropertyMetadata
1700        """
1701
1702        self._status_metadata = status_metadata
1703
1704    @property
1705    def tab_group_labels(self):
1706        """Gets the tab_group_labels of this Draw.  # noqa: E501
1707
1708          # noqa: E501
1709
1710        :return: The tab_group_labels of this Draw.  # noqa: E501
1711        :rtype: list[str]
1712        """
1713        return self._tab_group_labels
1714
1715    @tab_group_labels.setter
1716    def tab_group_labels(self, tab_group_labels):
1717        """Sets the tab_group_labels of this Draw.
1718
1719          # noqa: E501
1720
1721        :param tab_group_labels: The tab_group_labels of this Draw.  # noqa: E501
1722        :type: list[str]
1723        """
1724
1725        self._tab_group_labels = tab_group_labels
1726
1727    @property
1728    def tab_group_labels_metadata(self):
1729        """Gets the tab_group_labels_metadata of this Draw.  # noqa: E501
1730
1731        Metadata that indicates whether the `tabGroupLabels` property is editable.  # noqa: E501
1732
1733        :return: The tab_group_labels_metadata of this Draw.  # noqa: E501
1734        :rtype: PropertyMetadata
1735        """
1736        return self._tab_group_labels_metadata
1737
1738    @tab_group_labels_metadata.setter
1739    def tab_group_labels_metadata(self, tab_group_labels_metadata):
1740        """Sets the tab_group_labels_metadata of this Draw.
1741
1742        Metadata that indicates whether the `tabGroupLabels` property is editable.  # noqa: E501
1743
1744        :param tab_group_labels_metadata: The tab_group_labels_metadata of this Draw.  # noqa: E501
1745        :type: PropertyMetadata
1746        """
1747
1748        self._tab_group_labels_metadata = tab_group_labels_metadata
1749
1750    @property
1751    def tab_id(self):
1752        """Gets the tab_id of this Draw.  # noqa: E501
1753
1754        The unique identifier for the tab. The tabid can be retrieved with the [ML:GET call].       # noqa: E501
1755
1756        :return: The tab_id of this Draw.  # noqa: E501
1757        :rtype: str
1758        """
1759        return self._tab_id
1760
1761    @tab_id.setter
1762    def tab_id(self, tab_id):
1763        """Sets the tab_id of this Draw.
1764
1765        The unique identifier for the tab. The tabid can be retrieved with the [ML:GET call].       # noqa: E501
1766
1767        :param tab_id: The tab_id of this Draw.  # noqa: E501
1768        :type: str
1769        """
1770
1771        self._tab_id = tab_id
1772
1773    @property
1774    def tab_id_metadata(self):
1775        """Gets the tab_id_metadata of this Draw.  # noqa: E501
1776
1777        Metadata that indicates whether the `tabId` property is editable.  # noqa: E501
1778
1779        :return: The tab_id_metadata of this Draw.  # noqa: E501
1780        :rtype: PropertyMetadata
1781        """
1782        return self._tab_id_metadata
1783
1784    @tab_id_metadata.setter
1785    def tab_id_metadata(self, tab_id_metadata):
1786        """Sets the tab_id_metadata of this Draw.
1787
1788        Metadata that indicates whether the `tabId` property is editable.  # noqa: E501
1789
1790        :param tab_id_metadata: The tab_id_metadata of this Draw.  # noqa: E501
1791        :type: PropertyMetadata
1792        """
1793
1794        self._tab_id_metadata = tab_id_metadata
1795
1796    @property
1797    def tab_label_metadata(self):
1798        """Gets the tab_label_metadata of this Draw.  # noqa: E501
1799
1800        Metadata that indicates whether the `tabLabel` property is editable.  # noqa: E501
1801
1802        :return: The tab_label_metadata of this Draw.  # noqa: E501
1803        :rtype: PropertyMetadata
1804        """
1805        return self._tab_label_metadata
1806
1807    @tab_label_metadata.setter
1808    def tab_label_metadata(self, tab_label_metadata):
1809        """Sets the tab_label_metadata of this Draw.
1810
1811        Metadata that indicates whether the `tabLabel` property is editable.  # noqa: E501
1812
1813        :param tab_label_metadata: The tab_label_metadata of this Draw.  # noqa: E501
1814        :type: PropertyMetadata
1815        """
1816
1817        self._tab_label_metadata = tab_label_metadata
1818
1819    @property
1820    def tab_order(self):
1821        """Gets the tab_order of this Draw.  # noqa: E501
1822
1823          # noqa: E501
1824
1825        :return: The tab_order of this Draw.  # noqa: E501
1826        :rtype: str
1827        """
1828        return self._tab_order
1829
1830    @tab_order.setter
1831    def tab_order(self, tab_order):
1832        """Sets the tab_order of this Draw.
1833
1834          # noqa: E501
1835
1836        :param tab_order: The tab_order of this Draw.  # noqa: E501
1837        :type: str
1838        """
1839
1840        self._tab_order = tab_order
1841
1842    @property
1843    def tab_order_metadata(self):
1844        """Gets the tab_order_metadata of this Draw.  # noqa: E501
1845
1846        Metadata that indicates whether the `tabOrder` property is editable.  # noqa: E501
1847
1848        :return: The tab_order_metadata of this Draw.  # noqa: E501
1849        :rtype: PropertyMetadata
1850        """
1851        return self._tab_order_metadata
1852
1853    @tab_order_metadata.setter
1854    def tab_order_metadata(self, tab_order_metadata):
1855        """Sets the tab_order_metadata of this Draw.
1856
1857        Metadata that indicates whether the `tabOrder` property is editable.  # noqa: E501
1858
1859        :param tab_order_metadata: The tab_order_metadata of this Draw.  # noqa: E501
1860        :type: PropertyMetadata
1861        """
1862
1863        self._tab_order_metadata = tab_order_metadata
1864
1865    @property
1866    def tab_type(self):
1867        """Gets the tab_type of this Draw.  # noqa: E501
1868
1869          # noqa: E501
1870
1871        :return: The tab_type of this Draw.  # noqa: E501
1872        :rtype: str
1873        """
1874        return self._tab_type
1875
1876    @tab_type.setter
1877    def tab_type(self, tab_type):
1878        """Sets the tab_type of this Draw.
1879
1880          # noqa: E501
1881
1882        :param tab_type: The tab_type of this Draw.  # noqa: E501
1883        :type: str
1884        """
1885
1886        self._tab_type = tab_type
1887
1888    @property
1889    def tab_type_metadata(self):
1890        """Gets the tab_type_metadata of this Draw.  # noqa: E501
1891
1892        Metadata that indicates whether the `tabType` property is editable.  # noqa: E501
1893
1894        :return: The tab_type_metadata of this Draw.  # noqa: E501
1895        :rtype: PropertyMetadata
1896        """
1897        return self._tab_type_metadata
1898
1899    @tab_type_metadata.setter
1900    def tab_type_metadata(self, tab_type_metadata):
1901        """Sets the tab_type_metadata of this Draw.
1902
1903        Metadata that indicates whether the `tabType` property is editable.  # noqa: E501
1904
1905        :param tab_type_metadata: The tab_type_metadata of this Draw.  # noqa: E501
1906        :type: PropertyMetadata
1907        """
1908
1909        self._tab_type_metadata = tab_type_metadata
1910
1911    @property
1912    def template_locked(self):
1913        """Gets the template_locked of this Draw.  # noqa: E501
1914
1915        When set to **true**, the sender cannot change any attributes of the recipient. Used only when working with template recipients.   # noqa: E501
1916
1917        :return: The template_locked of this Draw.  # noqa: E501
1918        :rtype: str
1919        """
1920        return self._template_locked
1921
1922    @template_locked.setter
1923    def template_locked(self, template_locked):
1924        """Sets the template_locked of this Draw.
1925
1926        When set to **true**, the sender cannot change any attributes of the recipient. Used only when working with template recipients.   # noqa: E501
1927
1928        :param template_locked: The template_locked of this Draw.  # noqa: E501
1929        :type: str
1930        """
1931
1932        self._template_locked = template_locked
1933
1934    @property
1935    def template_locked_metadata(self):
1936        """Gets the template_locked_metadata of this Draw.  # noqa: E501
1937
1938        Metadata that indicates whether the `templateLocked` property is editable.  # noqa: E501
1939
1940        :return: The template_locked_metadata of this Draw.  # noqa: E501
1941        :rtype: PropertyMetadata
1942        """
1943        return self._template_locked_metadata
1944
1945    @template_locked_metadata.setter
1946    def template_locked_metadata(self, template_locked_metadata):
1947        """Sets the template_locked_metadata of this Draw.
1948
1949        Metadata that indicates whether the `templateLocked` property is editable.  # noqa: E501
1950
1951        :param template_locked_metadata: The template_locked_metadata of this Draw.  # noqa: E501
1952        :type: PropertyMetadata
1953        """
1954
1955        self._template_locked_metadata = template_locked_metadata
1956
1957    @property
1958    def template_required(self):
1959        """Gets the template_required of this Draw.  # noqa: E501
1960
1961        When set to **true**, the sender may not remove the recipient. Used only when working with template recipients.  # noqa: E501
1962
1963        :return: The template_required of this Draw.  # noqa: E501
1964        :rtype: str
1965        """
1966        return self._template_required
1967
1968    @template_required.setter
1969    def template_required(self, template_required):
1970        """Sets the template_required of this Draw.
1971
1972        When set to **true**, the sender may not remove the recipient. Used only when working with template recipients.  # noqa: E501
1973
1974        :param template_required: The template_required of this Draw.  # noqa: E501
1975        :type: str
1976        """
1977
1978        self._template_required = template_required
1979
1980    @property
1981    def template_required_metadata(self):
1982        """Gets the template_required_metadata of this Draw.  # noqa: E501
1983
1984        Metadata that indicates whether the `templateRequired` property is editable.  # noqa: E501
1985
1986        :return: The template_required_metadata of this Draw.  # noqa: E501
1987        :rtype: PropertyMetadata
1988        """
1989        return self._template_required_metadata
1990
1991    @template_required_metadata.setter
1992    def template_required_metadata(self, template_required_metadata):
1993        """Sets the template_required_metadata of this Draw.
1994
1995        Metadata that indicates whether the `templateRequired` property is editable.  # noqa: E501
1996
1997        :param template_required_metadata: The template_required_metadata of this Draw.  # noqa: E501
1998        :type: PropertyMetadata
1999        """
2000
2001        self._template_required_metadata = template_required_metadata
2002
2003    @property
2004    def tooltip(self):
2005        """Gets the tooltip of this Draw.  # noqa: E501
2006
2007          # noqa: E501
2008
2009        :return: The tooltip of this Draw.  # noqa: E501
2010        :rtype: str
2011        """
2012        return self._tooltip
2013
2014    @tooltip.setter
2015    def tooltip(self, tooltip):
2016        """Sets the tooltip of this Draw.
2017
2018          # noqa: E501
2019
2020        :param tooltip: The tooltip of this Draw.  # noqa: E501
2021        :type: str
2022        """
2023
2024        self._tooltip = tooltip
2025
2026    @property
2027    def tool_tip_metadata(self):
2028        """Gets the tool_tip_metadata of this Draw.  # noqa: E501
2029
2030        Metadata that indicates whether the `toolTip` property is editable.  # noqa: E501
2031
2032        :return: The tool_tip_metadata of this Draw.  # noqa: E501
2033        :rtype: PropertyMetadata
2034        """
2035        return self._tool_tip_metadata
2036
2037    @tool_tip_metadata.setter
2038    def tool_tip_metadata(self, tool_tip_metadata):
2039        """Sets the tool_tip_metadata of this Draw.
2040
2041        Metadata that indicates whether the `toolTip` property is editable.  # noqa: E501
2042
2043        :param tool_tip_metadata: The tool_tip_metadata of this Draw.  # noqa: E501
2044        :type: PropertyMetadata
2045        """
2046
2047        self._tool_tip_metadata = tool_tip_metadata
2048
2049    @property
2050    def use_background_as_canvas(self):
2051        """Gets the use_background_as_canvas of this Draw.  # noqa: E501
2052
2053          # noqa: E501
2054
2055        :return: The use_background_as_canvas of this Draw.  # noqa: E501
2056        :rtype: str
2057        """
2058        return self._use_background_as_canvas
2059
2060    @use_background_as_canvas.setter
2061    def use_background_as_canvas(self, use_background_as_canvas):
2062        """Sets the use_background_as_canvas of this Draw.
2063
2064          # noqa: E501
2065
2066        :param use_background_as_canvas: The use_background_as_canvas of this Draw.  # noqa: E501
2067        :type: str
2068        """
2069
2070        self._use_background_as_canvas = use_background_as_canvas
2071
2072    @property
2073    def width(self):
2074        """Gets the width of this Draw.  # noqa: E501
2075
2076        Width of the tab in pixels.  # noqa: E501
2077
2078        :return: The width of this Draw.  # noqa: E501
2079        :rtype: str
2080        """
2081        return self._width
2082
2083    @width.setter
2084    def width(self, width):
2085        """Sets the width of this Draw.
2086
2087        Width of the tab in pixels.  # noqa: E501
2088
2089        :param width: The width of this Draw.  # noqa: E501
2090        :type: str
2091        """
2092
2093        self._width = width
2094
2095    @property
2096    def width_metadata(self):
2097        """Gets the width_metadata of this Draw.  # noqa: E501
2098
2099        Metadata that indicates whether the `width` property is editable.  # noqa: E501
2100
2101        :return: The width_metadata of this Draw.  # noqa: E501
2102        :rtype: PropertyMetadata
2103        """
2104        return self._width_metadata
2105
2106    @width_metadata.setter
2107    def width_metadata(self, width_metadata):
2108        """Sets the width_metadata of this Draw.
2109
2110        Metadata that indicates whether the `width` property is editable.  # noqa: E501
2111
2112        :param width_metadata: The width_metadata of this Draw.  # noqa: E501
2113        :type: PropertyMetadata
2114        """
2115
2116        self._width_metadata = width_metadata
2117
2118    @property
2119    def x_position(self):
2120        """Gets the x_position of this Draw.  # noqa: E501
2121
2122        This indicates the horizontal offset of the object on the page. DocuSign uses 72 DPI when determining position.  # noqa: E501
2123
2124        :return: The x_position of this Draw.  # noqa: E501
2125        :rtype: str
2126        """
2127        return self._x_position
2128
2129    @x_position.setter
2130    def x_position(self, x_position):
2131        """Sets the x_position of this Draw.
2132
2133        This indicates the horizontal offset of the object on the page. DocuSign uses 72 DPI when determining position.  # noqa: E501
2134
2135        :param x_position: The x_position of this Draw.  # noqa: E501
2136        :type: str
2137        """
2138
2139        self._x_position = x_position
2140
2141    @property
2142    def x_position_metadata(self):
2143        """Gets the x_position_metadata of this Draw.  # noqa: E501
2144
2145        Metadata that indicates whether the `xPosition` property is editable.  # noqa: E501
2146
2147        :return: The x_position_metadata of this Draw.  # noqa: E501
2148        :rtype: PropertyMetadata
2149        """
2150        return self._x_position_metadata
2151
2152    @x_position_metadata.setter
2153    def x_position_metadata(self, x_position_metadata):
2154        """Sets the x_position_metadata of this Draw.
2155
2156        Metadata that indicates whether the `xPosition` property is editable.  # noqa: E501
2157
2158        :param x_position_metadata: The x_position_metadata of this Draw.  # noqa: E501
2159        :type: PropertyMetadata
2160        """
2161
2162        self._x_position_metadata = x_position_metadata
2163
2164    @property
2165    def y_position(self):
2166        """Gets the y_position of this Draw.  # noqa: E501
2167
2168        This indicates the vertical offset of the object on the page. DocuSign uses 72 DPI when determining position.  # noqa: E501
2169
2170        :return: The y_position of this Draw.  # noqa: E501
2171        :rtype: str
2172        """
2173        return self._y_position
2174
2175    @y_position.setter
2176    def y_position(self, y_position):
2177        """Sets the y_position of this Draw.
2178
2179        This indicates the vertical offset of the object on the page. DocuSign uses 72 DPI when determining position.  # noqa: E501
2180
2181        :param y_position: The y_position of this Draw.  # noqa: E501
2182        :type: str
2183        """
2184
2185        self._y_position = y_position
2186
2187    @property
2188    def y_position_metadata(self):
2189        """Gets the y_position_metadata of this Draw.  # noqa: E501
2190
2191        Metadata that indicates whether the `yPosition` property is editable.  # noqa: E501
2192
2193        :return: The y_position_metadata of this Draw.  # noqa: E501
2194        :rtype: PropertyMetadata
2195        """
2196        return self._y_position_metadata
2197
2198    @y_position_metadata.setter
2199    def y_position_metadata(self, y_position_metadata):
2200        """Sets the y_position_metadata of this Draw.
2201
2202        Metadata that indicates whether the `yPosition` property is editable.  # noqa: E501
2203
2204        :param y_position_metadata: The y_position_metadata of this Draw.  # noqa: E501
2205        :type: PropertyMetadata
2206        """
2207
2208        self._y_position_metadata = y_position_metadata
2209
2210    def to_dict(self):
2211        """Returns the model properties as a dict"""
2212        result = {}
2213
2214        for attr, _ in six.iteritems(self.swagger_types):
2215            value = getattr(self, attr)
2216            if isinstance(value, list):
2217                result[attr] = list(map(
2218                    lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
2219                    value
2220                ))
2221            elif hasattr(value, "to_dict"):
2222                result[attr] = value.to_dict()
2223            elif isinstance(value, dict):
2224                result[attr] = dict(map(
2225                    lambda item: (item[0], item[1].to_dict())
2226                    if hasattr(item[1], "to_dict") else item,
2227                    value.items()
2228                ))
2229            else:
2230                result[attr] = value
2231        if issubclass(Draw, dict):
2232            for key, value in self.items():
2233                result[key] = value
2234
2235        return result
2236
2237    def to_str(self):
2238        """Returns the string representation of the model"""
2239        return pprint.pformat(self.to_dict())
2240
2241    def __repr__(self):
2242        """For `print` and `pprint`"""
2243        return self.to_str()
2244
2245    def __eq__(self, other):
2246        """Returns true if both objects are equal"""
2247        if not isinstance(other, Draw):
2248            return False
2249
2250        return self.to_dict() == other.to_dict()
2251
2252    def __ne__(self, other):
2253        """Returns true if both objects are not equal"""
2254        if not isinstance(other, Draw):
2255            return True
2256
2257        return self.to_dict() != other.to_dict()
class Draw:
  23class Draw(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        'allow_signer_upload': 'str',
  38        'anchor_allow_white_space_in_characters': 'str',
  39        'anchor_allow_white_space_in_characters_metadata': 'PropertyMetadata',
  40        'anchor_case_sensitive': 'str',
  41        'anchor_case_sensitive_metadata': 'PropertyMetadata',
  42        'anchor_horizontal_alignment': 'str',
  43        'anchor_horizontal_alignment_metadata': 'PropertyMetadata',
  44        'anchor_ignore_if_not_present': 'str',
  45        'anchor_ignore_if_not_present_metadata': 'PropertyMetadata',
  46        'anchor_match_whole_word': 'str',
  47        'anchor_match_whole_word_metadata': 'PropertyMetadata',
  48        'anchor_string': 'str',
  49        'anchor_string_metadata': 'PropertyMetadata',
  50        'anchor_tab_processor_version': 'str',
  51        'anchor_tab_processor_version_metadata': 'PropertyMetadata',
  52        'anchor_units': 'str',
  53        'anchor_units_metadata': 'PropertyMetadata',
  54        'anchor_x_offset': 'str',
  55        'anchor_x_offset_metadata': 'PropertyMetadata',
  56        'anchor_y_offset': 'str',
  57        'anchor_y_offset_metadata': 'PropertyMetadata',
  58        'caption': 'str',
  59        'caption_metadata': 'PropertyMetadata',
  60        'conditional_parent_label': 'str',
  61        'conditional_parent_label_metadata': 'PropertyMetadata',
  62        'conditional_parent_value': 'str',
  63        'conditional_parent_value_metadata': 'PropertyMetadata',
  64        'custom_tab_id': 'str',
  65        'custom_tab_id_metadata': 'PropertyMetadata',
  66        'document_id': 'str',
  67        'document_id_metadata': 'PropertyMetadata',
  68        'error_details': 'ErrorDetails',
  69        'form_order': 'str',
  70        'form_order_metadata': 'PropertyMetadata',
  71        'form_page_label': 'str',
  72        'form_page_label_metadata': 'PropertyMetadata',
  73        'form_page_number': 'str',
  74        'form_page_number_metadata': 'PropertyMetadata',
  75        'height': 'str',
  76        'height_metadata': 'PropertyMetadata',
  77        'locked': 'str',
  78        'locked_metadata': 'PropertyMetadata',
  79        'merge_field': 'MergeField',
  80        'merge_field_xml': 'str',
  81        'page_number': 'str',
  82        'page_number_metadata': 'PropertyMetadata',
  83        'recipient_id': 'str',
  84        'recipient_id_guid': 'str',
  85        'recipient_id_guid_metadata': 'PropertyMetadata',
  86        'recipient_id_metadata': 'PropertyMetadata',
  87        'required': 'str',
  88        'required_metadata': 'PropertyMetadata',
  89        'shared': 'str',
  90        'shared_metadata': 'PropertyMetadata',
  91        'smart_contract_information': 'SmartContractInformation',
  92        'source': 'str',
  93        'status': 'str',
  94        'status_metadata': 'PropertyMetadata',
  95        'tab_group_labels': 'list[str]',
  96        'tab_group_labels_metadata': 'PropertyMetadata',
  97        'tab_id': 'str',
  98        'tab_id_metadata': 'PropertyMetadata',
  99        'tab_label_metadata': 'PropertyMetadata',
 100        'tab_order': 'str',
 101        'tab_order_metadata': 'PropertyMetadata',
 102        'tab_type': 'str',
 103        'tab_type_metadata': 'PropertyMetadata',
 104        'template_locked': 'str',
 105        'template_locked_metadata': 'PropertyMetadata',
 106        'template_required': 'str',
 107        'template_required_metadata': 'PropertyMetadata',
 108        'tooltip': 'str',
 109        'tool_tip_metadata': 'PropertyMetadata',
 110        'use_background_as_canvas': 'str',
 111        'width': 'str',
 112        'width_metadata': 'PropertyMetadata',
 113        'x_position': 'str',
 114        'x_position_metadata': 'PropertyMetadata',
 115        'y_position': 'str',
 116        'y_position_metadata': 'PropertyMetadata'
 117    }
 118
 119    attribute_map = {
 120        'allow_signer_upload': 'allowSignerUpload',
 121        'anchor_allow_white_space_in_characters': 'anchorAllowWhiteSpaceInCharacters',
 122        'anchor_allow_white_space_in_characters_metadata': 'anchorAllowWhiteSpaceInCharactersMetadata',
 123        'anchor_case_sensitive': 'anchorCaseSensitive',
 124        'anchor_case_sensitive_metadata': 'anchorCaseSensitiveMetadata',
 125        'anchor_horizontal_alignment': 'anchorHorizontalAlignment',
 126        'anchor_horizontal_alignment_metadata': 'anchorHorizontalAlignmentMetadata',
 127        'anchor_ignore_if_not_present': 'anchorIgnoreIfNotPresent',
 128        'anchor_ignore_if_not_present_metadata': 'anchorIgnoreIfNotPresentMetadata',
 129        'anchor_match_whole_word': 'anchorMatchWholeWord',
 130        'anchor_match_whole_word_metadata': 'anchorMatchWholeWordMetadata',
 131        'anchor_string': 'anchorString',
 132        'anchor_string_metadata': 'anchorStringMetadata',
 133        'anchor_tab_processor_version': 'anchorTabProcessorVersion',
 134        'anchor_tab_processor_version_metadata': 'anchorTabProcessorVersionMetadata',
 135        'anchor_units': 'anchorUnits',
 136        'anchor_units_metadata': 'anchorUnitsMetadata',
 137        'anchor_x_offset': 'anchorXOffset',
 138        'anchor_x_offset_metadata': 'anchorXOffsetMetadata',
 139        'anchor_y_offset': 'anchorYOffset',
 140        'anchor_y_offset_metadata': 'anchorYOffsetMetadata',
 141        'caption': 'caption',
 142        'caption_metadata': 'captionMetadata',
 143        'conditional_parent_label': 'conditionalParentLabel',
 144        'conditional_parent_label_metadata': 'conditionalParentLabelMetadata',
 145        'conditional_parent_value': 'conditionalParentValue',
 146        'conditional_parent_value_metadata': 'conditionalParentValueMetadata',
 147        'custom_tab_id': 'customTabId',
 148        'custom_tab_id_metadata': 'customTabIdMetadata',
 149        'document_id': 'documentId',
 150        'document_id_metadata': 'documentIdMetadata',
 151        'error_details': 'errorDetails',
 152        'form_order': 'formOrder',
 153        'form_order_metadata': 'formOrderMetadata',
 154        'form_page_label': 'formPageLabel',
 155        'form_page_label_metadata': 'formPageLabelMetadata',
 156        'form_page_number': 'formPageNumber',
 157        'form_page_number_metadata': 'formPageNumberMetadata',
 158        'height': 'height',
 159        'height_metadata': 'heightMetadata',
 160        'locked': 'locked',
 161        'locked_metadata': 'lockedMetadata',
 162        'merge_field': 'mergeField',
 163        'merge_field_xml': 'mergeFieldXml',
 164        'page_number': 'pageNumber',
 165        'page_number_metadata': 'pageNumberMetadata',
 166        'recipient_id': 'recipientId',
 167        'recipient_id_guid': 'recipientIdGuid',
 168        'recipient_id_guid_metadata': 'recipientIdGuidMetadata',
 169        'recipient_id_metadata': 'recipientIdMetadata',
 170        'required': 'required',
 171        'required_metadata': 'requiredMetadata',
 172        'shared': 'shared',
 173        'shared_metadata': 'sharedMetadata',
 174        'smart_contract_information': 'smartContractInformation',
 175        'source': 'source',
 176        'status': 'status',
 177        'status_metadata': 'statusMetadata',
 178        'tab_group_labels': 'tabGroupLabels',
 179        'tab_group_labels_metadata': 'tabGroupLabelsMetadata',
 180        'tab_id': 'tabId',
 181        'tab_id_metadata': 'tabIdMetadata',
 182        'tab_label_metadata': 'tabLabelMetadata',
 183        'tab_order': 'tabOrder',
 184        'tab_order_metadata': 'tabOrderMetadata',
 185        'tab_type': 'tabType',
 186        'tab_type_metadata': 'tabTypeMetadata',
 187        'template_locked': 'templateLocked',
 188        'template_locked_metadata': 'templateLockedMetadata',
 189        'template_required': 'templateRequired',
 190        'template_required_metadata': 'templateRequiredMetadata',
 191        'tooltip': 'tooltip',
 192        'tool_tip_metadata': 'toolTipMetadata',
 193        'use_background_as_canvas': 'useBackgroundAsCanvas',
 194        'width': 'width',
 195        'width_metadata': 'widthMetadata',
 196        'x_position': 'xPosition',
 197        'x_position_metadata': 'xPositionMetadata',
 198        'y_position': 'yPosition',
 199        'y_position_metadata': 'yPositionMetadata'
 200    }
 201
 202    def __init__(self, _configuration=None, **kwargs):  # noqa: E501
 203        """Draw - a model defined in Swagger"""  # noqa: E501
 204        if _configuration is None:
 205            _configuration = Configuration()
 206        self._configuration = _configuration
 207
 208        self._allow_signer_upload = None
 209        self._anchor_allow_white_space_in_characters = None
 210        self._anchor_allow_white_space_in_characters_metadata = None
 211        self._anchor_case_sensitive = None
 212        self._anchor_case_sensitive_metadata = None
 213        self._anchor_horizontal_alignment = None
 214        self._anchor_horizontal_alignment_metadata = None
 215        self._anchor_ignore_if_not_present = None
 216        self._anchor_ignore_if_not_present_metadata = None
 217        self._anchor_match_whole_word = None
 218        self._anchor_match_whole_word_metadata = None
 219        self._anchor_string = None
 220        self._anchor_string_metadata = None
 221        self._anchor_tab_processor_version = None
 222        self._anchor_tab_processor_version_metadata = None
 223        self._anchor_units = None
 224        self._anchor_units_metadata = None
 225        self._anchor_x_offset = None
 226        self._anchor_x_offset_metadata = None
 227        self._anchor_y_offset = None
 228        self._anchor_y_offset_metadata = None
 229        self._caption = None
 230        self._caption_metadata = None
 231        self._conditional_parent_label = None
 232        self._conditional_parent_label_metadata = None
 233        self._conditional_parent_value = None
 234        self._conditional_parent_value_metadata = None
 235        self._custom_tab_id = None
 236        self._custom_tab_id_metadata = None
 237        self._document_id = None
 238        self._document_id_metadata = None
 239        self._error_details = None
 240        self._form_order = None
 241        self._form_order_metadata = None
 242        self._form_page_label = None
 243        self._form_page_label_metadata = None
 244        self._form_page_number = None
 245        self._form_page_number_metadata = None
 246        self._height = None
 247        self._height_metadata = None
 248        self._locked = None
 249        self._locked_metadata = None
 250        self._merge_field = None
 251        self._merge_field_xml = None
 252        self._page_number = None
 253        self._page_number_metadata = None
 254        self._recipient_id = None
 255        self._recipient_id_guid = None
 256        self._recipient_id_guid_metadata = None
 257        self._recipient_id_metadata = None
 258        self._required = None
 259        self._required_metadata = None
 260        self._shared = None
 261        self._shared_metadata = None
 262        self._smart_contract_information = None
 263        self._source = None
 264        self._status = None
 265        self._status_metadata = None
 266        self._tab_group_labels = None
 267        self._tab_group_labels_metadata = None
 268        self._tab_id = None
 269        self._tab_id_metadata = None
 270        self._tab_label_metadata = None
 271        self._tab_order = None
 272        self._tab_order_metadata = None
 273        self._tab_type = None
 274        self._tab_type_metadata = None
 275        self._template_locked = None
 276        self._template_locked_metadata = None
 277        self._template_required = None
 278        self._template_required_metadata = None
 279        self._tooltip = None
 280        self._tool_tip_metadata = None
 281        self._use_background_as_canvas = None
 282        self._width = None
 283        self._width_metadata = None
 284        self._x_position = None
 285        self._x_position_metadata = None
 286        self._y_position = None
 287        self._y_position_metadata = None
 288        self.discriminator = None
 289
 290        setattr(self, "_{}".format('allow_signer_upload'), kwargs.get('allow_signer_upload', None))
 291        setattr(self, "_{}".format('anchor_allow_white_space_in_characters'), kwargs.get('anchor_allow_white_space_in_characters', None))
 292        setattr(self, "_{}".format('anchor_allow_white_space_in_characters_metadata'), kwargs.get('anchor_allow_white_space_in_characters_metadata', None))
 293        setattr(self, "_{}".format('anchor_case_sensitive'), kwargs.get('anchor_case_sensitive', None))
 294        setattr(self, "_{}".format('anchor_case_sensitive_metadata'), kwargs.get('anchor_case_sensitive_metadata', None))
 295        setattr(self, "_{}".format('anchor_horizontal_alignment'), kwargs.get('anchor_horizontal_alignment', None))
 296        setattr(self, "_{}".format('anchor_horizontal_alignment_metadata'), kwargs.get('anchor_horizontal_alignment_metadata', None))
 297        setattr(self, "_{}".format('anchor_ignore_if_not_present'), kwargs.get('anchor_ignore_if_not_present', None))
 298        setattr(self, "_{}".format('anchor_ignore_if_not_present_metadata'), kwargs.get('anchor_ignore_if_not_present_metadata', None))
 299        setattr(self, "_{}".format('anchor_match_whole_word'), kwargs.get('anchor_match_whole_word', None))
 300        setattr(self, "_{}".format('anchor_match_whole_word_metadata'), kwargs.get('anchor_match_whole_word_metadata', None))
 301        setattr(self, "_{}".format('anchor_string'), kwargs.get('anchor_string', None))
 302        setattr(self, "_{}".format('anchor_string_metadata'), kwargs.get('anchor_string_metadata', None))
 303        setattr(self, "_{}".format('anchor_tab_processor_version'), kwargs.get('anchor_tab_processor_version', None))
 304        setattr(self, "_{}".format('anchor_tab_processor_version_metadata'), kwargs.get('anchor_tab_processor_version_metadata', None))
 305        setattr(self, "_{}".format('anchor_units'), kwargs.get('anchor_units', None))
 306        setattr(self, "_{}".format('anchor_units_metadata'), kwargs.get('anchor_units_metadata', None))
 307        setattr(self, "_{}".format('anchor_x_offset'), kwargs.get('anchor_x_offset', None))
 308        setattr(self, "_{}".format('anchor_x_offset_metadata'), kwargs.get('anchor_x_offset_metadata', None))
 309        setattr(self, "_{}".format('anchor_y_offset'), kwargs.get('anchor_y_offset', None))
 310        setattr(self, "_{}".format('anchor_y_offset_metadata'), kwargs.get('anchor_y_offset_metadata', None))
 311        setattr(self, "_{}".format('caption'), kwargs.get('caption', None))
 312        setattr(self, "_{}".format('caption_metadata'), kwargs.get('caption_metadata', None))
 313        setattr(self, "_{}".format('conditional_parent_label'), kwargs.get('conditional_parent_label', None))
 314        setattr(self, "_{}".format('conditional_parent_label_metadata'), kwargs.get('conditional_parent_label_metadata', None))
 315        setattr(self, "_{}".format('conditional_parent_value'), kwargs.get('conditional_parent_value', None))
 316        setattr(self, "_{}".format('conditional_parent_value_metadata'), kwargs.get('conditional_parent_value_metadata', None))
 317        setattr(self, "_{}".format('custom_tab_id'), kwargs.get('custom_tab_id', None))
 318        setattr(self, "_{}".format('custom_tab_id_metadata'), kwargs.get('custom_tab_id_metadata', None))
 319        setattr(self, "_{}".format('document_id'), kwargs.get('document_id', None))
 320        setattr(self, "_{}".format('document_id_metadata'), kwargs.get('document_id_metadata', None))
 321        setattr(self, "_{}".format('error_details'), kwargs.get('error_details', None))
 322        setattr(self, "_{}".format('form_order'), kwargs.get('form_order', None))
 323        setattr(self, "_{}".format('form_order_metadata'), kwargs.get('form_order_metadata', None))
 324        setattr(self, "_{}".format('form_page_label'), kwargs.get('form_page_label', None))
 325        setattr(self, "_{}".format('form_page_label_metadata'), kwargs.get('form_page_label_metadata', None))
 326        setattr(self, "_{}".format('form_page_number'), kwargs.get('form_page_number', None))
 327        setattr(self, "_{}".format('form_page_number_metadata'), kwargs.get('form_page_number_metadata', None))
 328        setattr(self, "_{}".format('height'), kwargs.get('height', None))
 329        setattr(self, "_{}".format('height_metadata'), kwargs.get('height_metadata', None))
 330        setattr(self, "_{}".format('locked'), kwargs.get('locked', None))
 331        setattr(self, "_{}".format('locked_metadata'), kwargs.get('locked_metadata', None))
 332        setattr(self, "_{}".format('merge_field'), kwargs.get('merge_field', None))
 333        setattr(self, "_{}".format('merge_field_xml'), kwargs.get('merge_field_xml', None))
 334        setattr(self, "_{}".format('page_number'), kwargs.get('page_number', None))
 335        setattr(self, "_{}".format('page_number_metadata'), kwargs.get('page_number_metadata', None))
 336        setattr(self, "_{}".format('recipient_id'), kwargs.get('recipient_id', None))
 337        setattr(self, "_{}".format('recipient_id_guid'), kwargs.get('recipient_id_guid', None))
 338        setattr(self, "_{}".format('recipient_id_guid_metadata'), kwargs.get('recipient_id_guid_metadata', None))
 339        setattr(self, "_{}".format('recipient_id_metadata'), kwargs.get('recipient_id_metadata', None))
 340        setattr(self, "_{}".format('required'), kwargs.get('required', None))
 341        setattr(self, "_{}".format('required_metadata'), kwargs.get('required_metadata', None))
 342        setattr(self, "_{}".format('shared'), kwargs.get('shared', None))
 343        setattr(self, "_{}".format('shared_metadata'), kwargs.get('shared_metadata', None))
 344        setattr(self, "_{}".format('smart_contract_information'), kwargs.get('smart_contract_information', None))
 345        setattr(self, "_{}".format('source'), kwargs.get('source', None))
 346        setattr(self, "_{}".format('status'), kwargs.get('status', None))
 347        setattr(self, "_{}".format('status_metadata'), kwargs.get('status_metadata', None))
 348        setattr(self, "_{}".format('tab_group_labels'), kwargs.get('tab_group_labels', None))
 349        setattr(self, "_{}".format('tab_group_labels_metadata'), kwargs.get('tab_group_labels_metadata', None))
 350        setattr(self, "_{}".format('tab_id'), kwargs.get('tab_id', None))
 351        setattr(self, "_{}".format('tab_id_metadata'), kwargs.get('tab_id_metadata', None))
 352        setattr(self, "_{}".format('tab_label_metadata'), kwargs.get('tab_label_metadata', None))
 353        setattr(self, "_{}".format('tab_order'), kwargs.get('tab_order', None))
 354        setattr(self, "_{}".format('tab_order_metadata'), kwargs.get('tab_order_metadata', None))
 355        setattr(self, "_{}".format('tab_type'), kwargs.get('tab_type', None))
 356        setattr(self, "_{}".format('tab_type_metadata'), kwargs.get('tab_type_metadata', None))
 357        setattr(self, "_{}".format('template_locked'), kwargs.get('template_locked', None))
 358        setattr(self, "_{}".format('template_locked_metadata'), kwargs.get('template_locked_metadata', None))
 359        setattr(self, "_{}".format('template_required'), kwargs.get('template_required', None))
 360        setattr(self, "_{}".format('template_required_metadata'), kwargs.get('template_required_metadata', None))
 361        setattr(self, "_{}".format('tooltip'), kwargs.get('tooltip', None))
 362        setattr(self, "_{}".format('tool_tip_metadata'), kwargs.get('tool_tip_metadata', None))
 363        setattr(self, "_{}".format('use_background_as_canvas'), kwargs.get('use_background_as_canvas', None))
 364        setattr(self, "_{}".format('width'), kwargs.get('width', None))
 365        setattr(self, "_{}".format('width_metadata'), kwargs.get('width_metadata', None))
 366        setattr(self, "_{}".format('x_position'), kwargs.get('x_position', None))
 367        setattr(self, "_{}".format('x_position_metadata'), kwargs.get('x_position_metadata', None))
 368        setattr(self, "_{}".format('y_position'), kwargs.get('y_position', None))
 369        setattr(self, "_{}".format('y_position_metadata'), kwargs.get('y_position_metadata', None))
 370
 371    @property
 372    def allow_signer_upload(self):
 373        """Gets the allow_signer_upload of this Draw.  # noqa: E501
 374
 375          # noqa: E501
 376
 377        :return: The allow_signer_upload of this Draw.  # noqa: E501
 378        :rtype: str
 379        """
 380        return self._allow_signer_upload
 381
 382    @allow_signer_upload.setter
 383    def allow_signer_upload(self, allow_signer_upload):
 384        """Sets the allow_signer_upload of this Draw.
 385
 386          # noqa: E501
 387
 388        :param allow_signer_upload: The allow_signer_upload of this Draw.  # noqa: E501
 389        :type: str
 390        """
 391
 392        self._allow_signer_upload = allow_signer_upload
 393
 394    @property
 395    def anchor_allow_white_space_in_characters(self):
 396        """Gets the anchor_allow_white_space_in_characters of this Draw.  # noqa: E501
 397
 398          # noqa: E501
 399
 400        :return: The anchor_allow_white_space_in_characters of this Draw.  # noqa: E501
 401        :rtype: str
 402        """
 403        return self._anchor_allow_white_space_in_characters
 404
 405    @anchor_allow_white_space_in_characters.setter
 406    def anchor_allow_white_space_in_characters(self, anchor_allow_white_space_in_characters):
 407        """Sets the anchor_allow_white_space_in_characters of this Draw.
 408
 409          # noqa: E501
 410
 411        :param anchor_allow_white_space_in_characters: The anchor_allow_white_space_in_characters of this Draw.  # noqa: E501
 412        :type: str
 413        """
 414
 415        self._anchor_allow_white_space_in_characters = anchor_allow_white_space_in_characters
 416
 417    @property
 418    def anchor_allow_white_space_in_characters_metadata(self):
 419        """Gets the anchor_allow_white_space_in_characters_metadata of this Draw.  # noqa: E501
 420
 421        Metadata that indicates whether the `anchorAllowWhiteSpaceInCharacters` property is editable.  # noqa: E501
 422
 423        :return: The anchor_allow_white_space_in_characters_metadata of this Draw.  # noqa: E501
 424        :rtype: PropertyMetadata
 425        """
 426        return self._anchor_allow_white_space_in_characters_metadata
 427
 428    @anchor_allow_white_space_in_characters_metadata.setter
 429    def anchor_allow_white_space_in_characters_metadata(self, anchor_allow_white_space_in_characters_metadata):
 430        """Sets the anchor_allow_white_space_in_characters_metadata of this Draw.
 431
 432        Metadata that indicates whether the `anchorAllowWhiteSpaceInCharacters` property is editable.  # noqa: E501
 433
 434        :param anchor_allow_white_space_in_characters_metadata: The anchor_allow_white_space_in_characters_metadata of this Draw.  # noqa: E501
 435        :type: PropertyMetadata
 436        """
 437
 438        self._anchor_allow_white_space_in_characters_metadata = anchor_allow_white_space_in_characters_metadata
 439
 440    @property
 441    def anchor_case_sensitive(self):
 442        """Gets the anchor_case_sensitive of this Draw.  # noqa: E501
 443
 444        When set to **true**, the anchor string does not consider case when matching strings in the document. The default value is **true**.  # noqa: E501
 445
 446        :return: The anchor_case_sensitive of this Draw.  # noqa: E501
 447        :rtype: str
 448        """
 449        return self._anchor_case_sensitive
 450
 451    @anchor_case_sensitive.setter
 452    def anchor_case_sensitive(self, anchor_case_sensitive):
 453        """Sets the anchor_case_sensitive of this Draw.
 454
 455        When set to **true**, the anchor string does not consider case when matching strings in the document. The default value is **true**.  # noqa: E501
 456
 457        :param anchor_case_sensitive: The anchor_case_sensitive of this Draw.  # noqa: E501
 458        :type: str
 459        """
 460
 461        self._anchor_case_sensitive = anchor_case_sensitive
 462
 463    @property
 464    def anchor_case_sensitive_metadata(self):
 465        """Gets the anchor_case_sensitive_metadata of this Draw.  # noqa: E501
 466
 467        Metadata that indicates whether the `anchorCaseSensitive` property is editable.  # noqa: E501
 468
 469        :return: The anchor_case_sensitive_metadata of this Draw.  # noqa: E501
 470        :rtype: PropertyMetadata
 471        """
 472        return self._anchor_case_sensitive_metadata
 473
 474    @anchor_case_sensitive_metadata.setter
 475    def anchor_case_sensitive_metadata(self, anchor_case_sensitive_metadata):
 476        """Sets the anchor_case_sensitive_metadata of this Draw.
 477
 478        Metadata that indicates whether the `anchorCaseSensitive` property is editable.  # noqa: E501
 479
 480        :param anchor_case_sensitive_metadata: The anchor_case_sensitive_metadata of this Draw.  # noqa: E501
 481        :type: PropertyMetadata
 482        """
 483
 484        self._anchor_case_sensitive_metadata = anchor_case_sensitive_metadata
 485
 486    @property
 487    def anchor_horizontal_alignment(self):
 488        """Gets the anchor_horizontal_alignment of this Draw.  # noqa: E501
 489
 490        Specifies the alignment of anchor tabs with anchor strings. Possible values are **left** or **right**. The default value is **left**.  # noqa: E501
 491
 492        :return: The anchor_horizontal_alignment of this Draw.  # noqa: E501
 493        :rtype: str
 494        """
 495        return self._anchor_horizontal_alignment
 496
 497    @anchor_horizontal_alignment.setter
 498    def anchor_horizontal_alignment(self, anchor_horizontal_alignment):
 499        """Sets the anchor_horizontal_alignment of this Draw.
 500
 501        Specifies the alignment of anchor tabs with anchor strings. Possible values are **left** or **right**. The default value is **left**.  # noqa: E501
 502
 503        :param anchor_horizontal_alignment: The anchor_horizontal_alignment of this Draw.  # noqa: E501
 504        :type: str
 505        """
 506
 507        self._anchor_horizontal_alignment = anchor_horizontal_alignment
 508
 509    @property
 510    def anchor_horizontal_alignment_metadata(self):
 511        """Gets the anchor_horizontal_alignment_metadata of this Draw.  # noqa: E501
 512
 513        Metadata that indicates whether the `anchorHorizontalAlignment` property is editable.  # noqa: E501
 514
 515        :return: The anchor_horizontal_alignment_metadata of this Draw.  # noqa: E501
 516        :rtype: PropertyMetadata
 517        """
 518        return self._anchor_horizontal_alignment_metadata
 519
 520    @anchor_horizontal_alignment_metadata.setter
 521    def anchor_horizontal_alignment_metadata(self, anchor_horizontal_alignment_metadata):
 522        """Sets the anchor_horizontal_alignment_metadata of this Draw.
 523
 524        Metadata that indicates whether the `anchorHorizontalAlignment` property is editable.  # noqa: E501
 525
 526        :param anchor_horizontal_alignment_metadata: The anchor_horizontal_alignment_metadata of this Draw.  # noqa: E501
 527        :type: PropertyMetadata
 528        """
 529
 530        self._anchor_horizontal_alignment_metadata = anchor_horizontal_alignment_metadata
 531
 532    @property
 533    def anchor_ignore_if_not_present(self):
 534        """Gets the anchor_ignore_if_not_present of this Draw.  # noqa: E501
 535
 536        When set to **true**, this tab is ignored if anchorString is not found in the document.  # noqa: E501
 537
 538        :return: The anchor_ignore_if_not_present of this Draw.  # noqa: E501
 539        :rtype: str
 540        """
 541        return self._anchor_ignore_if_not_present
 542
 543    @anchor_ignore_if_not_present.setter
 544    def anchor_ignore_if_not_present(self, anchor_ignore_if_not_present):
 545        """Sets the anchor_ignore_if_not_present of this Draw.
 546
 547        When set to **true**, this tab is ignored if anchorString is not found in the document.  # noqa: E501
 548
 549        :param anchor_ignore_if_not_present: The anchor_ignore_if_not_present of this Draw.  # noqa: E501
 550        :type: str
 551        """
 552
 553        self._anchor_ignore_if_not_present = anchor_ignore_if_not_present
 554
 555    @property
 556    def anchor_ignore_if_not_present_metadata(self):
 557        """Gets the anchor_ignore_if_not_present_metadata of this Draw.  # noqa: E501
 558
 559        Metadata that indicates whether the `anchorIgnoreIfNotPresent` property is editable.  # noqa: E501
 560
 561        :return: The anchor_ignore_if_not_present_metadata of this Draw.  # noqa: E501
 562        :rtype: PropertyMetadata
 563        """
 564        return self._anchor_ignore_if_not_present_metadata
 565
 566    @anchor_ignore_if_not_present_metadata.setter
 567    def anchor_ignore_if_not_present_metadata(self, anchor_ignore_if_not_present_metadata):
 568        """Sets the anchor_ignore_if_not_present_metadata of this Draw.
 569
 570        Metadata that indicates whether the `anchorIgnoreIfNotPresent` property is editable.  # noqa: E501
 571
 572        :param anchor_ignore_if_not_present_metadata: The anchor_ignore_if_not_present_metadata of this Draw.  # noqa: E501
 573        :type: PropertyMetadata
 574        """
 575
 576        self._anchor_ignore_if_not_present_metadata = anchor_ignore_if_not_present_metadata
 577
 578    @property
 579    def anchor_match_whole_word(self):
 580        """Gets the anchor_match_whole_word of this Draw.  # noqa: E501
 581
 582        When set to **true**, the anchor string in this tab matches whole words only (strings embedded in other strings are ignored.) The default value is **true**.  # noqa: E501
 583
 584        :return: The anchor_match_whole_word of this Draw.  # noqa: E501
 585        :rtype: str
 586        """
 587        return self._anchor_match_whole_word
 588
 589    @anchor_match_whole_word.setter
 590    def anchor_match_whole_word(self, anchor_match_whole_word):
 591        """Sets the anchor_match_whole_word of this Draw.
 592
 593        When set to **true**, the anchor string in this tab matches whole words only (strings embedded in other strings are ignored.) The default value is **true**.  # noqa: E501
 594
 595        :param anchor_match_whole_word: The anchor_match_whole_word of this Draw.  # noqa: E501
 596        :type: str
 597        """
 598
 599        self._anchor_match_whole_word = anchor_match_whole_word
 600
 601    @property
 602    def anchor_match_whole_word_metadata(self):
 603        """Gets the anchor_match_whole_word_metadata of this Draw.  # noqa: E501
 604
 605        Metadata that indicates whether the `anchorMatchWholeWord` property is editable.  # noqa: E501
 606
 607        :return: The anchor_match_whole_word_metadata of this Draw.  # noqa: E501
 608        :rtype: PropertyMetadata
 609        """
 610        return self._anchor_match_whole_word_metadata
 611
 612    @anchor_match_whole_word_metadata.setter
 613    def anchor_match_whole_word_metadata(self, anchor_match_whole_word_metadata):
 614        """Sets the anchor_match_whole_word_metadata of this Draw.
 615
 616        Metadata that indicates whether the `anchorMatchWholeWord` property is editable.  # noqa: E501
 617
 618        :param anchor_match_whole_word_metadata: The anchor_match_whole_word_metadata of this Draw.  # noqa: E501
 619        :type: PropertyMetadata
 620        """
 621
 622        self._anchor_match_whole_word_metadata = anchor_match_whole_word_metadata
 623
 624    @property
 625    def anchor_string(self):
 626        """Gets the anchor_string of this Draw.  # noqa: E501
 627
 628        Anchor text information for a radio button.  # noqa: E501
 629
 630        :return: The anchor_string of this Draw.  # noqa: E501
 631        :rtype: str
 632        """
 633        return self._anchor_string
 634
 635    @anchor_string.setter
 636    def anchor_string(self, anchor_string):
 637        """Sets the anchor_string of this Draw.
 638
 639        Anchor text information for a radio button.  # noqa: E501
 640
 641        :param anchor_string: The anchor_string of this Draw.  # noqa: E501
 642        :type: str
 643        """
 644
 645        self._anchor_string = anchor_string
 646
 647    @property
 648    def anchor_string_metadata(self):
 649        """Gets the anchor_string_metadata of this Draw.  # noqa: E501
 650
 651        Metadata that indicates whether the `anchorString` property is editable.  # noqa: E501
 652
 653        :return: The anchor_string_metadata of this Draw.  # noqa: E501
 654        :rtype: PropertyMetadata
 655        """
 656        return self._anchor_string_metadata
 657
 658    @anchor_string_metadata.setter
 659    def anchor_string_metadata(self, anchor_string_metadata):
 660        """Sets the anchor_string_metadata of this Draw.
 661
 662        Metadata that indicates whether the `anchorString` property is editable.  # noqa: E501
 663
 664        :param anchor_string_metadata: The anchor_string_metadata of this Draw.  # noqa: E501
 665        :type: PropertyMetadata
 666        """
 667
 668        self._anchor_string_metadata = anchor_string_metadata
 669
 670    @property
 671    def anchor_tab_processor_version(self):
 672        """Gets the anchor_tab_processor_version of this Draw.  # noqa: E501
 673
 674          # noqa: E501
 675
 676        :return: The anchor_tab_processor_version of this Draw.  # noqa: E501
 677        :rtype: str
 678        """
 679        return self._anchor_tab_processor_version
 680
 681    @anchor_tab_processor_version.setter
 682    def anchor_tab_processor_version(self, anchor_tab_processor_version):
 683        """Sets the anchor_tab_processor_version of this Draw.
 684
 685          # noqa: E501
 686
 687        :param anchor_tab_processor_version: The anchor_tab_processor_version of this Draw.  # noqa: E501
 688        :type: str
 689        """
 690
 691        self._anchor_tab_processor_version = anchor_tab_processor_version
 692
 693    @property
 694    def anchor_tab_processor_version_metadata(self):
 695        """Gets the anchor_tab_processor_version_metadata of this Draw.  # noqa: E501
 696
 697        Reserved for DocuSign.  # noqa: E501
 698
 699        :return: The anchor_tab_processor_version_metadata of this Draw.  # noqa: E501
 700        :rtype: PropertyMetadata
 701        """
 702        return self._anchor_tab_processor_version_metadata
 703
 704    @anchor_tab_processor_version_metadata.setter
 705    def anchor_tab_processor_version_metadata(self, anchor_tab_processor_version_metadata):
 706        """Sets the anchor_tab_processor_version_metadata of this Draw.
 707
 708        Reserved for DocuSign.  # noqa: E501
 709
 710        :param anchor_tab_processor_version_metadata: The anchor_tab_processor_version_metadata of this Draw.  # noqa: E501
 711        :type: PropertyMetadata
 712        """
 713
 714        self._anchor_tab_processor_version_metadata = anchor_tab_processor_version_metadata
 715
 716    @property
 717    def anchor_units(self):
 718        """Gets the anchor_units of this Draw.  # noqa: E501
 719
 720        Specifies units of the X and Y offset. Units could be pixels, millimeters, centimeters, or inches.  # noqa: E501
 721
 722        :return: The anchor_units of this Draw.  # noqa: E501
 723        :rtype: str
 724        """
 725        return self._anchor_units
 726
 727    @anchor_units.setter
 728    def anchor_units(self, anchor_units):
 729        """Sets the anchor_units of this Draw.
 730
 731        Specifies units of the X and Y offset. Units could be pixels, millimeters, centimeters, or inches.  # noqa: E501
 732
 733        :param anchor_units: The anchor_units of this Draw.  # noqa: E501
 734        :type: str
 735        """
 736
 737        self._anchor_units = anchor_units
 738
 739    @property
 740    def anchor_units_metadata(self):
 741        """Gets the anchor_units_metadata of this Draw.  # noqa: E501
 742
 743        Metadata that indicates whether the `anchorUnits` property is editable.  # noqa: E501
 744
 745        :return: The anchor_units_metadata of this Draw.  # noqa: E501
 746        :rtype: PropertyMetadata
 747        """
 748        return self._anchor_units_metadata
 749
 750    @anchor_units_metadata.setter
 751    def anchor_units_metadata(self, anchor_units_metadata):
 752        """Sets the anchor_units_metadata of this Draw.
 753
 754        Metadata that indicates whether the `anchorUnits` property is editable.  # noqa: E501
 755
 756        :param anchor_units_metadata: The anchor_units_metadata of this Draw.  # noqa: E501
 757        :type: PropertyMetadata
 758        """
 759
 760        self._anchor_units_metadata = anchor_units_metadata
 761
 762    @property
 763    def anchor_x_offset(self):
 764        """Gets the anchor_x_offset of this Draw.  # noqa: E501
 765
 766        Specifies the X axis location of the tab, in anchorUnits, relative to the anchorString.  # noqa: E501
 767
 768        :return: The anchor_x_offset of this Draw.  # noqa: E501
 769        :rtype: str
 770        """
 771        return self._anchor_x_offset
 772
 773    @anchor_x_offset.setter
 774    def anchor_x_offset(self, anchor_x_offset):
 775        """Sets the anchor_x_offset of this Draw.
 776
 777        Specifies the X axis location of the tab, in anchorUnits, relative to the anchorString.  # noqa: E501
 778
 779        :param anchor_x_offset: The anchor_x_offset of this Draw.  # noqa: E501
 780        :type: str
 781        """
 782
 783        self._anchor_x_offset = anchor_x_offset
 784
 785    @property
 786    def anchor_x_offset_metadata(self):
 787        """Gets the anchor_x_offset_metadata of this Draw.  # noqa: E501
 788
 789        Metadata that indicates whether the `anchorXOffset` property is editable.  # noqa: E501
 790
 791        :return: The anchor_x_offset_metadata of this Draw.  # noqa: E501
 792        :rtype: PropertyMetadata
 793        """
 794        return self._anchor_x_offset_metadata
 795
 796    @anchor_x_offset_metadata.setter
 797    def anchor_x_offset_metadata(self, anchor_x_offset_metadata):
 798        """Sets the anchor_x_offset_metadata of this Draw.
 799
 800        Metadata that indicates whether the `anchorXOffset` property is editable.  # noqa: E501
 801
 802        :param anchor_x_offset_metadata: The anchor_x_offset_metadata of this Draw.  # noqa: E501
 803        :type: PropertyMetadata
 804        """
 805
 806        self._anchor_x_offset_metadata = anchor_x_offset_metadata
 807
 808    @property
 809    def anchor_y_offset(self):
 810        """Gets the anchor_y_offset of this Draw.  # noqa: E501
 811
 812        Specifies the Y axis location of the tab, in anchorUnits, relative to the anchorString.  # noqa: E501
 813
 814        :return: The anchor_y_offset of this Draw.  # noqa: E501
 815        :rtype: str
 816        """
 817        return self._anchor_y_offset
 818
 819    @anchor_y_offset.setter
 820    def anchor_y_offset(self, anchor_y_offset):
 821        """Sets the anchor_y_offset of this Draw.
 822
 823        Specifies the Y axis location of the tab, in anchorUnits, relative to the anchorString.  # noqa: E501
 824
 825        :param anchor_y_offset: The anchor_y_offset of this Draw.  # noqa: E501
 826        :type: str
 827        """
 828
 829        self._anchor_y_offset = anchor_y_offset
 830
 831    @property
 832    def anchor_y_offset_metadata(self):
 833        """Gets the anchor_y_offset_metadata of this Draw.  # noqa: E501
 834
 835        Metadata that indicates whether the `anchorYOffset` property is editable.  # noqa: E501
 836
 837        :return: The anchor_y_offset_metadata of this Draw.  # noqa: E501
 838        :rtype: PropertyMetadata
 839        """
 840        return self._anchor_y_offset_metadata
 841
 842    @anchor_y_offset_metadata.setter
 843    def anchor_y_offset_metadata(self, anchor_y_offset_metadata):
 844        """Sets the anchor_y_offset_metadata of this Draw.
 845
 846        Metadata that indicates whether the `anchorYOffset` property is editable.  # noqa: E501
 847
 848        :param anchor_y_offset_metadata: The anchor_y_offset_metadata of this Draw.  # noqa: E501
 849        :type: PropertyMetadata
 850        """
 851
 852        self._anchor_y_offset_metadata = anchor_y_offset_metadata
 853
 854    @property
 855    def caption(self):
 856        """Gets the caption of this Draw.  # noqa: E501
 857
 858          # noqa: E501
 859
 860        :return: The caption of this Draw.  # noqa: E501
 861        :rtype: str
 862        """
 863        return self._caption
 864
 865    @caption.setter
 866    def caption(self, caption):
 867        """Sets the caption of this Draw.
 868
 869          # noqa: E501
 870
 871        :param caption: The caption of this Draw.  # noqa: E501
 872        :type: str
 873        """
 874
 875        self._caption = caption
 876
 877    @property
 878    def caption_metadata(self):
 879        """Gets the caption_metadata of this Draw.  # noqa: E501
 880
 881          # noqa: E501
 882
 883        :return: The caption_metadata of this Draw.  # noqa: E501
 884        :rtype: PropertyMetadata
 885        """
 886        return self._caption_metadata
 887
 888    @caption_metadata.setter
 889    def caption_metadata(self, caption_metadata):
 890        """Sets the caption_metadata of this Draw.
 891
 892          # noqa: E501
 893
 894        :param caption_metadata: The caption_metadata of this Draw.  # noqa: E501
 895        :type: PropertyMetadata
 896        """
 897
 898        self._caption_metadata = caption_metadata
 899
 900    @property
 901    def conditional_parent_label(self):
 902        """Gets the conditional_parent_label of this Draw.  # noqa: E501
 903
 904        For conditional fields this is the TabLabel of the parent tab that controls this tab's visibility.  # noqa: E501
 905
 906        :return: The conditional_parent_label of this Draw.  # noqa: E501
 907        :rtype: str
 908        """
 909        return self._conditional_parent_label
 910
 911    @conditional_parent_label.setter
 912    def conditional_parent_label(self, conditional_parent_label):
 913        """Sets the conditional_parent_label of this Draw.
 914
 915        For conditional fields this is the TabLabel of the parent tab that controls this tab's visibility.  # noqa: E501
 916
 917        :param conditional_parent_label: The conditional_parent_label of this Draw.  # noqa: E501
 918        :type: str
 919        """
 920
 921        self._conditional_parent_label = conditional_parent_label
 922
 923    @property
 924    def conditional_parent_label_metadata(self):
 925        """Gets the conditional_parent_label_metadata of this Draw.  # noqa: E501
 926
 927        Metadata that indicates whether the `conditionalParentLabel` property is editable.  # noqa: E501
 928
 929        :return: The conditional_parent_label_metadata of this Draw.  # noqa: E501
 930        :rtype: PropertyMetadata
 931        """
 932        return self._conditional_parent_label_metadata
 933
 934    @conditional_parent_label_metadata.setter
 935    def conditional_parent_label_metadata(self, conditional_parent_label_metadata):
 936        """Sets the conditional_parent_label_metadata of this Draw.
 937
 938        Metadata that indicates whether the `conditionalParentLabel` property is editable.  # noqa: E501
 939
 940        :param conditional_parent_label_metadata: The conditional_parent_label_metadata of this Draw.  # noqa: E501
 941        :type: PropertyMetadata
 942        """
 943
 944        self._conditional_parent_label_metadata = conditional_parent_label_metadata
 945
 946    @property
 947    def conditional_parent_value(self):
 948        """Gets the conditional_parent_value of this Draw.  # noqa: E501
 949
 950        For conditional fields, this is the value of the parent tab that controls the tab's visibility.  If the parent tab is a Checkbox, Radio button, Optional Signature, or Optional Initial use \"on\" as the value to show that the parent tab is active.   # noqa: E501
 951
 952        :return: The conditional_parent_value of this Draw.  # noqa: E501
 953        :rtype: str
 954        """
 955        return self._conditional_parent_value
 956
 957    @conditional_parent_value.setter
 958    def conditional_parent_value(self, conditional_parent_value):
 959        """Sets the conditional_parent_value of this Draw.
 960
 961        For conditional fields, this is the value of the parent tab that controls the tab's visibility.  If the parent tab is a Checkbox, Radio button, Optional Signature, or Optional Initial use \"on\" as the value to show that the parent tab is active.   # noqa: E501
 962
 963        :param conditional_parent_value: The conditional_parent_value of this Draw.  # noqa: E501
 964        :type: str
 965        """
 966
 967        self._conditional_parent_value = conditional_parent_value
 968
 969    @property
 970    def conditional_parent_value_metadata(self):
 971        """Gets the conditional_parent_value_metadata of this Draw.  # noqa: E501
 972
 973        Metadata that indicates whether the `conditionalParentValue` property is editable.  # noqa: E501
 974
 975        :return: The conditional_parent_value_metadata of this Draw.  # noqa: E501
 976        :rtype: PropertyMetadata
 977        """
 978        return self._conditional_parent_value_metadata
 979
 980    @conditional_parent_value_metadata.setter
 981    def conditional_parent_value_metadata(self, conditional_parent_value_metadata):
 982        """Sets the conditional_parent_value_metadata of this Draw.
 983
 984        Metadata that indicates whether the `conditionalParentValue` property is editable.  # noqa: E501
 985
 986        :param conditional_parent_value_metadata: The conditional_parent_value_metadata of this Draw.  # noqa: E501
 987        :type: PropertyMetadata
 988        """
 989
 990        self._conditional_parent_value_metadata = conditional_parent_value_metadata
 991
 992    @property
 993    def custom_tab_id(self):
 994        """Gets the custom_tab_id of this Draw.  # noqa: E501
 995
 996        The DocuSign generated custom tab ID for the custom tab to be applied. This can only be used when adding new tabs for a recipient. When used, the new tab inherits all the custom tab properties.  # noqa: E501
 997
 998        :return: The custom_tab_id of this Draw.  # noqa: E501
 999        :rtype: str
1000        """
1001        return self._custom_tab_id
1002
1003    @custom_tab_id.setter
1004    def custom_tab_id(self, custom_tab_id):
1005        """Sets the custom_tab_id of this Draw.
1006
1007        The DocuSign generated custom tab ID for the custom tab to be applied. This can only be used when adding new tabs for a recipient. When used, the new tab inherits all the custom tab properties.  # noqa: E501
1008
1009        :param custom_tab_id: The custom_tab_id of this Draw.  # noqa: E501
1010        :type: str
1011        """
1012
1013        self._custom_tab_id = custom_tab_id
1014
1015    @property
1016    def custom_tab_id_metadata(self):
1017        """Gets the custom_tab_id_metadata of this Draw.  # noqa: E501
1018
1019        Metadata that indicates whether the `customTabId` property is editable.  # noqa: E501
1020
1021        :return: The custom_tab_id_metadata of this Draw.  # noqa: E501
1022        :rtype: PropertyMetadata
1023        """
1024        return self._custom_tab_id_metadata
1025
1026    @custom_tab_id_metadata.setter
1027    def custom_tab_id_metadata(self, custom_tab_id_metadata):
1028        """Sets the custom_tab_id_metadata of this Draw.
1029
1030        Metadata that indicates whether the `customTabId` property is editable.  # noqa: E501
1031
1032        :param custom_tab_id_metadata: The custom_tab_id_metadata of this Draw.  # noqa: E501
1033        :type: PropertyMetadata
1034        """
1035
1036        self._custom_tab_id_metadata = custom_tab_id_metadata
1037
1038    @property
1039    def document_id(self):
1040        """Gets the document_id of this Draw.  # noqa: E501
1041
1042        Specifies the document ID number that the tab is placed on. This must refer to an existing Document's ID attribute.  # noqa: E501
1043
1044        :return: The document_id of this Draw.  # noqa: E501
1045        :rtype: str
1046        """
1047        return self._document_id
1048
1049    @document_id.setter
1050    def document_id(self, document_id):
1051        """Sets the document_id of this Draw.
1052
1053        Specifies the document ID number that the tab is placed on. This must refer to an existing Document's ID attribute.  # noqa: E501
1054
1055        :param document_id: The document_id of this Draw.  # noqa: E501
1056        :type: str
1057        """
1058
1059        self._document_id = document_id
1060
1061    @property
1062    def document_id_metadata(self):
1063        """Gets the document_id_metadata of this Draw.  # noqa: E501
1064
1065        Metadata that indicates whether the `documentId` property is editable.  # noqa: E501
1066
1067        :return: The document_id_metadata of this Draw.  # noqa: E501
1068        :rtype: PropertyMetadata
1069        """
1070        return self._document_id_metadata
1071
1072    @document_id_metadata.setter
1073    def document_id_metadata(self, document_id_metadata):
1074        """Sets the document_id_metadata of this Draw.
1075
1076        Metadata that indicates whether the `documentId` property is editable.  # noqa: E501
1077
1078        :param document_id_metadata: The document_id_metadata of this Draw.  # noqa: E501
1079        :type: PropertyMetadata
1080        """
1081
1082        self._document_id_metadata = document_id_metadata
1083
1084    @property
1085    def error_details(self):
1086        """Gets the error_details of this Draw.  # noqa: E501
1087
1088        Array or errors.  # noqa: E501
1089
1090        :return: The error_details of this Draw.  # noqa: E501
1091        :rtype: ErrorDetails
1092        """
1093        return self._error_details
1094
1095    @error_details.setter
1096    def error_details(self, error_details):
1097        """Sets the error_details of this Draw.
1098
1099        Array or errors.  # noqa: E501
1100
1101        :param error_details: The error_details of this Draw.  # noqa: E501
1102        :type: ErrorDetails
1103        """
1104
1105        self._error_details = error_details
1106
1107    @property
1108    def form_order(self):
1109        """Gets the form_order of this Draw.  # noqa: E501
1110
1111          # noqa: E501
1112
1113        :return: The form_order of this Draw.  # noqa: E501
1114        :rtype: str
1115        """
1116        return self._form_order
1117
1118    @form_order.setter
1119    def form_order(self, form_order):
1120        """Sets the form_order of this Draw.
1121
1122          # noqa: E501
1123
1124        :param form_order: The form_order of this Draw.  # noqa: E501
1125        :type: str
1126        """
1127
1128        self._form_order = form_order
1129
1130    @property
1131    def form_order_metadata(self):
1132        """Gets the form_order_metadata of this Draw.  # noqa: E501
1133
1134        Metadata that indicates whether the `formOrder` property is editable.  # noqa: E501
1135
1136        :return: The form_order_metadata of this Draw.  # noqa: E501
1137        :rtype: PropertyMetadata
1138        """
1139        return self._form_order_metadata
1140
1141    @form_order_metadata.setter
1142    def form_order_metadata(self, form_order_metadata):
1143        """Sets the form_order_metadata of this Draw.
1144
1145        Metadata that indicates whether the `formOrder` property is editable.  # noqa: E501
1146
1147        :param form_order_metadata: The form_order_metadata of this Draw.  # noqa: E501
1148        :type: PropertyMetadata
1149        """
1150
1151        self._form_order_metadata = form_order_metadata
1152
1153    @property
1154    def form_page_label(self):
1155        """Gets the form_page_label of this Draw.  # noqa: E501
1156
1157          # noqa: E501
1158
1159        :return: The form_page_label of this Draw.  # noqa: E501
1160        :rtype: str
1161        """
1162        return self._form_page_label
1163
1164    @form_page_label.setter
1165    def form_page_label(self, form_page_label):
1166        """Sets the form_page_label of this Draw.
1167
1168          # noqa: E501
1169
1170        :param form_page_label: The form_page_label of this Draw.  # noqa: E501
1171        :type: str
1172        """
1173
1174        self._form_page_label = form_page_label
1175
1176    @property
1177    def form_page_label_metadata(self):
1178        """Gets the form_page_label_metadata of this Draw.  # noqa: E501
1179
1180        Metadata that indicates whether the `formPageLabel` property is editable.  # noqa: E501
1181
1182        :return: The form_page_label_metadata of this Draw.  # noqa: E501
1183        :rtype: PropertyMetadata
1184        """
1185        return self._form_page_label_metadata
1186
1187    @form_page_label_metadata.setter
1188    def form_page_label_metadata(self, form_page_label_metadata):
1189        """Sets the form_page_label_metadata of this Draw.
1190
1191        Metadata that indicates whether the `formPageLabel` property is editable.  # noqa: E501
1192
1193        :param form_page_label_metadata: The form_page_label_metadata of this Draw.  # noqa: E501
1194        :type: PropertyMetadata
1195        """
1196
1197        self._form_page_label_metadata = form_page_label_metadata
1198
1199    @property
1200    def form_page_number(self):
1201        """Gets the form_page_number of this Draw.  # noqa: E501
1202
1203          # noqa: E501
1204
1205        :return: The form_page_number of this Draw.  # noqa: E501
1206        :rtype: str
1207        """
1208        return self._form_page_number
1209
1210    @form_page_number.setter
1211    def form_page_number(self, form_page_number):
1212        """Sets the form_page_number of this Draw.
1213
1214          # noqa: E501
1215
1216        :param form_page_number: The form_page_number of this Draw.  # noqa: E501
1217        :type: str
1218        """
1219
1220        self._form_page_number = form_page_number
1221
1222    @property
1223    def form_page_number_metadata(self):
1224        """Gets the form_page_number_metadata of this Draw.  # noqa: E501
1225
1226        Metadata that indicates whether the `fromPageNumber` property is editable.  # noqa: E501
1227
1228        :return: The form_page_number_metadata of this Draw.  # noqa: E501
1229        :rtype: PropertyMetadata
1230        """
1231        return self._form_page_number_metadata
1232
1233    @form_page_number_metadata.setter
1234    def form_page_number_metadata(self, form_page_number_metadata):
1235        """Sets the form_page_number_metadata of this Draw.
1236
1237        Metadata that indicates whether the `fromPageNumber` property is editable.  # noqa: E501
1238
1239        :param form_page_number_metadata: The form_page_number_metadata of this Draw.  # noqa: E501
1240        :type: PropertyMetadata
1241        """
1242
1243        self._form_page_number_metadata = form_page_number_metadata
1244
1245    @property
1246    def height(self):
1247        """Gets the height of this Draw.  # noqa: E501
1248
1249        Height of the tab in pixels.  # noqa: E501
1250
1251        :return: The height of this Draw.  # noqa: E501
1252        :rtype: str
1253        """
1254        return self._height
1255
1256    @height.setter
1257    def height(self, height):
1258        """Sets the height of this Draw.
1259
1260        Height of the tab in pixels.  # noqa: E501
1261
1262        :param height: The height of this Draw.  # noqa: E501
1263        :type: str
1264        """
1265
1266        self._height = height
1267
1268    @property
1269    def height_metadata(self):
1270        """Gets the height_metadata of this Draw.  # noqa: E501
1271
1272        Metadata that indicates whether the `height` property is editable.  # noqa: E501
1273
1274        :return: The height_metadata of this Draw.  # noqa: E501
1275        :rtype: PropertyMetadata
1276        """
1277        return self._height_metadata
1278
1279    @height_metadata.setter
1280    def height_metadata(self, height_metadata):
1281        """Sets the height_metadata of this Draw.
1282
1283        Metadata that indicates whether the `height` property is editable.  # noqa: E501
1284
1285        :param height_metadata: The height_metadata of this Draw.  # noqa: E501
1286        :type: PropertyMetadata
1287        """
1288
1289        self._height_metadata = height_metadata
1290
1291    @property
1292    def locked(self):
1293        """Gets the locked of this Draw.  # noqa: E501
1294
1295        When set to **true**, the signer cannot change the data of the custom tab.  # noqa: E501
1296
1297        :return: The locked of this Draw.  # noqa: E501
1298        :rtype: str
1299        """
1300        return self._locked
1301
1302    @locked.setter
1303    def locked(self, locked):
1304        """Sets the locked of this Draw.
1305
1306        When set to **true**, the signer cannot change the data of the custom tab.  # noqa: E501
1307
1308        :param locked: The locked of this Draw.  # noqa: E501
1309        :type: str
1310        """
1311
1312        self._locked = locked
1313
1314    @property
1315    def locked_metadata(self):
1316        """Gets the locked_metadata of this Draw.  # noqa: E501
1317
1318        Metadata that indicates whether the `locked` property is editable.  # noqa: E501
1319
1320        :return: The locked_metadata of this Draw.  # noqa: E501
1321        :rtype: PropertyMetadata
1322        """
1323        return self._locked_metadata
1324
1325    @locked_metadata.setter
1326    def locked_metadata(self, locked_metadata):
1327        """Sets the locked_metadata of this Draw.
1328
1329        Metadata that indicates whether the `locked` property is editable.  # noqa: E501
1330
1331        :param locked_metadata: The locked_metadata of this Draw.  # noqa: E501
1332        :type: PropertyMetadata
1333        """
1334
1335        self._locked_metadata = locked_metadata
1336
1337    @property
1338    def merge_field(self):
1339        """Gets the merge_field of this Draw.  # noqa: E501
1340
1341        Contains the information necessary to map the tab to a field in SalesForce.  # noqa: E501
1342
1343        :return: The merge_field of this Draw.  # noqa: E501
1344        :rtype: MergeField
1345        """
1346        return self._merge_field
1347
1348    @merge_field.setter
1349    def merge_field(self, merge_field):
1350        """Sets the merge_field of this Draw.
1351
1352        Contains the information necessary to map the tab to a field in SalesForce.  # noqa: E501
1353
1354        :param merge_field: The merge_field of this Draw.  # noqa: E501
1355        :type: MergeField
1356        """
1357
1358        self._merge_field = merge_field
1359
1360    @property
1361    def merge_field_xml(self):
1362        """Gets the merge_field_xml of this Draw.  # noqa: E501
1363
1364          # noqa: E501
1365
1366        :return: The merge_field_xml of this Draw.  # noqa: E501
1367        :rtype: str
1368        """
1369        return self._merge_field_xml
1370
1371    @merge_field_xml.setter
1372    def merge_field_xml(self, merge_field_xml):
1373        """Sets the merge_field_xml of this Draw.
1374
1375          # noqa: E501
1376
1377        :param merge_field_xml: The merge_field_xml of this Draw.  # noqa: E501
1378        :type: str
1379        """
1380
1381        self._merge_field_xml = merge_field_xml
1382
1383    @property
1384    def page_number(self):
1385        """Gets the page_number of this Draw.  # noqa: E501
1386
1387        Specifies the page number on which the tab is located.  # noqa: E501
1388
1389        :return: The page_number of this Draw.  # noqa: E501
1390        :rtype: str
1391        """
1392        return self._page_number
1393
1394    @page_number.setter
1395    def page_number(self, page_number):
1396        """Sets the page_number of this Draw.
1397
1398        Specifies the page number on which the tab is located.  # noqa: E501
1399
1400        :param page_number: The page_number of this Draw.  # noqa: E501
1401        :type: str
1402        """
1403
1404        self._page_number = page_number
1405
1406    @property
1407    def page_number_metadata(self):
1408        """Gets the page_number_metadata of this Draw.  # noqa: E501
1409
1410        Metadata that indicates whether the `pageNumber` property is editable.  # noqa: E501
1411
1412        :return: The page_number_metadata of this Draw.  # noqa: E501
1413        :rtype: PropertyMetadata
1414        """
1415        return self._page_number_metadata
1416
1417    @page_number_metadata.setter
1418    def page_number_metadata(self, page_number_metadata):
1419        """Sets the page_number_metadata of this Draw.
1420
1421        Metadata that indicates whether the `pageNumber` property is editable.  # noqa: E501
1422
1423        :param page_number_metadata: The page_number_metadata of this Draw.  # noqa: E501
1424        :type: PropertyMetadata
1425        """
1426
1427        self._page_number_metadata = page_number_metadata
1428
1429    @property
1430    def recipient_id(self):
1431        """Gets the recipient_id of this Draw.  # noqa: E501
1432
1433        Unique for the recipient. It is used by the tab element to indicate which recipient is to sign the Document.  # noqa: E501
1434
1435        :return: The recipient_id of this Draw.  # noqa: E501
1436        :rtype: str
1437        """
1438        return self._recipient_id
1439
1440    @recipient_id.setter
1441    def recipient_id(self, recipient_id):
1442        """Sets the recipient_id of this Draw.
1443
1444        Unique for the recipient. It is used by the tab element to indicate which recipient is to sign the Document.  # noqa: E501
1445
1446        :param recipient_id: The recipient_id of this Draw.  # noqa: E501
1447        :type: str
1448        """
1449
1450        self._recipient_id = recipient_id
1451
1452    @property
1453    def recipient_id_guid(self):
1454        """Gets the recipient_id_guid of this Draw.  # noqa: E501
1455
1456          # noqa: E501
1457
1458        :return: The recipient_id_guid of this Draw.  # noqa: E501
1459        :rtype: str
1460        """
1461        return self._recipient_id_guid
1462
1463    @recipient_id_guid.setter
1464    def recipient_id_guid(self, recipient_id_guid):
1465        """Sets the recipient_id_guid of this Draw.
1466
1467          # noqa: E501
1468
1469        :param recipient_id_guid: The recipient_id_guid of this Draw.  # noqa: E501
1470        :type: str
1471        """
1472
1473        self._recipient_id_guid = recipient_id_guid
1474
1475    @property
1476    def recipient_id_guid_metadata(self):
1477        """Gets the recipient_id_guid_metadata of this Draw.  # noqa: E501
1478
1479        Metadata that indicates whether the `recipientIdGuid` property is editable.  # noqa: E501
1480
1481        :return: The recipient_id_guid_metadata of this Draw.  # noqa: E501
1482        :rtype: PropertyMetadata
1483        """
1484        return self._recipient_id_guid_metadata
1485
1486    @recipient_id_guid_metadata.setter
1487    def recipient_id_guid_metadata(self, recipient_id_guid_metadata):
1488        """Sets the recipient_id_guid_metadata of this Draw.
1489
1490        Metadata that indicates whether the `recipientIdGuid` property is editable.  # noqa: E501
1491
1492        :param recipient_id_guid_metadata: The recipient_id_guid_metadata of this Draw.  # noqa: E501
1493        :type: PropertyMetadata
1494        """
1495
1496        self._recipient_id_guid_metadata = recipient_id_guid_metadata
1497
1498    @property
1499    def recipient_id_metadata(self):
1500        """Gets the recipient_id_metadata of this Draw.  # noqa: E501
1501
1502        Metadata that indicates whether the `recipientId` property is editable.  # noqa: E501
1503
1504        :return: The recipient_id_metadata of this Draw.  # noqa: E501
1505        :rtype: PropertyMetadata
1506        """
1507        return self._recipient_id_metadata
1508
1509    @recipient_id_metadata.setter
1510    def recipient_id_metadata(self, recipient_id_metadata):
1511        """Sets the recipient_id_metadata of this Draw.
1512
1513        Metadata that indicates whether the `recipientId` property is editable.  # noqa: E501
1514
1515        :param recipient_id_metadata: The recipient_id_metadata of this Draw.  # noqa: E501
1516        :type: PropertyMetadata
1517        """
1518
1519        self._recipient_id_metadata = recipient_id_metadata
1520
1521    @property
1522    def required(self):
1523        """Gets the required of this Draw.  # noqa: E501
1524
1525        When set to **true**, the signer is required to fill out this tab  # noqa: E501
1526
1527        :return: The required of this Draw.  # noqa: E501
1528        :rtype: str
1529        """
1530        return self._required
1531
1532    @required.setter
1533    def required(self, required):
1534        """Sets the required of this Draw.
1535
1536        When set to **true**, the signer is required to fill out this tab  # noqa: E501
1537
1538        :param required: The required of this Draw.  # noqa: E501
1539        :type: str
1540        """
1541
1542        self._required = required
1543
1544    @property
1545    def required_metadata(self):
1546        """Gets the required_metadata of this Draw.  # noqa: E501
1547
1548        Metadata that indicates whether the `required` property is editable.  # noqa: E501
1549
1550        :return: The required_metadata of this Draw.  # noqa: E501
1551        :rtype: PropertyMetadata
1552        """
1553        return self._required_metadata
1554
1555    @required_metadata.setter
1556    def required_metadata(self, required_metadata):
1557        """Sets the required_metadata of this Draw.
1558
1559        Metadata that indicates whether the `required` property is editable.  # noqa: E501
1560
1561        :param required_metadata: The required_metadata of this Draw.  # noqa: E501
1562        :type: PropertyMetadata
1563        """
1564
1565        self._required_metadata = required_metadata
1566
1567    @property
1568    def shared(self):
1569        """Gets the shared of this Draw.  # noqa: E501
1570
1571        When set to **true**, this custom tab is shared.  # noqa: E501
1572
1573        :return: The shared of this Draw.  # noqa: E501
1574        :rtype: str
1575        """
1576        return self._shared
1577
1578    @shared.setter
1579    def shared(self, shared):
1580        """Sets the shared of this Draw.
1581
1582        When set to **true**, this custom tab is shared.  # noqa: E501
1583
1584        :param shared: The shared of this Draw.  # noqa: E501
1585        :type: str
1586        """
1587
1588        self._shared = shared
1589
1590    @property
1591    def shared_metadata(self):
1592        """Gets the shared_metadata of this Draw.  # noqa: E501
1593
1594        Metadata that indicates whether the `shared` property is editable.  # noqa: E501
1595
1596        :return: The shared_metadata of this Draw.  # noqa: E501
1597        :rtype: PropertyMetadata
1598        """
1599        return self._shared_metadata
1600
1601    @shared_metadata.setter
1602    def shared_metadata(self, shared_metadata):
1603        """Sets the shared_metadata of this Draw.
1604
1605        Metadata that indicates whether the `shared` property is editable.  # noqa: E501
1606
1607        :param shared_metadata: The shared_metadata of this Draw.  # noqa: E501
1608        :type: PropertyMetadata
1609        """
1610
1611        self._shared_metadata = shared_metadata
1612
1613    @property
1614    def smart_contract_information(self):
1615        """Gets the smart_contract_information of this Draw.  # noqa: E501
1616
1617        Reserved for DocuSign.  # noqa: E501
1618
1619        :return: The smart_contract_information of this Draw.  # noqa: E501
1620        :rtype: SmartContractInformation
1621        """
1622        return self._smart_contract_information
1623
1624    @smart_contract_information.setter
1625    def smart_contract_information(self, smart_contract_information):
1626        """Sets the smart_contract_information of this Draw.
1627
1628        Reserved for DocuSign.  # noqa: E501
1629
1630        :param smart_contract_information: The smart_contract_information of this Draw.  # noqa: E501
1631        :type: SmartContractInformation
1632        """
1633
1634        self._smart_contract_information = smart_contract_information
1635
1636    @property
1637    def source(self):
1638        """Gets the source of this Draw.  # noqa: E501
1639
1640          # noqa: E501
1641
1642        :return: The source of this Draw.  # noqa: E501
1643        :rtype: str
1644        """
1645        return self._source
1646
1647    @source.setter
1648    def source(self, source):
1649        """Sets the source of this Draw.
1650
1651          # noqa: E501
1652
1653        :param source: The source of this Draw.  # noqa: E501
1654        :type: str
1655        """
1656
1657        self._source = source
1658
1659    @property
1660    def status(self):
1661        """Gets the status of this Draw.  # noqa: E501
1662
1663        Indicates the envelope status. Valid values are:  * sent - The envelope is sent to the recipients.  * created - The envelope is saved as a draft and can be modified and sent later.  # noqa: E501
1664
1665        :return: The status of this Draw.  # noqa: E501
1666        :rtype: str
1667        """
1668        return self._status
1669
1670    @status.setter
1671    def status(self, status):
1672        """Sets the status of this Draw.
1673
1674        Indicates the envelope status. Valid values are:  * sent - The envelope is sent to the recipients.  * created - The envelope is saved as a draft and can be modified and sent later.  # noqa: E501
1675
1676        :param status: The status of this Draw.  # noqa: E501
1677        :type: str
1678        """
1679
1680        self._status = status
1681
1682    @property
1683    def status_metadata(self):
1684        """Gets the status_metadata of this Draw.  # noqa: E501
1685
1686        Metadata that indicates whether the `status` property is editable.  # noqa: E501
1687
1688        :return: The status_metadata of this Draw.  # noqa: E501
1689        :rtype: PropertyMetadata
1690        """
1691        return self._status_metadata
1692
1693    @status_metadata.setter
1694    def status_metadata(self, status_metadata):
1695        """Sets the status_metadata of this Draw.
1696
1697        Metadata that indicates whether the `status` property is editable.  # noqa: E501
1698
1699        :param status_metadata: The status_metadata of this Draw.  # noqa: E501
1700        :type: PropertyMetadata
1701        """
1702
1703        self._status_metadata = status_metadata
1704
1705    @property
1706    def tab_group_labels(self):
1707        """Gets the tab_group_labels of this Draw.  # noqa: E501
1708
1709          # noqa: E501
1710
1711        :return: The tab_group_labels of this Draw.  # noqa: E501
1712        :rtype: list[str]
1713        """
1714        return self._tab_group_labels
1715
1716    @tab_group_labels.setter
1717    def tab_group_labels(self, tab_group_labels):
1718        """Sets the tab_group_labels of this Draw.
1719
1720          # noqa: E501
1721
1722        :param tab_group_labels: The tab_group_labels of this Draw.  # noqa: E501
1723        :type: list[str]
1724        """
1725
1726        self._tab_group_labels = tab_group_labels
1727
1728    @property
1729    def tab_group_labels_metadata(self):
1730        """Gets the tab_group_labels_metadata of this Draw.  # noqa: E501
1731
1732        Metadata that indicates whether the `tabGroupLabels` property is editable.  # noqa: E501
1733
1734        :return: The tab_group_labels_metadata of this Draw.  # noqa: E501
1735        :rtype: PropertyMetadata
1736        """
1737        return self._tab_group_labels_metadata
1738
1739    @tab_group_labels_metadata.setter
1740    def tab_group_labels_metadata(self, tab_group_labels_metadata):
1741        """Sets the tab_group_labels_metadata of this Draw.
1742
1743        Metadata that indicates whether the `tabGroupLabels` property is editable.  # noqa: E501
1744
1745        :param tab_group_labels_metadata: The tab_group_labels_metadata of this Draw.  # noqa: E501
1746        :type: PropertyMetadata
1747        """
1748
1749        self._tab_group_labels_metadata = tab_group_labels_metadata
1750
1751    @property
1752    def tab_id(self):
1753        """Gets the tab_id of this Draw.  # noqa: E501
1754
1755        The unique identifier for the tab. The tabid can be retrieved with the [ML:GET call].       # noqa: E501
1756
1757        :return: The tab_id of this Draw.  # noqa: E501
1758        :rtype: str
1759        """
1760        return self._tab_id
1761
1762    @tab_id.setter
1763    def tab_id(self, tab_id):
1764        """Sets the tab_id of this Draw.
1765
1766        The unique identifier for the tab. The tabid can be retrieved with the [ML:GET call].       # noqa: E501
1767
1768        :param tab_id: The tab_id of this Draw.  # noqa: E501
1769        :type: str
1770        """
1771
1772        self._tab_id = tab_id
1773
1774    @property
1775    def tab_id_metadata(self):
1776        """Gets the tab_id_metadata of this Draw.  # noqa: E501
1777
1778        Metadata that indicates whether the `tabId` property is editable.  # noqa: E501
1779
1780        :return: The tab_id_metadata of this Draw.  # noqa: E501
1781        :rtype: PropertyMetadata
1782        """
1783        return self._tab_id_metadata
1784
1785    @tab_id_metadata.setter
1786    def tab_id_metadata(self, tab_id_metadata):
1787        """Sets the tab_id_metadata of this Draw.
1788
1789        Metadata that indicates whether the `tabId` property is editable.  # noqa: E501
1790
1791        :param tab_id_metadata: The tab_id_metadata of this Draw.  # noqa: E501
1792        :type: PropertyMetadata
1793        """
1794
1795        self._tab_id_metadata = tab_id_metadata
1796
1797    @property
1798    def tab_label_metadata(self):
1799        """Gets the tab_label_metadata of this Draw.  # noqa: E501
1800
1801        Metadata that indicates whether the `tabLabel` property is editable.  # noqa: E501
1802
1803        :return: The tab_label_metadata of this Draw.  # noqa: E501
1804        :rtype: PropertyMetadata
1805        """
1806        return self._tab_label_metadata
1807
1808    @tab_label_metadata.setter
1809    def tab_label_metadata(self, tab_label_metadata):
1810        """Sets the tab_label_metadata of this Draw.
1811
1812        Metadata that indicates whether the `tabLabel` property is editable.  # noqa: E501
1813
1814        :param tab_label_metadata: The tab_label_metadata of this Draw.  # noqa: E501
1815        :type: PropertyMetadata
1816        """
1817
1818        self._tab_label_metadata = tab_label_metadata
1819
1820    @property
1821    def tab_order(self):
1822        """Gets the tab_order of this Draw.  # noqa: E501
1823
1824          # noqa: E501
1825
1826        :return: The tab_order of this Draw.  # noqa: E501
1827        :rtype: str
1828        """
1829        return self._tab_order
1830
1831    @tab_order.setter
1832    def tab_order(self, tab_order):
1833        """Sets the tab_order of this Draw.
1834
1835          # noqa: E501
1836
1837        :param tab_order: The tab_order of this Draw.  # noqa: E501
1838        :type: str
1839        """
1840
1841        self._tab_order = tab_order
1842
1843    @property
1844    def tab_order_metadata(self):
1845        """Gets the tab_order_metadata of this Draw.  # noqa: E501
1846
1847        Metadata that indicates whether the `tabOrder` property is editable.  # noqa: E501
1848
1849        :return: The tab_order_metadata of this Draw.  # noqa: E501
1850        :rtype: PropertyMetadata
1851        """
1852        return self._tab_order_metadata
1853
1854    @tab_order_metadata.setter
1855    def tab_order_metadata(self, tab_order_metadata):
1856        """Sets the tab_order_metadata of this Draw.
1857
1858        Metadata that indicates whether the `tabOrder` property is editable.  # noqa: E501
1859
1860        :param tab_order_metadata: The tab_order_metadata of this Draw.  # noqa: E501
1861        :type: PropertyMetadata
1862        """
1863
1864        self._tab_order_metadata = tab_order_metadata
1865
1866    @property
1867    def tab_type(self):
1868        """Gets the tab_type of this Draw.  # noqa: E501
1869
1870          # noqa: E501
1871
1872        :return: The tab_type of this Draw.  # noqa: E501
1873        :rtype: str
1874        """
1875        return self._tab_type
1876
1877    @tab_type.setter
1878    def tab_type(self, tab_type):
1879        """Sets the tab_type of this Draw.
1880
1881          # noqa: E501
1882
1883        :param tab_type: The tab_type of this Draw.  # noqa: E501
1884        :type: str
1885        """
1886
1887        self._tab_type = tab_type
1888
1889    @property
1890    def tab_type_metadata(self):
1891        """Gets the tab_type_metadata of this Draw.  # noqa: E501
1892
1893        Metadata that indicates whether the `tabType` property is editable.  # noqa: E501
1894
1895        :return: The tab_type_metadata of this Draw.  # noqa: E501
1896        :rtype: PropertyMetadata
1897        """
1898        return self._tab_type_metadata
1899
1900    @tab_type_metadata.setter
1901    def tab_type_metadata(self, tab_type_metadata):
1902        """Sets the tab_type_metadata of this Draw.
1903
1904        Metadata that indicates whether the `tabType` property is editable.  # noqa: E501
1905
1906        :param tab_type_metadata: The tab_type_metadata of this Draw.  # noqa: E501
1907        :type: PropertyMetadata
1908        """
1909
1910        self._tab_type_metadata = tab_type_metadata
1911
1912    @property
1913    def template_locked(self):
1914        """Gets the template_locked of this Draw.  # noqa: E501
1915
1916        When set to **true**, the sender cannot change any attributes of the recipient. Used only when working with template recipients.   # noqa: E501
1917
1918        :return: The template_locked of this Draw.  # noqa: E501
1919        :rtype: str
1920        """
1921        return self._template_locked
1922
1923    @template_locked.setter
1924    def template_locked(self, template_locked):
1925        """Sets the template_locked of this Draw.
1926
1927        When set to **true**, the sender cannot change any attributes of the recipient. Used only when working with template recipients.   # noqa: E501
1928
1929        :param template_locked: The template_locked of this Draw.  # noqa: E501
1930        :type: str
1931        """
1932
1933        self._template_locked = template_locked
1934
1935    @property
1936    def template_locked_metadata(self):
1937        """Gets the template_locked_metadata of this Draw.  # noqa: E501
1938
1939        Metadata that indicates whether the `templateLocked` property is editable.  # noqa: E501
1940
1941        :return: The template_locked_metadata of this Draw.  # noqa: E501
1942        :rtype: PropertyMetadata
1943        """
1944        return self._template_locked_metadata
1945
1946    @template_locked_metadata.setter
1947    def template_locked_metadata(self, template_locked_metadata):
1948        """Sets the template_locked_metadata of this Draw.
1949
1950        Metadata that indicates whether the `templateLocked` property is editable.  # noqa: E501
1951
1952        :param template_locked_metadata: The template_locked_metadata of this Draw.  # noqa: E501
1953        :type: PropertyMetadata
1954        """
1955
1956        self._template_locked_metadata = template_locked_metadata
1957
1958    @property
1959    def template_required(self):
1960        """Gets the template_required of this Draw.  # noqa: E501
1961
1962        When set to **true**, the sender may not remove the recipient. Used only when working with template recipients.  # noqa: E501
1963
1964        :return: The template_required of this Draw.  # noqa: E501
1965        :rtype: str
1966        """
1967        return self._template_required
1968
1969    @template_required.setter
1970    def template_required(self, template_required):
1971        """Sets the template_required of this Draw.
1972
1973        When set to **true**, the sender may not remove the recipient. Used only when working with template recipients.  # noqa: E501
1974
1975        :param template_required: The template_required of this Draw.  # noqa: E501
1976        :type: str
1977        """
1978
1979        self._template_required = template_required
1980
1981    @property
1982    def template_required_metadata(self):
1983        """Gets the template_required_metadata of this Draw.  # noqa: E501
1984
1985        Metadata that indicates whether the `templateRequired` property is editable.  # noqa: E501
1986
1987        :return: The template_required_metadata of this Draw.  # noqa: E501
1988        :rtype: PropertyMetadata
1989        """
1990        return self._template_required_metadata
1991
1992    @template_required_metadata.setter
1993    def template_required_metadata(self, template_required_metadata):
1994        """Sets the template_required_metadata of this Draw.
1995
1996        Metadata that indicates whether the `templateRequired` property is editable.  # noqa: E501
1997
1998        :param template_required_metadata: The template_required_metadata of this Draw.  # noqa: E501
1999        :type: PropertyMetadata
2000        """
2001
2002        self._template_required_metadata = template_required_metadata
2003
2004    @property
2005    def tooltip(self):
2006        """Gets the tooltip of this Draw.  # noqa: E501
2007
2008          # noqa: E501
2009
2010        :return: The tooltip of this Draw.  # noqa: E501
2011        :rtype: str
2012        """
2013        return self._tooltip
2014
2015    @tooltip.setter
2016    def tooltip(self, tooltip):
2017        """Sets the tooltip of this Draw.
2018
2019          # noqa: E501
2020
2021        :param tooltip: The tooltip of this Draw.  # noqa: E501
2022        :type: str
2023        """
2024
2025        self._tooltip = tooltip
2026
2027    @property
2028    def tool_tip_metadata(self):
2029        """Gets the tool_tip_metadata of this Draw.  # noqa: E501
2030
2031        Metadata that indicates whether the `toolTip` property is editable.  # noqa: E501
2032
2033        :return: The tool_tip_metadata of this Draw.  # noqa: E501
2034        :rtype: PropertyMetadata
2035        """
2036        return self._tool_tip_metadata
2037
2038    @tool_tip_metadata.setter
2039    def tool_tip_metadata(self, tool_tip_metadata):
2040        """Sets the tool_tip_metadata of this Draw.
2041
2042        Metadata that indicates whether the `toolTip` property is editable.  # noqa: E501
2043
2044        :param tool_tip_metadata: The tool_tip_metadata of this Draw.  # noqa: E501
2045        :type: PropertyMetadata
2046        """
2047
2048        self._tool_tip_metadata = tool_tip_metadata
2049
2050    @property
2051    def use_background_as_canvas(self):
2052        """Gets the use_background_as_canvas of this Draw.  # noqa: E501
2053
2054          # noqa: E501
2055
2056        :return: The use_background_as_canvas of this Draw.  # noqa: E501
2057        :rtype: str
2058        """
2059        return self._use_background_as_canvas
2060
2061    @use_background_as_canvas.setter
2062    def use_background_as_canvas(self, use_background_as_canvas):
2063        """Sets the use_background_as_canvas of this Draw.
2064
2065          # noqa: E501
2066
2067        :param use_background_as_canvas: The use_background_as_canvas of this Draw.  # noqa: E501
2068        :type: str
2069        """
2070
2071        self._use_background_as_canvas = use_background_as_canvas
2072
2073    @property
2074    def width(self):
2075        """Gets the width of this Draw.  # noqa: E501
2076
2077        Width of the tab in pixels.  # noqa: E501
2078
2079        :return: The width of this Draw.  # noqa: E501
2080        :rtype: str
2081        """
2082        return self._width
2083
2084    @width.setter
2085    def width(self, width):
2086        """Sets the width of this Draw.
2087
2088        Width of the tab in pixels.  # noqa: E501
2089
2090        :param width: The width of this Draw.  # noqa: E501
2091        :type: str
2092        """
2093
2094        self._width = width
2095
2096    @property
2097    def width_metadata(self):
2098        """Gets the width_metadata of this Draw.  # noqa: E501
2099
2100        Metadata that indicates whether the `width` property is editable.  # noqa: E501
2101
2102        :return: The width_metadata of this Draw.  # noqa: E501
2103        :rtype: PropertyMetadata
2104        """
2105        return self._width_metadata
2106
2107    @width_metadata.setter
2108    def width_metadata(self, width_metadata):
2109        """Sets the width_metadata of this Draw.
2110
2111        Metadata that indicates whether the `width` property is editable.  # noqa: E501
2112
2113        :param width_metadata: The width_metadata of this Draw.  # noqa: E501
2114        :type: PropertyMetadata
2115        """
2116
2117        self._width_metadata = width_metadata
2118
2119    @property
2120    def x_position(self):
2121        """Gets the x_position of this Draw.  # noqa: E501
2122
2123        This indicates the horizontal offset of the object on the page. DocuSign uses 72 DPI when determining position.  # noqa: E501
2124
2125        :return: The x_position of this Draw.  # noqa: E501
2126        :rtype: str
2127        """
2128        return self._x_position
2129
2130    @x_position.setter
2131    def x_position(self, x_position):
2132        """Sets the x_position of this Draw.
2133
2134        This indicates the horizontal offset of the object on the page. DocuSign uses 72 DPI when determining position.  # noqa: E501
2135
2136        :param x_position: The x_position of this Draw.  # noqa: E501
2137        :type: str
2138        """
2139
2140        self._x_position = x_position
2141
2142    @property
2143    def x_position_metadata(self):
2144        """Gets the x_position_metadata of this Draw.  # noqa: E501
2145
2146        Metadata that indicates whether the `xPosition` property is editable.  # noqa: E501
2147
2148        :return: The x_position_metadata of this Draw.  # noqa: E501
2149        :rtype: PropertyMetadata
2150        """
2151        return self._x_position_metadata
2152
2153    @x_position_metadata.setter
2154    def x_position_metadata(self, x_position_metadata):
2155        """Sets the x_position_metadata of this Draw.
2156
2157        Metadata that indicates whether the `xPosition` property is editable.  # noqa: E501
2158
2159        :param x_position_metadata: The x_position_metadata of this Draw.  # noqa: E501
2160        :type: PropertyMetadata
2161        """
2162
2163        self._x_position_metadata = x_position_metadata
2164
2165    @property
2166    def y_position(self):
2167        """Gets the y_position of this Draw.  # noqa: E501
2168
2169        This indicates the vertical offset of the object on the page. DocuSign uses 72 DPI when determining position.  # noqa: E501
2170
2171        :return: The y_position of this Draw.  # noqa: E501
2172        :rtype: str
2173        """
2174        return self._y_position
2175
2176    @y_position.setter
2177    def y_position(self, y_position):
2178        """Sets the y_position of this Draw.
2179
2180        This indicates the vertical offset of the object on the page. DocuSign uses 72 DPI when determining position.  # noqa: E501
2181
2182        :param y_position: The y_position of this Draw.  # noqa: E501
2183        :type: str
2184        """
2185
2186        self._y_position = y_position
2187
2188    @property
2189    def y_position_metadata(self):
2190        """Gets the y_position_metadata of this Draw.  # noqa: E501
2191
2192        Metadata that indicates whether the `yPosition` property is editable.  # noqa: E501
2193
2194        :return: The y_position_metadata of this Draw.  # noqa: E501
2195        :rtype: PropertyMetadata
2196        """
2197        return self._y_position_metadata
2198
2199    @y_position_metadata.setter
2200    def y_position_metadata(self, y_position_metadata):
2201        """Sets the y_position_metadata of this Draw.
2202
2203        Metadata that indicates whether the `yPosition` property is editable.  # noqa: E501
2204
2205        :param y_position_metadata: The y_position_metadata of this Draw.  # noqa: E501
2206        :type: PropertyMetadata
2207        """
2208
2209        self._y_position_metadata = y_position_metadata
2210
2211    def to_dict(self):
2212        """Returns the model properties as a dict"""
2213        result = {}
2214
2215        for attr, _ in six.iteritems(self.swagger_types):
2216            value = getattr(self, attr)
2217            if isinstance(value, list):
2218                result[attr] = list(map(
2219                    lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
2220                    value
2221                ))
2222            elif hasattr(value, "to_dict"):
2223                result[attr] = value.to_dict()
2224            elif isinstance(value, dict):
2225                result[attr] = dict(map(
2226                    lambda item: (item[0], item[1].to_dict())
2227                    if hasattr(item[1], "to_dict") else item,
2228                    value.items()
2229                ))
2230            else:
2231                result[attr] = value
2232        if issubclass(Draw, dict):
2233            for key, value in self.items():
2234                result[key] = value
2235
2236        return result
2237
2238    def to_str(self):
2239        """Returns the string representation of the model"""
2240        return pprint.pformat(self.to_dict())
2241
2242    def __repr__(self):
2243        """For `print` and `pprint`"""
2244        return self.to_str()
2245
2246    def __eq__(self, other):
2247        """Returns true if both objects are equal"""
2248        if not isinstance(other, Draw):
2249            return False
2250
2251        return self.to_dict() == other.to_dict()
2252
2253    def __ne__(self, other):
2254        """Returns true if both objects are not equal"""
2255        if not isinstance(other, Draw):
2256            return True
2257
2258        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.

Draw(_configuration=None, **kwargs)
202    def __init__(self, _configuration=None, **kwargs):  # noqa: E501
203        """Draw - a model defined in Swagger"""  # noqa: E501
204        if _configuration is None:
205            _configuration = Configuration()
206        self._configuration = _configuration
207
208        self._allow_signer_upload = None
209        self._anchor_allow_white_space_in_characters = None
210        self._anchor_allow_white_space_in_characters_metadata = None
211        self._anchor_case_sensitive = None
212        self._anchor_case_sensitive_metadata = None
213        self._anchor_horizontal_alignment = None
214        self._anchor_horizontal_alignment_metadata = None
215        self._anchor_ignore_if_not_present = None
216        self._anchor_ignore_if_not_present_metadata = None
217        self._anchor_match_whole_word = None
218        self._anchor_match_whole_word_metadata = None
219        self._anchor_string = None
220        self._anchor_string_metadata = None
221        self._anchor_tab_processor_version = None
222        self._anchor_tab_processor_version_metadata = None
223        self._anchor_units = None
224        self._anchor_units_metadata = None
225        self._anchor_x_offset = None
226        self._anchor_x_offset_metadata = None
227        self._anchor_y_offset = None
228        self._anchor_y_offset_metadata = None
229        self._caption = None
230        self._caption_metadata = None
231        self._conditional_parent_label = None
232        self._conditional_parent_label_metadata = None
233        self._conditional_parent_value = None
234        self._conditional_parent_value_metadata = None
235        self._custom_tab_id = None
236        self._custom_tab_id_metadata = None
237        self._document_id = None
238        self._document_id_metadata = None
239        self._error_details = None
240        self._form_order = None
241        self._form_order_metadata = None
242        self._form_page_label = None
243        self._form_page_label_metadata = None
244        self._form_page_number = None
245        self._form_page_number_metadata = None
246        self._height = None
247        self._height_metadata = None
248        self._locked = None
249        self._locked_metadata = None
250        self._merge_field = None
251        self._merge_field_xml = None
252        self._page_number = None
253        self._page_number_metadata = None
254        self._recipient_id = None
255        self._recipient_id_guid = None
256        self._recipient_id_guid_metadata = None
257        self._recipient_id_metadata = None
258        self._required = None
259        self._required_metadata = None
260        self._shared = None
261        self._shared_metadata = None
262        self._smart_contract_information = None
263        self._source = None
264        self._status = None
265        self._status_metadata = None
266        self._tab_group_labels = None
267        self._tab_group_labels_metadata = None
268        self._tab_id = None
269        self._tab_id_metadata = None
270        self._tab_label_metadata = None
271        self._tab_order = None
272        self._tab_order_metadata = None
273        self._tab_type = None
274        self._tab_type_metadata = None
275        self._template_locked = None
276        self._template_locked_metadata = None
277        self._template_required = None
278        self._template_required_metadata = None
279        self._tooltip = None
280        self._tool_tip_metadata = None
281        self._use_background_as_canvas = None
282        self._width = None
283        self._width_metadata = None
284        self._x_position = None
285        self._x_position_metadata = None
286        self._y_position = None
287        self._y_position_metadata = None
288        self.discriminator = None
289
290        setattr(self, "_{}".format('allow_signer_upload'), kwargs.get('allow_signer_upload', None))
291        setattr(self, "_{}".format('anchor_allow_white_space_in_characters'), kwargs.get('anchor_allow_white_space_in_characters', None))
292        setattr(self, "_{}".format('anchor_allow_white_space_in_characters_metadata'), kwargs.get('anchor_allow_white_space_in_characters_metadata', None))
293        setattr(self, "_{}".format('anchor_case_sensitive'), kwargs.get('anchor_case_sensitive', None))
294        setattr(self, "_{}".format('anchor_case_sensitive_metadata'), kwargs.get('anchor_case_sensitive_metadata', None))
295        setattr(self, "_{}".format('anchor_horizontal_alignment'), kwargs.get('anchor_horizontal_alignment', None))
296        setattr(self, "_{}".format('anchor_horizontal_alignment_metadata'), kwargs.get('anchor_horizontal_alignment_metadata', None))
297        setattr(self, "_{}".format('anchor_ignore_if_not_present'), kwargs.get('anchor_ignore_if_not_present', None))
298        setattr(self, "_{}".format('anchor_ignore_if_not_present_metadata'), kwargs.get('anchor_ignore_if_not_present_metadata', None))
299        setattr(self, "_{}".format('anchor_match_whole_word'), kwargs.get('anchor_match_whole_word', None))
300        setattr(self, "_{}".format('anchor_match_whole_word_metadata'), kwargs.get('anchor_match_whole_word_metadata', None))
301        setattr(self, "_{}".format('anchor_string'), kwargs.get('anchor_string', None))
302        setattr(self, "_{}".format('anchor_string_metadata'), kwargs.get('anchor_string_metadata', None))
303        setattr(self, "_{}".format('anchor_tab_processor_version'), kwargs.get('anchor_tab_processor_version', None))
304        setattr(self, "_{}".format('anchor_tab_processor_version_metadata'), kwargs.get('anchor_tab_processor_version_metadata', None))
305        setattr(self, "_{}".format('anchor_units'), kwargs.get('anchor_units', None))
306        setattr(self, "_{}".format('anchor_units_metadata'), kwargs.get('anchor_units_metadata', None))
307        setattr(self, "_{}".format('anchor_x_offset'), kwargs.get('anchor_x_offset', None))
308        setattr(self, "_{}".format('anchor_x_offset_metadata'), kwargs.get('anchor_x_offset_metadata', None))
309        setattr(self, "_{}".format('anchor_y_offset'), kwargs.get('anchor_y_offset', None))
310        setattr(self, "_{}".format('anchor_y_offset_metadata'), kwargs.get('anchor_y_offset_metadata', None))
311        setattr(self, "_{}".format('caption'), kwargs.get('caption', None))
312        setattr(self, "_{}".format('caption_metadata'), kwargs.get('caption_metadata', None))
313        setattr(self, "_{}".format('conditional_parent_label'), kwargs.get('conditional_parent_label', None))
314        setattr(self, "_{}".format('conditional_parent_label_metadata'), kwargs.get('conditional_parent_label_metadata', None))
315        setattr(self, "_{}".format('conditional_parent_value'), kwargs.get('conditional_parent_value', None))
316        setattr(self, "_{}".format('conditional_parent_value_metadata'), kwargs.get('conditional_parent_value_metadata', None))
317        setattr(self, "_{}".format('custom_tab_id'), kwargs.get('custom_tab_id', None))
318        setattr(self, "_{}".format('custom_tab_id_metadata'), kwargs.get('custom_tab_id_metadata', None))
319        setattr(self, "_{}".format('document_id'), kwargs.get('document_id', None))
320        setattr(self, "_{}".format('document_id_metadata'), kwargs.get('document_id_metadata', None))
321        setattr(self, "_{}".format('error_details'), kwargs.get('error_details', None))
322        setattr(self, "_{}".format('form_order'), kwargs.get('form_order', None))
323        setattr(self, "_{}".format('form_order_metadata'), kwargs.get('form_order_metadata', None))
324        setattr(self, "_{}".format('form_page_label'), kwargs.get('form_page_label', None))
325        setattr(self, "_{}".format('form_page_label_metadata'), kwargs.get('form_page_label_metadata', None))
326        setattr(self, "_{}".format('form_page_number'), kwargs.get('form_page_number', None))
327        setattr(self, "_{}".format('form_page_number_metadata'), kwargs.get('form_page_number_metadata', None))
328        setattr(self, "_{}".format('height'), kwargs.get('height', None))
329        setattr(self, "_{}".format('height_metadata'), kwargs.get('height_metadata', None))
330        setattr(self, "_{}".format('locked'), kwargs.get('locked', None))
331        setattr(self, "_{}".format('locked_metadata'), kwargs.get('locked_metadata', None))
332        setattr(self, "_{}".format('merge_field'), kwargs.get('merge_field', None))
333        setattr(self, "_{}".format('merge_field_xml'), kwargs.get('merge_field_xml', None))
334        setattr(self, "_{}".format('page_number'), kwargs.get('page_number', None))
335        setattr(self, "_{}".format('page_number_metadata'), kwargs.get('page_number_metadata', None))
336        setattr(self, "_{}".format('recipient_id'), kwargs.get('recipient_id', None))
337        setattr(self, "_{}".format('recipient_id_guid'), kwargs.get('recipient_id_guid', None))
338        setattr(self, "_{}".format('recipient_id_guid_metadata'), kwargs.get('recipient_id_guid_metadata', None))
339        setattr(self, "_{}".format('recipient_id_metadata'), kwargs.get('recipient_id_metadata', None))
340        setattr(self, "_{}".format('required'), kwargs.get('required', None))
341        setattr(self, "_{}".format('required_metadata'), kwargs.get('required_metadata', None))
342        setattr(self, "_{}".format('shared'), kwargs.get('shared', None))
343        setattr(self, "_{}".format('shared_metadata'), kwargs.get('shared_metadata', None))
344        setattr(self, "_{}".format('smart_contract_information'), kwargs.get('smart_contract_information', None))
345        setattr(self, "_{}".format('source'), kwargs.get('source', None))
346        setattr(self, "_{}".format('status'), kwargs.get('status', None))
347        setattr(self, "_{}".format('status_metadata'), kwargs.get('status_metadata', None))
348        setattr(self, "_{}".format('tab_group_labels'), kwargs.get('tab_group_labels', None))
349        setattr(self, "_{}".format('tab_group_labels_metadata'), kwargs.get('tab_group_labels_metadata', None))
350        setattr(self, "_{}".format('tab_id'), kwargs.get('tab_id', None))
351        setattr(self, "_{}".format('tab_id_metadata'), kwargs.get('tab_id_metadata', None))
352        setattr(self, "_{}".format('tab_label_metadata'), kwargs.get('tab_label_metadata', None))
353        setattr(self, "_{}".format('tab_order'), kwargs.get('tab_order', None))
354        setattr(self, "_{}".format('tab_order_metadata'), kwargs.get('tab_order_metadata', None))
355        setattr(self, "_{}".format('tab_type'), kwargs.get('tab_type', None))
356        setattr(self, "_{}".format('tab_type_metadata'), kwargs.get('tab_type_metadata', None))
357        setattr(self, "_{}".format('template_locked'), kwargs.get('template_locked', None))
358        setattr(self, "_{}".format('template_locked_metadata'), kwargs.get('template_locked_metadata', None))
359        setattr(self, "_{}".format('template_required'), kwargs.get('template_required', None))
360        setattr(self, "_{}".format('template_required_metadata'), kwargs.get('template_required_metadata', None))
361        setattr(self, "_{}".format('tooltip'), kwargs.get('tooltip', None))
362        setattr(self, "_{}".format('tool_tip_metadata'), kwargs.get('tool_tip_metadata', None))
363        setattr(self, "_{}".format('use_background_as_canvas'), kwargs.get('use_background_as_canvas', None))
364        setattr(self, "_{}".format('width'), kwargs.get('width', None))
365        setattr(self, "_{}".format('width_metadata'), kwargs.get('width_metadata', None))
366        setattr(self, "_{}".format('x_position'), kwargs.get('x_position', None))
367        setattr(self, "_{}".format('x_position_metadata'), kwargs.get('x_position_metadata', None))
368        setattr(self, "_{}".format('y_position'), kwargs.get('y_position', None))
369        setattr(self, "_{}".format('y_position_metadata'), kwargs.get('y_position_metadata', None))

Draw - a model defined in Swagger

swagger_types = {'allow_signer_upload': 'str', 'anchor_allow_white_space_in_characters': 'str', 'anchor_allow_white_space_in_characters_metadata': 'PropertyMetadata', 'anchor_case_sensitive': 'str', 'anchor_case_sensitive_metadata': 'PropertyMetadata', 'anchor_horizontal_alignment': 'str', 'anchor_horizontal_alignment_metadata': 'PropertyMetadata', 'anchor_ignore_if_not_present': 'str', 'anchor_ignore_if_not_present_metadata': 'PropertyMetadata', 'anchor_match_whole_word': 'str', 'anchor_match_whole_word_metadata': 'PropertyMetadata', 'anchor_string': 'str', 'anchor_string_metadata': 'PropertyMetadata', 'anchor_tab_processor_version': 'str', 'anchor_tab_processor_version_metadata': 'PropertyMetadata', 'anchor_units': 'str', 'anchor_units_metadata': 'PropertyMetadata', 'anchor_x_offset': 'str', 'anchor_x_offset_metadata': 'PropertyMetadata', 'anchor_y_offset': 'str', 'anchor_y_offset_metadata': 'PropertyMetadata', 'caption': 'str', 'caption_metadata': 'PropertyMetadata', 'conditional_parent_label': 'str', 'conditional_parent_label_metadata': 'PropertyMetadata', 'conditional_parent_value': 'str', 'conditional_parent_value_metadata': 'PropertyMetadata', 'custom_tab_id': 'str', 'custom_tab_id_metadata': 'PropertyMetadata', 'document_id': 'str', 'document_id_metadata': 'PropertyMetadata', 'error_details': 'ErrorDetails', 'form_order': 'str', 'form_order_metadata': 'PropertyMetadata', 'form_page_label': 'str', 'form_page_label_metadata': 'PropertyMetadata', 'form_page_number': 'str', 'form_page_number_metadata': 'PropertyMetadata', 'height': 'str', 'height_metadata': 'PropertyMetadata', 'locked': 'str', 'locked_metadata': 'PropertyMetadata', 'merge_field': 'MergeField', 'merge_field_xml': 'str', 'page_number': 'str', 'page_number_metadata': 'PropertyMetadata', 'recipient_id': 'str', 'recipient_id_guid': 'str', 'recipient_id_guid_metadata': 'PropertyMetadata', 'recipient_id_metadata': 'PropertyMetadata', 'required': 'str', 'required_metadata': 'PropertyMetadata', 'shared': 'str', 'shared_metadata': 'PropertyMetadata', 'smart_contract_information': 'SmartContractInformation', 'source': 'str', 'status': 'str', 'status_metadata': 'PropertyMetadata', 'tab_group_labels': 'list[str]', 'tab_group_labels_metadata': 'PropertyMetadata', 'tab_id': 'str', 'tab_id_metadata': 'PropertyMetadata', 'tab_label_metadata': 'PropertyMetadata', 'tab_order': 'str', 'tab_order_metadata': 'PropertyMetadata', 'tab_type': 'str', 'tab_type_metadata': 'PropertyMetadata', 'template_locked': 'str', 'template_locked_metadata': 'PropertyMetadata', 'template_required': 'str', 'template_required_metadata': 'PropertyMetadata', 'tooltip': 'str', 'tool_tip_metadata': 'PropertyMetadata', 'use_background_as_canvas': 'str', 'width': 'str', 'width_metadata': 'PropertyMetadata', 'x_position': 'str', 'x_position_metadata': 'PropertyMetadata', 'y_position': 'str', 'y_position_metadata': 'PropertyMetadata'}
attribute_map = {'allow_signer_upload': 'allowSignerUpload', 'anchor_allow_white_space_in_characters': 'anchorAllowWhiteSpaceInCharacters', 'anchor_allow_white_space_in_characters_metadata': 'anchorAllowWhiteSpaceInCharactersMetadata', 'anchor_case_sensitive': 'anchorCaseSensitive', 'anchor_case_sensitive_metadata': 'anchorCaseSensitiveMetadata', 'anchor_horizontal_alignment': 'anchorHorizontalAlignment', 'anchor_horizontal_alignment_metadata': 'anchorHorizontalAlignmentMetadata', 'anchor_ignore_if_not_present': 'anchorIgnoreIfNotPresent', 'anchor_ignore_if_not_present_metadata': 'anchorIgnoreIfNotPresentMetadata', 'anchor_match_whole_word': 'anchorMatchWholeWord', 'anchor_match_whole_word_metadata': 'anchorMatchWholeWordMetadata', 'anchor_string': 'anchorString', 'anchor_string_metadata': 'anchorStringMetadata', 'anchor_tab_processor_version': 'anchorTabProcessorVersion', 'anchor_tab_processor_version_metadata': 'anchorTabProcessorVersionMetadata', 'anchor_units': 'anchorUnits', 'anchor_units_metadata': 'anchorUnitsMetadata', 'anchor_x_offset': 'anchorXOffset', 'anchor_x_offset_metadata': 'anchorXOffsetMetadata', 'anchor_y_offset': 'anchorYOffset', 'anchor_y_offset_metadata': 'anchorYOffsetMetadata', 'caption': 'caption', 'caption_metadata': 'captionMetadata', 'conditional_parent_label': 'conditionalParentLabel', 'conditional_parent_label_metadata': 'conditionalParentLabelMetadata', 'conditional_parent_value': 'conditionalParentValue', 'conditional_parent_value_metadata': 'conditionalParentValueMetadata', 'custom_tab_id': 'customTabId', 'custom_tab_id_metadata': 'customTabIdMetadata', 'document_id': 'documentId', 'document_id_metadata': 'documentIdMetadata', 'error_details': 'errorDetails', 'form_order': 'formOrder', 'form_order_metadata': 'formOrderMetadata', 'form_page_label': 'formPageLabel', 'form_page_label_metadata': 'formPageLabelMetadata', 'form_page_number': 'formPageNumber', 'form_page_number_metadata': 'formPageNumberMetadata', 'height': 'height', 'height_metadata': 'heightMetadata', 'locked': 'locked', 'locked_metadata': 'lockedMetadata', 'merge_field': 'mergeField', 'merge_field_xml': 'mergeFieldXml', 'page_number': 'pageNumber', 'page_number_metadata': 'pageNumberMetadata', 'recipient_id': 'recipientId', 'recipient_id_guid': 'recipientIdGuid', 'recipient_id_guid_metadata': 'recipientIdGuidMetadata', 'recipient_id_metadata': 'recipientIdMetadata', 'required': 'required', 'required_metadata': 'requiredMetadata', 'shared': 'shared', 'shared_metadata': 'sharedMetadata', 'smart_contract_information': 'smartContractInformation', 'source': 'source', 'status': 'status', 'status_metadata': 'statusMetadata', 'tab_group_labels': 'tabGroupLabels', 'tab_group_labels_metadata': 'tabGroupLabelsMetadata', 'tab_id': 'tabId', 'tab_id_metadata': 'tabIdMetadata', 'tab_label_metadata': 'tabLabelMetadata', 'tab_order': 'tabOrder', 'tab_order_metadata': 'tabOrderMetadata', 'tab_type': 'tabType', 'tab_type_metadata': 'tabTypeMetadata', 'template_locked': 'templateLocked', 'template_locked_metadata': 'templateLockedMetadata', 'template_required': 'templateRequired', 'template_required_metadata': 'templateRequiredMetadata', 'tooltip': 'tooltip', 'tool_tip_metadata': 'toolTipMetadata', 'use_background_as_canvas': 'useBackgroundAsCanvas', 'width': 'width', 'width_metadata': 'widthMetadata', 'x_position': 'xPosition', 'x_position_metadata': 'xPositionMetadata', 'y_position': 'yPosition', 'y_position_metadata': 'yPositionMetadata'}
allow_signer_upload

Gets the allow_signer_upload of this Draw. # noqa: E501

# noqa: E501

Returns

The allow_signer_upload of this Draw. # noqa: E501

anchor_allow_white_space_in_characters

Gets the anchor_allow_white_space_in_characters of this Draw. # noqa: E501

# noqa: E501

Returns

The anchor_allow_white_space_in_characters of this Draw. # noqa: E501

anchor_allow_white_space_in_characters_metadata

Gets the anchor_allow_white_space_in_characters_metadata of this Draw. # noqa: E501

Metadata that indicates whether the anchorAllowWhiteSpaceInCharacters property is editable. # noqa: E501

Returns

The anchor_allow_white_space_in_characters_metadata of this Draw. # noqa: E501

anchor_case_sensitive

Gets the anchor_case_sensitive of this Draw. # noqa: E501

When set to true, the anchor string does not consider case when matching strings in the document. The default value is true. # noqa: E501

Returns

The anchor_case_sensitive of this Draw. # noqa: E501

anchor_case_sensitive_metadata

Gets the anchor_case_sensitive_metadata of this Draw. # noqa: E501

Metadata that indicates whether the anchorCaseSensitive property is editable. # noqa: E501

Returns

The anchor_case_sensitive_metadata of this Draw. # noqa: E501

anchor_horizontal_alignment

Gets the anchor_horizontal_alignment of this Draw. # noqa: E501

Specifies the alignment of anchor tabs with anchor strings. Possible values are left or right. The default value is left. # noqa: E501

Returns

The anchor_horizontal_alignment of this Draw. # noqa: E501

anchor_horizontal_alignment_metadata

Gets the anchor_horizontal_alignment_metadata of this Draw. # noqa: E501

Metadata that indicates whether the anchorHorizontalAlignment property is editable. # noqa: E501

Returns

The anchor_horizontal_alignment_metadata of this Draw. # noqa: E501

anchor_ignore_if_not_present

Gets the anchor_ignore_if_not_present of this Draw. # noqa: E501

When set to true, this tab is ignored if anchorString is not found in the document. # noqa: E501

Returns

The anchor_ignore_if_not_present of this Draw. # noqa: E501

anchor_ignore_if_not_present_metadata

Gets the anchor_ignore_if_not_present_metadata of this Draw. # noqa: E501

Metadata that indicates whether the anchorIgnoreIfNotPresent property is editable. # noqa: E501

Returns

The anchor_ignore_if_not_present_metadata of this Draw. # noqa: E501

anchor_match_whole_word

Gets the anchor_match_whole_word of this Draw. # noqa: E501

When set to true, the anchor string in this tab matches whole words only (strings embedded in other strings are ignored.) The default value is true. # noqa: E501

Returns

The anchor_match_whole_word of this Draw. # noqa: E501

anchor_match_whole_word_metadata

Gets the anchor_match_whole_word_metadata of this Draw. # noqa: E501

Metadata that indicates whether the anchorMatchWholeWord property is editable. # noqa: E501

Returns

The anchor_match_whole_word_metadata of this Draw. # noqa: E501

anchor_string

Gets the anchor_string of this Draw. # noqa: E501

Anchor text information for a radio button. # noqa: E501

Returns

The anchor_string of this Draw. # noqa: E501

anchor_string_metadata

Gets the anchor_string_metadata of this Draw. # noqa: E501

Metadata that indicates whether the anchorString property is editable. # noqa: E501

Returns

The anchor_string_metadata of this Draw. # noqa: E501

anchor_tab_processor_version

Gets the anchor_tab_processor_version of this Draw. # noqa: E501

# noqa: E501

Returns

The anchor_tab_processor_version of this Draw. # noqa: E501

anchor_tab_processor_version_metadata

Gets the anchor_tab_processor_version_metadata of this Draw. # noqa: E501

Reserved for DocuSign. # noqa: E501

Returns

The anchor_tab_processor_version_metadata of this Draw. # noqa: E501

anchor_units

Gets the anchor_units of this Draw. # noqa: E501

Specifies units of the X and Y offset. Units could be pixels, millimeters, centimeters, or inches. # noqa: E501

Returns

The anchor_units of this Draw. # noqa: E501

anchor_units_metadata

Gets the anchor_units_metadata of this Draw. # noqa: E501

Metadata that indicates whether the anchorUnits property is editable. # noqa: E501

Returns

The anchor_units_metadata of this Draw. # noqa: E501

anchor_x_offset

Gets the anchor_x_offset of this Draw. # noqa: E501

Specifies the X axis location of the tab, in anchorUnits, relative to the anchorString. # noqa: E501

Returns

The anchor_x_offset of this Draw. # noqa: E501

anchor_x_offset_metadata

Gets the anchor_x_offset_metadata of this Draw. # noqa: E501

Metadata that indicates whether the anchorXOffset property is editable. # noqa: E501

Returns

The anchor_x_offset_metadata of this Draw. # noqa: E501

anchor_y_offset

Gets the anchor_y_offset of this Draw. # noqa: E501

Specifies the Y axis location of the tab, in anchorUnits, relative to the anchorString. # noqa: E501

Returns

The anchor_y_offset of this Draw. # noqa: E501

anchor_y_offset_metadata

Gets the anchor_y_offset_metadata of this Draw. # noqa: E501

Metadata that indicates whether the anchorYOffset property is editable. # noqa: E501

Returns

The anchor_y_offset_metadata of this Draw. # noqa: E501

caption

Gets the caption of this Draw. # noqa: E501

# noqa: E501

Returns

The caption of this Draw. # noqa: E501

caption_metadata

Gets the caption_metadata of this Draw. # noqa: E501

# noqa: E501

Returns

The caption_metadata of this Draw. # noqa: E501

conditional_parent_label

Gets the conditional_parent_label of this Draw. # noqa: E501

For conditional fields this is the TabLabel of the parent tab that controls this tab's visibility. # noqa: E501

Returns

The conditional_parent_label of this Draw. # noqa: E501

conditional_parent_label_metadata

Gets the conditional_parent_label_metadata of this Draw. # noqa: E501

Metadata that indicates whether the conditionalParentLabel property is editable. # noqa: E501

Returns

The conditional_parent_label_metadata of this Draw. # noqa: E501

conditional_parent_value

Gets the conditional_parent_value of this Draw. # noqa: E501

For conditional fields, this is the value of the parent tab that controls the tab's visibility. If the parent tab is a Checkbox, Radio button, Optional Signature, or Optional Initial use "on" as the value to show that the parent tab is active. # noqa: E501

Returns

The conditional_parent_value of this Draw. # noqa: E501

conditional_parent_value_metadata

Gets the conditional_parent_value_metadata of this Draw. # noqa: E501

Metadata that indicates whether the conditionalParentValue property is editable. # noqa: E501

Returns

The conditional_parent_value_metadata of this Draw. # noqa: E501

custom_tab_id

Gets the custom_tab_id of this Draw. # noqa: E501

The DocuSign generated custom tab ID for the custom tab to be applied. This can only be used when adding new tabs for a recipient. When used, the new tab inherits all the custom tab properties. # noqa: E501

Returns

The custom_tab_id of this Draw. # noqa: E501

custom_tab_id_metadata

Gets the custom_tab_id_metadata of this Draw. # noqa: E501

Metadata that indicates whether the customTabId property is editable. # noqa: E501

Returns

The custom_tab_id_metadata of this Draw. # noqa: E501

document_id

Gets the document_id of this Draw. # noqa: E501

Specifies the document ID number that the tab is placed on. This must refer to an existing Document's ID attribute. # noqa: E501

Returns

The document_id of this Draw. # noqa: E501

document_id_metadata

Gets the document_id_metadata of this Draw. # noqa: E501

Metadata that indicates whether the documentId property is editable. # noqa: E501

Returns

The document_id_metadata of this Draw. # noqa: E501

error_details

Gets the error_details of this Draw. # noqa: E501

Array or errors. # noqa: E501

Returns

The error_details of this Draw. # noqa: E501

form_order

Gets the form_order of this Draw. # noqa: E501

# noqa: E501

Returns

The form_order of this Draw. # noqa: E501

form_order_metadata

Gets the form_order_metadata of this Draw. # noqa: E501

Metadata that indicates whether the formOrder property is editable. # noqa: E501

Returns

The form_order_metadata of this Draw. # noqa: E501

form_page_label

Gets the form_page_label of this Draw. # noqa: E501

# noqa: E501

Returns

The form_page_label of this Draw. # noqa: E501

form_page_label_metadata

Gets the form_page_label_metadata of this Draw. # noqa: E501

Metadata that indicates whether the formPageLabel property is editable. # noqa: E501

Returns

The form_page_label_metadata of this Draw. # noqa: E501

form_page_number

Gets the form_page_number of this Draw. # noqa: E501

# noqa: E501

Returns

The form_page_number of this Draw. # noqa: E501

form_page_number_metadata

Gets the form_page_number_metadata of this Draw. # noqa: E501

Metadata that indicates whether the fromPageNumber property is editable. # noqa: E501

Returns

The form_page_number_metadata of this Draw. # noqa: E501

height

Gets the height of this Draw. # noqa: E501

Height of the tab in pixels. # noqa: E501

Returns

The height of this Draw. # noqa: E501

height_metadata

Gets the height_metadata of this Draw. # noqa: E501

Metadata that indicates whether the height property is editable. # noqa: E501

Returns

The height_metadata of this Draw. # noqa: E501

locked

Gets the locked of this Draw. # noqa: E501

When set to true, the signer cannot change the data of the custom tab. # noqa: E501

Returns

The locked of this Draw. # noqa: E501

locked_metadata

Gets the locked_metadata of this Draw. # noqa: E501

Metadata that indicates whether the locked property is editable. # noqa: E501

Returns

The locked_metadata of this Draw. # noqa: E501

merge_field

Gets the merge_field of this Draw. # noqa: E501

Contains the information necessary to map the tab to a field in SalesForce. # noqa: E501

Returns

The merge_field of this Draw. # noqa: E501

merge_field_xml

Gets the merge_field_xml of this Draw. # noqa: E501

# noqa: E501

Returns

The merge_field_xml of this Draw. # noqa: E501

page_number

Gets the page_number of this Draw. # noqa: E501

Specifies the page number on which the tab is located. # noqa: E501

Returns

The page_number of this Draw. # noqa: E501

page_number_metadata

Gets the page_number_metadata of this Draw. # noqa: E501

Metadata that indicates whether the pageNumber property is editable. # noqa: E501

Returns

The page_number_metadata of this Draw. # noqa: E501

recipient_id

Gets the recipient_id of this Draw. # noqa: E501

Unique for the recipient. It is used by the tab element to indicate which recipient is to sign the Document. # noqa: E501

Returns

The recipient_id of this Draw. # noqa: E501

recipient_id_guid

Gets the recipient_id_guid of this Draw. # noqa: E501

# noqa: E501

Returns

The recipient_id_guid of this Draw. # noqa: E501

recipient_id_guid_metadata

Gets the recipient_id_guid_metadata of this Draw. # noqa: E501

Metadata that indicates whether the recipientIdGuid property is editable. # noqa: E501

Returns

The recipient_id_guid_metadata of this Draw. # noqa: E501

recipient_id_metadata

Gets the recipient_id_metadata of this Draw. # noqa: E501

Metadata that indicates whether the recipientId property is editable. # noqa: E501

Returns

The recipient_id_metadata of this Draw. # noqa: E501

required

Gets the required of this Draw. # noqa: E501

When set to true, the signer is required to fill out this tab # noqa: E501

Returns

The required of this Draw. # noqa: E501

required_metadata

Gets the required_metadata of this Draw. # noqa: E501

Metadata that indicates whether the required property is editable. # noqa: E501

Returns

The required_metadata of this Draw. # noqa: E501

shared

Gets the shared of this Draw. # noqa: E501

When set to true, this custom tab is shared. # noqa: E501

Returns

The shared of this Draw. # noqa: E501

shared_metadata

Gets the shared_metadata of this Draw. # noqa: E501

Metadata that indicates whether the shared property is editable. # noqa: E501

Returns

The shared_metadata of this Draw. # noqa: E501

smart_contract_information

Gets the smart_contract_information of this Draw. # noqa: E501

Reserved for DocuSign. # noqa: E501

Returns

The smart_contract_information of this Draw. # noqa: E501

source

Gets the source of this Draw. # noqa: E501

# noqa: E501

Returns

The source of this Draw. # noqa: E501

status

Gets the status of this Draw. # noqa: E501

Indicates the envelope status. Valid values are: * sent - The envelope is sent to the recipients. * created - The envelope is saved as a draft and can be modified and sent later. # noqa: E501

Returns

The status of this Draw. # noqa: E501

status_metadata

Gets the status_metadata of this Draw. # noqa: E501

Metadata that indicates whether the status property is editable. # noqa: E501

Returns

The status_metadata of this Draw. # noqa: E501

tab_group_labels

Gets the tab_group_labels of this Draw. # noqa: E501

# noqa: E501

Returns

The tab_group_labels of this Draw. # noqa: E501

tab_group_labels_metadata

Gets the tab_group_labels_metadata of this Draw. # noqa: E501

Metadata that indicates whether the tabGroupLabels property is editable. # noqa: E501

Returns

The tab_group_labels_metadata of this Draw. # noqa: E501

tab_id

Gets the tab_id of this Draw. # noqa: E501

The unique identifier for the tab. The tabid can be retrieved with the [ML:GET call]. # noqa: E501

Returns

The tab_id of this Draw. # noqa: E501

tab_id_metadata

Gets the tab_id_metadata of this Draw. # noqa: E501

Metadata that indicates whether the tabId property is editable. # noqa: E501

Returns

The tab_id_metadata of this Draw. # noqa: E501

tab_label_metadata

Gets the tab_label_metadata of this Draw. # noqa: E501

Metadata that indicates whether the tabLabel property is editable. # noqa: E501

Returns

The tab_label_metadata of this Draw. # noqa: E501

tab_order

Gets the tab_order of this Draw. # noqa: E501

# noqa: E501

Returns

The tab_order of this Draw. # noqa: E501

tab_order_metadata

Gets the tab_order_metadata of this Draw. # noqa: E501

Metadata that indicates whether the tabOrder property is editable. # noqa: E501

Returns

The tab_order_metadata of this Draw. # noqa: E501

tab_type

Gets the tab_type of this Draw. # noqa: E501

# noqa: E501

Returns

The tab_type of this Draw. # noqa: E501

tab_type_metadata

Gets the tab_type_metadata of this Draw. # noqa: E501

Metadata that indicates whether the tabType property is editable. # noqa: E501

Returns

The tab_type_metadata of this Draw. # noqa: E501

template_locked

Gets the template_locked of this Draw. # noqa: E501

When set to true, the sender cannot change any attributes of the recipient. Used only when working with template recipients. # noqa: E501

Returns

The template_locked of this Draw. # noqa: E501

template_locked_metadata

Gets the template_locked_metadata of this Draw. # noqa: E501

Metadata that indicates whether the templateLocked property is editable. # noqa: E501

Returns

The template_locked_metadata of this Draw. # noqa: E501

template_required

Gets the template_required of this Draw. # noqa: E501

When set to true, the sender may not remove the recipient. Used only when working with template recipients. # noqa: E501

Returns

The template_required of this Draw. # noqa: E501

template_required_metadata

Gets the template_required_metadata of this Draw. # noqa: E501

Metadata that indicates whether the templateRequired property is editable. # noqa: E501

Returns

The template_required_metadata of this Draw. # noqa: E501

tooltip

Gets the tooltip of this Draw. # noqa: E501

# noqa: E501

Returns

The tooltip of this Draw. # noqa: E501

tool_tip_metadata

Gets the tool_tip_metadata of this Draw. # noqa: E501

Metadata that indicates whether the toolTip property is editable. # noqa: E501

Returns

The tool_tip_metadata of this Draw. # noqa: E501

use_background_as_canvas

Gets the use_background_as_canvas of this Draw. # noqa: E501

# noqa: E501

Returns

The use_background_as_canvas of this Draw. # noqa: E501

width

Gets the width of this Draw. # noqa: E501

Width of the tab in pixels. # noqa: E501

Returns

The width of this Draw. # noqa: E501

width_metadata

Gets the width_metadata of this Draw. # noqa: E501

Metadata that indicates whether the width property is editable. # noqa: E501

Returns

The width_metadata of this Draw. # noqa: E501

x_position

Gets the x_position of this Draw. # noqa: E501

This indicates the horizontal offset of the object on the page. DocuSign uses 72 DPI when determining position. # noqa: E501

Returns

The x_position of this Draw. # noqa: E501

x_position_metadata

Gets the x_position_metadata of this Draw. # noqa: E501

Metadata that indicates whether the xPosition property is editable. # noqa: E501

Returns

The x_position_metadata of this Draw. # noqa: E501

y_position

Gets the y_position of this Draw. # noqa: E501

This indicates the vertical offset of the object on the page. DocuSign uses 72 DPI when determining position. # noqa: E501

Returns

The y_position of this Draw. # noqa: E501

y_position_metadata

Gets the y_position_metadata of this Draw. # noqa: E501

Metadata that indicates whether the yPosition property is editable. # noqa: E501

Returns

The y_position_metadata of this Draw. # noqa: E501

def to_dict(self)
2211    def to_dict(self):
2212        """Returns the model properties as a dict"""
2213        result = {}
2214
2215        for attr, _ in six.iteritems(self.swagger_types):
2216            value = getattr(self, attr)
2217            if isinstance(value, list):
2218                result[attr] = list(map(
2219                    lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
2220                    value
2221                ))
2222            elif hasattr(value, "to_dict"):
2223                result[attr] = value.to_dict()
2224            elif isinstance(value, dict):
2225                result[attr] = dict(map(
2226                    lambda item: (item[0], item[1].to_dict())
2227                    if hasattr(item[1], "to_dict") else item,
2228                    value.items()
2229                ))
2230            else:
2231                result[attr] = value
2232        if issubclass(Draw, dict):
2233            for key, value in self.items():
2234                result[key] = value
2235
2236        return result

Returns the model properties as a dict

def to_str(self)
2238    def to_str(self):
2239        """Returns the string representation of the model"""
2240        return pprint.pformat(self.to_dict())

Returns the string representation of the model