docusign_esign.models.radio
Docusign eSignature REST API
The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. # noqa: E501
OpenAPI spec version: v2.1 Contact: devcenter@docusign.com Generated by: https://github.com/swagger-api/swagger-codegen.git
1# coding: utf-8 2 3""" 4 Docusign eSignature REST API 5 6 The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. # noqa: E501 7 8 OpenAPI spec version: v2.1 9 Contact: devcenter@docusign.com 10 Generated by: https://github.com/swagger-api/swagger-codegen.git 11""" 12 13 14import pprint 15import re # noqa: F401 16 17import six 18 19from docusign_esign.client.configuration import Configuration 20 21 22class Radio(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 'anchor_allow_white_space_in_characters': 'str', 37 'anchor_allow_white_space_in_characters_metadata': 'PropertyMetadata', 38 'anchor_case_sensitive': 'str', 39 'anchor_case_sensitive_metadata': 'PropertyMetadata', 40 'anchor_horizontal_alignment': 'str', 41 'anchor_horizontal_alignment_metadata': 'PropertyMetadata', 42 'anchor_ignore_if_not_present': 'str', 43 'anchor_ignore_if_not_present_metadata': 'PropertyMetadata', 44 'anchor_match_whole_word': 'str', 45 'anchor_match_whole_word_metadata': 'PropertyMetadata', 46 'anchor_string': 'str', 47 'anchor_string_metadata': 'PropertyMetadata', 48 'anchor_tab_processor_version': 'str', 49 'anchor_tab_processor_version_metadata': 'PropertyMetadata', 50 'anchor_units': 'str', 51 'anchor_units_metadata': 'PropertyMetadata', 52 'anchor_x_offset': 'str', 53 'anchor_x_offset_metadata': 'PropertyMetadata', 54 'anchor_y_offset': 'str', 55 'anchor_y_offset_metadata': 'PropertyMetadata', 56 'bold': 'str', 57 'bold_metadata': 'PropertyMetadata', 58 'caption': 'str', 59 'caption_metadata': 'PropertyMetadata', 60 'connected_object_details': 'ConnectedObjectDetails', 61 'error_details': 'ErrorDetails', 62 'extension_data': 'ExtensionData', 63 'font': 'str', 64 'font_color': 'str', 65 'font_color_metadata': 'PropertyMetadata', 66 'font_metadata': 'PropertyMetadata', 67 'font_size': 'str', 68 'font_size_metadata': 'PropertyMetadata', 69 'italic': 'str', 70 'italic_metadata': 'PropertyMetadata', 71 'locked': 'str', 72 'locked_metadata': 'PropertyMetadata', 73 'merge_field_xml': 'str', 74 'page_number': 'str', 75 'page_number_metadata': 'PropertyMetadata', 76 'required': 'str', 77 'required_metadata': 'PropertyMetadata', 78 'selected': 'str', 79 'selected_metadata': 'PropertyMetadata', 80 'status': 'str', 81 'status_metadata': 'PropertyMetadata', 82 'tab_fully_qualified_path': 'str', 83 'tab_id': 'str', 84 'tab_id_metadata': 'PropertyMetadata', 85 'tab_order': 'str', 86 'tab_order_metadata': 'PropertyMetadata', 87 'underline': 'str', 88 'underline_metadata': 'PropertyMetadata', 89 'value': 'str', 90 'value_metadata': 'PropertyMetadata', 91 'x_position': 'str', 92 'x_position_metadata': 'PropertyMetadata', 93 'y_position': 'str', 94 'y_position_metadata': 'PropertyMetadata' 95 } 96 97 attribute_map = { 98 'anchor_allow_white_space_in_characters': 'anchorAllowWhiteSpaceInCharacters', 99 'anchor_allow_white_space_in_characters_metadata': 'anchorAllowWhiteSpaceInCharactersMetadata', 100 'anchor_case_sensitive': 'anchorCaseSensitive', 101 'anchor_case_sensitive_metadata': 'anchorCaseSensitiveMetadata', 102 'anchor_horizontal_alignment': 'anchorHorizontalAlignment', 103 'anchor_horizontal_alignment_metadata': 'anchorHorizontalAlignmentMetadata', 104 'anchor_ignore_if_not_present': 'anchorIgnoreIfNotPresent', 105 'anchor_ignore_if_not_present_metadata': 'anchorIgnoreIfNotPresentMetadata', 106 'anchor_match_whole_word': 'anchorMatchWholeWord', 107 'anchor_match_whole_word_metadata': 'anchorMatchWholeWordMetadata', 108 'anchor_string': 'anchorString', 109 'anchor_string_metadata': 'anchorStringMetadata', 110 'anchor_tab_processor_version': 'anchorTabProcessorVersion', 111 'anchor_tab_processor_version_metadata': 'anchorTabProcessorVersionMetadata', 112 'anchor_units': 'anchorUnits', 113 'anchor_units_metadata': 'anchorUnitsMetadata', 114 'anchor_x_offset': 'anchorXOffset', 115 'anchor_x_offset_metadata': 'anchorXOffsetMetadata', 116 'anchor_y_offset': 'anchorYOffset', 117 'anchor_y_offset_metadata': 'anchorYOffsetMetadata', 118 'bold': 'bold', 119 'bold_metadata': 'boldMetadata', 120 'caption': 'caption', 121 'caption_metadata': 'captionMetadata', 122 'connected_object_details': 'connectedObjectDetails', 123 'error_details': 'errorDetails', 124 'extension_data': 'extensionData', 125 'font': 'font', 126 'font_color': 'fontColor', 127 'font_color_metadata': 'fontColorMetadata', 128 'font_metadata': 'fontMetadata', 129 'font_size': 'fontSize', 130 'font_size_metadata': 'fontSizeMetadata', 131 'italic': 'italic', 132 'italic_metadata': 'italicMetadata', 133 'locked': 'locked', 134 'locked_metadata': 'lockedMetadata', 135 'merge_field_xml': 'mergeFieldXml', 136 'page_number': 'pageNumber', 137 'page_number_metadata': 'pageNumberMetadata', 138 'required': 'required', 139 'required_metadata': 'requiredMetadata', 140 'selected': 'selected', 141 'selected_metadata': 'selectedMetadata', 142 'status': 'status', 143 'status_metadata': 'statusMetadata', 144 'tab_fully_qualified_path': 'tabFullyQualifiedPath', 145 'tab_id': 'tabId', 146 'tab_id_metadata': 'tabIdMetadata', 147 'tab_order': 'tabOrder', 148 'tab_order_metadata': 'tabOrderMetadata', 149 'underline': 'underline', 150 'underline_metadata': 'underlineMetadata', 151 'value': 'value', 152 'value_metadata': 'valueMetadata', 153 'x_position': 'xPosition', 154 'x_position_metadata': 'xPositionMetadata', 155 'y_position': 'yPosition', 156 'y_position_metadata': 'yPositionMetadata' 157 } 158 159 def __init__(self, _configuration=None, **kwargs): # noqa: E501 160 """Radio - a model defined in Swagger""" # noqa: E501 161 if _configuration is None: 162 _configuration = Configuration() 163 self._configuration = _configuration 164 165 self._anchor_allow_white_space_in_characters = None 166 self._anchor_allow_white_space_in_characters_metadata = None 167 self._anchor_case_sensitive = None 168 self._anchor_case_sensitive_metadata = None 169 self._anchor_horizontal_alignment = None 170 self._anchor_horizontal_alignment_metadata = None 171 self._anchor_ignore_if_not_present = None 172 self._anchor_ignore_if_not_present_metadata = None 173 self._anchor_match_whole_word = None 174 self._anchor_match_whole_word_metadata = None 175 self._anchor_string = None 176 self._anchor_string_metadata = None 177 self._anchor_tab_processor_version = None 178 self._anchor_tab_processor_version_metadata = None 179 self._anchor_units = None 180 self._anchor_units_metadata = None 181 self._anchor_x_offset = None 182 self._anchor_x_offset_metadata = None 183 self._anchor_y_offset = None 184 self._anchor_y_offset_metadata = None 185 self._bold = None 186 self._bold_metadata = None 187 self._caption = None 188 self._caption_metadata = None 189 self._connected_object_details = None 190 self._error_details = None 191 self._extension_data = None 192 self._font = None 193 self._font_color = None 194 self._font_color_metadata = None 195 self._font_metadata = None 196 self._font_size = None 197 self._font_size_metadata = None 198 self._italic = None 199 self._italic_metadata = None 200 self._locked = None 201 self._locked_metadata = None 202 self._merge_field_xml = None 203 self._page_number = None 204 self._page_number_metadata = None 205 self._required = None 206 self._required_metadata = None 207 self._selected = None 208 self._selected_metadata = None 209 self._status = None 210 self._status_metadata = None 211 self._tab_fully_qualified_path = None 212 self._tab_id = None 213 self._tab_id_metadata = None 214 self._tab_order = None 215 self._tab_order_metadata = None 216 self._underline = None 217 self._underline_metadata = None 218 self._value = None 219 self._value_metadata = None 220 self._x_position = None 221 self._x_position_metadata = None 222 self._y_position = None 223 self._y_position_metadata = None 224 self.discriminator = None 225 226 setattr(self, "_{}".format('anchor_allow_white_space_in_characters'), kwargs.get('anchor_allow_white_space_in_characters', None)) 227 setattr(self, "_{}".format('anchor_allow_white_space_in_characters_metadata'), kwargs.get('anchor_allow_white_space_in_characters_metadata', None)) 228 setattr(self, "_{}".format('anchor_case_sensitive'), kwargs.get('anchor_case_sensitive', None)) 229 setattr(self, "_{}".format('anchor_case_sensitive_metadata'), kwargs.get('anchor_case_sensitive_metadata', None)) 230 setattr(self, "_{}".format('anchor_horizontal_alignment'), kwargs.get('anchor_horizontal_alignment', None)) 231 setattr(self, "_{}".format('anchor_horizontal_alignment_metadata'), kwargs.get('anchor_horizontal_alignment_metadata', None)) 232 setattr(self, "_{}".format('anchor_ignore_if_not_present'), kwargs.get('anchor_ignore_if_not_present', None)) 233 setattr(self, "_{}".format('anchor_ignore_if_not_present_metadata'), kwargs.get('anchor_ignore_if_not_present_metadata', None)) 234 setattr(self, "_{}".format('anchor_match_whole_word'), kwargs.get('anchor_match_whole_word', None)) 235 setattr(self, "_{}".format('anchor_match_whole_word_metadata'), kwargs.get('anchor_match_whole_word_metadata', None)) 236 setattr(self, "_{}".format('anchor_string'), kwargs.get('anchor_string', None)) 237 setattr(self, "_{}".format('anchor_string_metadata'), kwargs.get('anchor_string_metadata', None)) 238 setattr(self, "_{}".format('anchor_tab_processor_version'), kwargs.get('anchor_tab_processor_version', None)) 239 setattr(self, "_{}".format('anchor_tab_processor_version_metadata'), kwargs.get('anchor_tab_processor_version_metadata', None)) 240 setattr(self, "_{}".format('anchor_units'), kwargs.get('anchor_units', None)) 241 setattr(self, "_{}".format('anchor_units_metadata'), kwargs.get('anchor_units_metadata', None)) 242 setattr(self, "_{}".format('anchor_x_offset'), kwargs.get('anchor_x_offset', None)) 243 setattr(self, "_{}".format('anchor_x_offset_metadata'), kwargs.get('anchor_x_offset_metadata', None)) 244 setattr(self, "_{}".format('anchor_y_offset'), kwargs.get('anchor_y_offset', None)) 245 setattr(self, "_{}".format('anchor_y_offset_metadata'), kwargs.get('anchor_y_offset_metadata', None)) 246 setattr(self, "_{}".format('bold'), kwargs.get('bold', None)) 247 setattr(self, "_{}".format('bold_metadata'), kwargs.get('bold_metadata', None)) 248 setattr(self, "_{}".format('caption'), kwargs.get('caption', None)) 249 setattr(self, "_{}".format('caption_metadata'), kwargs.get('caption_metadata', None)) 250 setattr(self, "_{}".format('connected_object_details'), kwargs.get('connected_object_details', None)) 251 setattr(self, "_{}".format('error_details'), kwargs.get('error_details', None)) 252 setattr(self, "_{}".format('extension_data'), kwargs.get('extension_data', None)) 253 setattr(self, "_{}".format('font'), kwargs.get('font', None)) 254 setattr(self, "_{}".format('font_color'), kwargs.get('font_color', None)) 255 setattr(self, "_{}".format('font_color_metadata'), kwargs.get('font_color_metadata', None)) 256 setattr(self, "_{}".format('font_metadata'), kwargs.get('font_metadata', None)) 257 setattr(self, "_{}".format('font_size'), kwargs.get('font_size', None)) 258 setattr(self, "_{}".format('font_size_metadata'), kwargs.get('font_size_metadata', None)) 259 setattr(self, "_{}".format('italic'), kwargs.get('italic', None)) 260 setattr(self, "_{}".format('italic_metadata'), kwargs.get('italic_metadata', None)) 261 setattr(self, "_{}".format('locked'), kwargs.get('locked', None)) 262 setattr(self, "_{}".format('locked_metadata'), kwargs.get('locked_metadata', None)) 263 setattr(self, "_{}".format('merge_field_xml'), kwargs.get('merge_field_xml', None)) 264 setattr(self, "_{}".format('page_number'), kwargs.get('page_number', None)) 265 setattr(self, "_{}".format('page_number_metadata'), kwargs.get('page_number_metadata', None)) 266 setattr(self, "_{}".format('required'), kwargs.get('required', None)) 267 setattr(self, "_{}".format('required_metadata'), kwargs.get('required_metadata', None)) 268 setattr(self, "_{}".format('selected'), kwargs.get('selected', None)) 269 setattr(self, "_{}".format('selected_metadata'), kwargs.get('selected_metadata', None)) 270 setattr(self, "_{}".format('status'), kwargs.get('status', None)) 271 setattr(self, "_{}".format('status_metadata'), kwargs.get('status_metadata', None)) 272 setattr(self, "_{}".format('tab_fully_qualified_path'), kwargs.get('tab_fully_qualified_path', None)) 273 setattr(self, "_{}".format('tab_id'), kwargs.get('tab_id', None)) 274 setattr(self, "_{}".format('tab_id_metadata'), kwargs.get('tab_id_metadata', None)) 275 setattr(self, "_{}".format('tab_order'), kwargs.get('tab_order', None)) 276 setattr(self, "_{}".format('tab_order_metadata'), kwargs.get('tab_order_metadata', None)) 277 setattr(self, "_{}".format('underline'), kwargs.get('underline', None)) 278 setattr(self, "_{}".format('underline_metadata'), kwargs.get('underline_metadata', None)) 279 setattr(self, "_{}".format('value'), kwargs.get('value', None)) 280 setattr(self, "_{}".format('value_metadata'), kwargs.get('value_metadata', None)) 281 setattr(self, "_{}".format('x_position'), kwargs.get('x_position', None)) 282 setattr(self, "_{}".format('x_position_metadata'), kwargs.get('x_position_metadata', None)) 283 setattr(self, "_{}".format('y_position'), kwargs.get('y_position', None)) 284 setattr(self, "_{}".format('y_position_metadata'), kwargs.get('y_position_metadata', None)) 285 286 @property 287 def anchor_allow_white_space_in_characters(self): 288 """Gets the anchor_allow_white_space_in_characters of this Radio. # noqa: E501 289 290 # noqa: E501 291 292 :return: The anchor_allow_white_space_in_characters of this Radio. # noqa: E501 293 :rtype: str 294 """ 295 return self._anchor_allow_white_space_in_characters 296 297 @anchor_allow_white_space_in_characters.setter 298 def anchor_allow_white_space_in_characters(self, anchor_allow_white_space_in_characters): 299 """Sets the anchor_allow_white_space_in_characters of this Radio. 300 301 # noqa: E501 302 303 :param anchor_allow_white_space_in_characters: The anchor_allow_white_space_in_characters of this Radio. # noqa: E501 304 :type: str 305 """ 306 307 self._anchor_allow_white_space_in_characters = anchor_allow_white_space_in_characters 308 309 @property 310 def anchor_allow_white_space_in_characters_metadata(self): 311 """Gets the anchor_allow_white_space_in_characters_metadata of this Radio. # noqa: E501 312 313 Metadata that indicates whether the `anchorAllowWhiteSpaceInCharacters` property is editable. # noqa: E501 314 315 :return: The anchor_allow_white_space_in_characters_metadata of this Radio. # noqa: E501 316 :rtype: PropertyMetadata 317 """ 318 return self._anchor_allow_white_space_in_characters_metadata 319 320 @anchor_allow_white_space_in_characters_metadata.setter 321 def anchor_allow_white_space_in_characters_metadata(self, anchor_allow_white_space_in_characters_metadata): 322 """Sets the anchor_allow_white_space_in_characters_metadata of this Radio. 323 324 Metadata that indicates whether the `anchorAllowWhiteSpaceInCharacters` property is editable. # noqa: E501 325 326 :param anchor_allow_white_space_in_characters_metadata: The anchor_allow_white_space_in_characters_metadata of this Radio. # noqa: E501 327 :type: PropertyMetadata 328 """ 329 330 self._anchor_allow_white_space_in_characters_metadata = anchor_allow_white_space_in_characters_metadata 331 332 @property 333 def anchor_case_sensitive(self): 334 """Gets the anchor_case_sensitive of this Radio. # noqa: E501 335 336 When set to **true**, the anchor string does not consider case when matching strings in the document. The default value is **true**. # noqa: E501 337 338 :return: The anchor_case_sensitive of this Radio. # noqa: E501 339 :rtype: str 340 """ 341 return self._anchor_case_sensitive 342 343 @anchor_case_sensitive.setter 344 def anchor_case_sensitive(self, anchor_case_sensitive): 345 """Sets the anchor_case_sensitive of this Radio. 346 347 When set to **true**, the anchor string does not consider case when matching strings in the document. The default value is **true**. # noqa: E501 348 349 :param anchor_case_sensitive: The anchor_case_sensitive of this Radio. # noqa: E501 350 :type: str 351 """ 352 353 self._anchor_case_sensitive = anchor_case_sensitive 354 355 @property 356 def anchor_case_sensitive_metadata(self): 357 """Gets the anchor_case_sensitive_metadata of this Radio. # noqa: E501 358 359 Metadata that indicates whether the `anchorCaseSensitive` property is editable. # noqa: E501 360 361 :return: The anchor_case_sensitive_metadata of this Radio. # noqa: E501 362 :rtype: PropertyMetadata 363 """ 364 return self._anchor_case_sensitive_metadata 365 366 @anchor_case_sensitive_metadata.setter 367 def anchor_case_sensitive_metadata(self, anchor_case_sensitive_metadata): 368 """Sets the anchor_case_sensitive_metadata of this Radio. 369 370 Metadata that indicates whether the `anchorCaseSensitive` property is editable. # noqa: E501 371 372 :param anchor_case_sensitive_metadata: The anchor_case_sensitive_metadata of this Radio. # noqa: E501 373 :type: PropertyMetadata 374 """ 375 376 self._anchor_case_sensitive_metadata = anchor_case_sensitive_metadata 377 378 @property 379 def anchor_horizontal_alignment(self): 380 """Gets the anchor_horizontal_alignment of this Radio. # noqa: E501 381 382 Specifies the alignment of anchor tabs with anchor strings. Possible values are **left** or **right**. The default value is **left**. # noqa: E501 383 384 :return: The anchor_horizontal_alignment of this Radio. # noqa: E501 385 :rtype: str 386 """ 387 return self._anchor_horizontal_alignment 388 389 @anchor_horizontal_alignment.setter 390 def anchor_horizontal_alignment(self, anchor_horizontal_alignment): 391 """Sets the anchor_horizontal_alignment of this Radio. 392 393 Specifies the alignment of anchor tabs with anchor strings. Possible values are **left** or **right**. The default value is **left**. # noqa: E501 394 395 :param anchor_horizontal_alignment: The anchor_horizontal_alignment of this Radio. # noqa: E501 396 :type: str 397 """ 398 399 self._anchor_horizontal_alignment = anchor_horizontal_alignment 400 401 @property 402 def anchor_horizontal_alignment_metadata(self): 403 """Gets the anchor_horizontal_alignment_metadata of this Radio. # noqa: E501 404 405 Metadata that indicates whether the `anchorHorizontalAlignment` property is editable. # noqa: E501 406 407 :return: The anchor_horizontal_alignment_metadata of this Radio. # noqa: E501 408 :rtype: PropertyMetadata 409 """ 410 return self._anchor_horizontal_alignment_metadata 411 412 @anchor_horizontal_alignment_metadata.setter 413 def anchor_horizontal_alignment_metadata(self, anchor_horizontal_alignment_metadata): 414 """Sets the anchor_horizontal_alignment_metadata of this Radio. 415 416 Metadata that indicates whether the `anchorHorizontalAlignment` property is editable. # noqa: E501 417 418 :param anchor_horizontal_alignment_metadata: The anchor_horizontal_alignment_metadata of this Radio. # noqa: E501 419 :type: PropertyMetadata 420 """ 421 422 self._anchor_horizontal_alignment_metadata = anchor_horizontal_alignment_metadata 423 424 @property 425 def anchor_ignore_if_not_present(self): 426 """Gets the anchor_ignore_if_not_present of this Radio. # noqa: E501 427 428 When set to **true**, this tab is ignored if anchorString is not found in the document. # noqa: E501 429 430 :return: The anchor_ignore_if_not_present of this Radio. # noqa: E501 431 :rtype: str 432 """ 433 return self._anchor_ignore_if_not_present 434 435 @anchor_ignore_if_not_present.setter 436 def anchor_ignore_if_not_present(self, anchor_ignore_if_not_present): 437 """Sets the anchor_ignore_if_not_present of this Radio. 438 439 When set to **true**, this tab is ignored if anchorString is not found in the document. # noqa: E501 440 441 :param anchor_ignore_if_not_present: The anchor_ignore_if_not_present of this Radio. # noqa: E501 442 :type: str 443 """ 444 445 self._anchor_ignore_if_not_present = anchor_ignore_if_not_present 446 447 @property 448 def anchor_ignore_if_not_present_metadata(self): 449 """Gets the anchor_ignore_if_not_present_metadata of this Radio. # noqa: E501 450 451 Metadata that indicates whether the `anchorIgnoreIfNotPresent` property is editable. # noqa: E501 452 453 :return: The anchor_ignore_if_not_present_metadata of this Radio. # noqa: E501 454 :rtype: PropertyMetadata 455 """ 456 return self._anchor_ignore_if_not_present_metadata 457 458 @anchor_ignore_if_not_present_metadata.setter 459 def anchor_ignore_if_not_present_metadata(self, anchor_ignore_if_not_present_metadata): 460 """Sets the anchor_ignore_if_not_present_metadata of this Radio. 461 462 Metadata that indicates whether the `anchorIgnoreIfNotPresent` property is editable. # noqa: E501 463 464 :param anchor_ignore_if_not_present_metadata: The anchor_ignore_if_not_present_metadata of this Radio. # noqa: E501 465 :type: PropertyMetadata 466 """ 467 468 self._anchor_ignore_if_not_present_metadata = anchor_ignore_if_not_present_metadata 469 470 @property 471 def anchor_match_whole_word(self): 472 """Gets the anchor_match_whole_word of this Radio. # noqa: E501 473 474 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 475 476 :return: The anchor_match_whole_word of this Radio. # noqa: E501 477 :rtype: str 478 """ 479 return self._anchor_match_whole_word 480 481 @anchor_match_whole_word.setter 482 def anchor_match_whole_word(self, anchor_match_whole_word): 483 """Sets the anchor_match_whole_word of this Radio. 484 485 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 486 487 :param anchor_match_whole_word: The anchor_match_whole_word of this Radio. # noqa: E501 488 :type: str 489 """ 490 491 self._anchor_match_whole_word = anchor_match_whole_word 492 493 @property 494 def anchor_match_whole_word_metadata(self): 495 """Gets the anchor_match_whole_word_metadata of this Radio. # noqa: E501 496 497 Metadata that indicates whether the `anchorMatchWholeWord` property is editable. # noqa: E501 498 499 :return: The anchor_match_whole_word_metadata of this Radio. # noqa: E501 500 :rtype: PropertyMetadata 501 """ 502 return self._anchor_match_whole_word_metadata 503 504 @anchor_match_whole_word_metadata.setter 505 def anchor_match_whole_word_metadata(self, anchor_match_whole_word_metadata): 506 """Sets the anchor_match_whole_word_metadata of this Radio. 507 508 Metadata that indicates whether the `anchorMatchWholeWord` property is editable. # noqa: E501 509 510 :param anchor_match_whole_word_metadata: The anchor_match_whole_word_metadata of this Radio. # noqa: E501 511 :type: PropertyMetadata 512 """ 513 514 self._anchor_match_whole_word_metadata = anchor_match_whole_word_metadata 515 516 @property 517 def anchor_string(self): 518 """Gets the anchor_string of this Radio. # noqa: E501 519 520 Anchor text information for a radio button. # noqa: E501 521 522 :return: The anchor_string of this Radio. # noqa: E501 523 :rtype: str 524 """ 525 return self._anchor_string 526 527 @anchor_string.setter 528 def anchor_string(self, anchor_string): 529 """Sets the anchor_string of this Radio. 530 531 Anchor text information for a radio button. # noqa: E501 532 533 :param anchor_string: The anchor_string of this Radio. # noqa: E501 534 :type: str 535 """ 536 537 self._anchor_string = anchor_string 538 539 @property 540 def anchor_string_metadata(self): 541 """Gets the anchor_string_metadata of this Radio. # noqa: E501 542 543 Metadata that indicates whether the `anchorString` property is editable. # noqa: E501 544 545 :return: The anchor_string_metadata of this Radio. # noqa: E501 546 :rtype: PropertyMetadata 547 """ 548 return self._anchor_string_metadata 549 550 @anchor_string_metadata.setter 551 def anchor_string_metadata(self, anchor_string_metadata): 552 """Sets the anchor_string_metadata of this Radio. 553 554 Metadata that indicates whether the `anchorString` property is editable. # noqa: E501 555 556 :param anchor_string_metadata: The anchor_string_metadata of this Radio. # noqa: E501 557 :type: PropertyMetadata 558 """ 559 560 self._anchor_string_metadata = anchor_string_metadata 561 562 @property 563 def anchor_tab_processor_version(self): 564 """Gets the anchor_tab_processor_version of this Radio. # noqa: E501 565 566 # noqa: E501 567 568 :return: The anchor_tab_processor_version of this Radio. # noqa: E501 569 :rtype: str 570 """ 571 return self._anchor_tab_processor_version 572 573 @anchor_tab_processor_version.setter 574 def anchor_tab_processor_version(self, anchor_tab_processor_version): 575 """Sets the anchor_tab_processor_version of this Radio. 576 577 # noqa: E501 578 579 :param anchor_tab_processor_version: The anchor_tab_processor_version of this Radio. # noqa: E501 580 :type: str 581 """ 582 583 self._anchor_tab_processor_version = anchor_tab_processor_version 584 585 @property 586 def anchor_tab_processor_version_metadata(self): 587 """Gets the anchor_tab_processor_version_metadata of this Radio. # noqa: E501 588 589 Reserved for DocuSign. # noqa: E501 590 591 :return: The anchor_tab_processor_version_metadata of this Radio. # noqa: E501 592 :rtype: PropertyMetadata 593 """ 594 return self._anchor_tab_processor_version_metadata 595 596 @anchor_tab_processor_version_metadata.setter 597 def anchor_tab_processor_version_metadata(self, anchor_tab_processor_version_metadata): 598 """Sets the anchor_tab_processor_version_metadata of this Radio. 599 600 Reserved for DocuSign. # noqa: E501 601 602 :param anchor_tab_processor_version_metadata: The anchor_tab_processor_version_metadata of this Radio. # noqa: E501 603 :type: PropertyMetadata 604 """ 605 606 self._anchor_tab_processor_version_metadata = anchor_tab_processor_version_metadata 607 608 @property 609 def anchor_units(self): 610 """Gets the anchor_units of this Radio. # noqa: E501 611 612 Specifies units of the X and Y offset. Units could be pixels, millimeters, centimeters, or inches. # noqa: E501 613 614 :return: The anchor_units of this Radio. # noqa: E501 615 :rtype: str 616 """ 617 return self._anchor_units 618 619 @anchor_units.setter 620 def anchor_units(self, anchor_units): 621 """Sets the anchor_units of this Radio. 622 623 Specifies units of the X and Y offset. Units could be pixels, millimeters, centimeters, or inches. # noqa: E501 624 625 :param anchor_units: The anchor_units of this Radio. # noqa: E501 626 :type: str 627 """ 628 629 self._anchor_units = anchor_units 630 631 @property 632 def anchor_units_metadata(self): 633 """Gets the anchor_units_metadata of this Radio. # noqa: E501 634 635 Metadata that indicates whether the `anchorUnits` property is editable. # noqa: E501 636 637 :return: The anchor_units_metadata of this Radio. # noqa: E501 638 :rtype: PropertyMetadata 639 """ 640 return self._anchor_units_metadata 641 642 @anchor_units_metadata.setter 643 def anchor_units_metadata(self, anchor_units_metadata): 644 """Sets the anchor_units_metadata of this Radio. 645 646 Metadata that indicates whether the `anchorUnits` property is editable. # noqa: E501 647 648 :param anchor_units_metadata: The anchor_units_metadata of this Radio. # noqa: E501 649 :type: PropertyMetadata 650 """ 651 652 self._anchor_units_metadata = anchor_units_metadata 653 654 @property 655 def anchor_x_offset(self): 656 """Gets the anchor_x_offset of this Radio. # noqa: E501 657 658 Specifies the X axis location of the tab, in anchorUnits, relative to the anchorString. # noqa: E501 659 660 :return: The anchor_x_offset of this Radio. # noqa: E501 661 :rtype: str 662 """ 663 return self._anchor_x_offset 664 665 @anchor_x_offset.setter 666 def anchor_x_offset(self, anchor_x_offset): 667 """Sets the anchor_x_offset of this Radio. 668 669 Specifies the X axis location of the tab, in anchorUnits, relative to the anchorString. # noqa: E501 670 671 :param anchor_x_offset: The anchor_x_offset of this Radio. # noqa: E501 672 :type: str 673 """ 674 675 self._anchor_x_offset = anchor_x_offset 676 677 @property 678 def anchor_x_offset_metadata(self): 679 """Gets the anchor_x_offset_metadata of this Radio. # noqa: E501 680 681 Metadata that indicates whether the `anchorXOffset` property is editable. # noqa: E501 682 683 :return: The anchor_x_offset_metadata of this Radio. # noqa: E501 684 :rtype: PropertyMetadata 685 """ 686 return self._anchor_x_offset_metadata 687 688 @anchor_x_offset_metadata.setter 689 def anchor_x_offset_metadata(self, anchor_x_offset_metadata): 690 """Sets the anchor_x_offset_metadata of this Radio. 691 692 Metadata that indicates whether the `anchorXOffset` property is editable. # noqa: E501 693 694 :param anchor_x_offset_metadata: The anchor_x_offset_metadata of this Radio. # noqa: E501 695 :type: PropertyMetadata 696 """ 697 698 self._anchor_x_offset_metadata = anchor_x_offset_metadata 699 700 @property 701 def anchor_y_offset(self): 702 """Gets the anchor_y_offset of this Radio. # noqa: E501 703 704 Specifies the Y axis location of the tab, in anchorUnits, relative to the anchorString. # noqa: E501 705 706 :return: The anchor_y_offset of this Radio. # noqa: E501 707 :rtype: str 708 """ 709 return self._anchor_y_offset 710 711 @anchor_y_offset.setter 712 def anchor_y_offset(self, anchor_y_offset): 713 """Sets the anchor_y_offset of this Radio. 714 715 Specifies the Y axis location of the tab, in anchorUnits, relative to the anchorString. # noqa: E501 716 717 :param anchor_y_offset: The anchor_y_offset of this Radio. # noqa: E501 718 :type: str 719 """ 720 721 self._anchor_y_offset = anchor_y_offset 722 723 @property 724 def anchor_y_offset_metadata(self): 725 """Gets the anchor_y_offset_metadata of this Radio. # noqa: E501 726 727 Metadata that indicates whether the `anchorYOffset` property is editable. # noqa: E501 728 729 :return: The anchor_y_offset_metadata of this Radio. # noqa: E501 730 :rtype: PropertyMetadata 731 """ 732 return self._anchor_y_offset_metadata 733 734 @anchor_y_offset_metadata.setter 735 def anchor_y_offset_metadata(self, anchor_y_offset_metadata): 736 """Sets the anchor_y_offset_metadata of this Radio. 737 738 Metadata that indicates whether the `anchorYOffset` property is editable. # noqa: E501 739 740 :param anchor_y_offset_metadata: The anchor_y_offset_metadata of this Radio. # noqa: E501 741 :type: PropertyMetadata 742 """ 743 744 self._anchor_y_offset_metadata = anchor_y_offset_metadata 745 746 @property 747 def bold(self): 748 """Gets the bold of this Radio. # noqa: E501 749 750 When set to **true**, the information in the tab is bold. # noqa: E501 751 752 :return: The bold of this Radio. # noqa: E501 753 :rtype: str 754 """ 755 return self._bold 756 757 @bold.setter 758 def bold(self, bold): 759 """Sets the bold of this Radio. 760 761 When set to **true**, the information in the tab is bold. # noqa: E501 762 763 :param bold: The bold of this Radio. # noqa: E501 764 :type: str 765 """ 766 767 self._bold = bold 768 769 @property 770 def bold_metadata(self): 771 """Gets the bold_metadata of this Radio. # noqa: E501 772 773 Metadata that indicates whether the `bold` property is editable. # noqa: E501 774 775 :return: The bold_metadata of this Radio. # noqa: E501 776 :rtype: PropertyMetadata 777 """ 778 return self._bold_metadata 779 780 @bold_metadata.setter 781 def bold_metadata(self, bold_metadata): 782 """Sets the bold_metadata of this Radio. 783 784 Metadata that indicates whether the `bold` property is editable. # noqa: E501 785 786 :param bold_metadata: The bold_metadata of this Radio. # noqa: E501 787 :type: PropertyMetadata 788 """ 789 790 self._bold_metadata = bold_metadata 791 792 @property 793 def caption(self): 794 """Gets the caption of this Radio. # noqa: E501 795 796 # noqa: E501 797 798 :return: The caption of this Radio. # noqa: E501 799 :rtype: str 800 """ 801 return self._caption 802 803 @caption.setter 804 def caption(self, caption): 805 """Sets the caption of this Radio. 806 807 # noqa: E501 808 809 :param caption: The caption of this Radio. # noqa: E501 810 :type: str 811 """ 812 813 self._caption = caption 814 815 @property 816 def caption_metadata(self): 817 """Gets the caption_metadata of this Radio. # noqa: E501 818 819 # noqa: E501 820 821 :return: The caption_metadata of this Radio. # noqa: E501 822 :rtype: PropertyMetadata 823 """ 824 return self._caption_metadata 825 826 @caption_metadata.setter 827 def caption_metadata(self, caption_metadata): 828 """Sets the caption_metadata of this Radio. 829 830 # noqa: E501 831 832 :param caption_metadata: The caption_metadata of this Radio. # noqa: E501 833 :type: PropertyMetadata 834 """ 835 836 self._caption_metadata = caption_metadata 837 838 @property 839 def connected_object_details(self): 840 """Gets the connected_object_details of this Radio. # noqa: E501 841 842 # noqa: E501 843 844 :return: The connected_object_details of this Radio. # noqa: E501 845 :rtype: ConnectedObjectDetails 846 """ 847 return self._connected_object_details 848 849 @connected_object_details.setter 850 def connected_object_details(self, connected_object_details): 851 """Sets the connected_object_details of this Radio. 852 853 # noqa: E501 854 855 :param connected_object_details: The connected_object_details of this Radio. # noqa: E501 856 :type: ConnectedObjectDetails 857 """ 858 859 self._connected_object_details = connected_object_details 860 861 @property 862 def error_details(self): 863 """Gets the error_details of this Radio. # noqa: E501 864 865 Array or errors. # noqa: E501 866 867 :return: The error_details of this Radio. # noqa: E501 868 :rtype: ErrorDetails 869 """ 870 return self._error_details 871 872 @error_details.setter 873 def error_details(self, error_details): 874 """Sets the error_details of this Radio. 875 876 Array or errors. # noqa: E501 877 878 :param error_details: The error_details of this Radio. # noqa: E501 879 :type: ErrorDetails 880 """ 881 882 self._error_details = error_details 883 884 @property 885 def extension_data(self): 886 """Gets the extension_data of this Radio. # noqa: E501 887 888 # noqa: E501 889 890 :return: The extension_data of this Radio. # noqa: E501 891 :rtype: ExtensionData 892 """ 893 return self._extension_data 894 895 @extension_data.setter 896 def extension_data(self, extension_data): 897 """Sets the extension_data of this Radio. 898 899 # noqa: E501 900 901 :param extension_data: The extension_data of this Radio. # noqa: E501 902 :type: ExtensionData 903 """ 904 905 self._extension_data = extension_data 906 907 @property 908 def font(self): 909 """Gets the font of this Radio. # noqa: E501 910 911 The font to be used for the tab value. Supported Fonts: Arial, Arial, ArialNarrow, Calibri, CourierNew, Garamond, Georgia, Helvetica, LucidaConsole, Tahoma, TimesNewRoman, Trebuchet, Verdana, MSGothic, MSMincho, Default. # noqa: E501 912 913 :return: The font of this Radio. # noqa: E501 914 :rtype: str 915 """ 916 return self._font 917 918 @font.setter 919 def font(self, font): 920 """Sets the font of this Radio. 921 922 The font to be used for the tab value. Supported Fonts: Arial, Arial, ArialNarrow, Calibri, CourierNew, Garamond, Georgia, Helvetica, LucidaConsole, Tahoma, TimesNewRoman, Trebuchet, Verdana, MSGothic, MSMincho, Default. # noqa: E501 923 924 :param font: The font of this Radio. # noqa: E501 925 :type: str 926 """ 927 928 self._font = font 929 930 @property 931 def font_color(self): 932 """Gets the font_color of this Radio. # noqa: E501 933 934 The font color used for the information in the tab. Possible values are: Black, BrightBlue, BrightRed, DarkGreen, DarkRed, Gold, Green, NavyBlue, Purple, or White. # noqa: E501 935 936 :return: The font_color of this Radio. # noqa: E501 937 :rtype: str 938 """ 939 return self._font_color 940 941 @font_color.setter 942 def font_color(self, font_color): 943 """Sets the font_color of this Radio. 944 945 The font color used for the information in the tab. Possible values are: Black, BrightBlue, BrightRed, DarkGreen, DarkRed, Gold, Green, NavyBlue, Purple, or White. # noqa: E501 946 947 :param font_color: The font_color of this Radio. # noqa: E501 948 :type: str 949 """ 950 951 self._font_color = font_color 952 953 @property 954 def font_color_metadata(self): 955 """Gets the font_color_metadata of this Radio. # noqa: E501 956 957 Metadata that indicates whether the `fontColor` property is editable. # noqa: E501 958 959 :return: The font_color_metadata of this Radio. # noqa: E501 960 :rtype: PropertyMetadata 961 """ 962 return self._font_color_metadata 963 964 @font_color_metadata.setter 965 def font_color_metadata(self, font_color_metadata): 966 """Sets the font_color_metadata of this Radio. 967 968 Metadata that indicates whether the `fontColor` property is editable. # noqa: E501 969 970 :param font_color_metadata: The font_color_metadata of this Radio. # noqa: E501 971 :type: PropertyMetadata 972 """ 973 974 self._font_color_metadata = font_color_metadata 975 976 @property 977 def font_metadata(self): 978 """Gets the font_metadata of this Radio. # noqa: E501 979 980 Metadata that indicates whether the `font` property is editable. # noqa: E501 981 982 :return: The font_metadata of this Radio. # noqa: E501 983 :rtype: PropertyMetadata 984 """ 985 return self._font_metadata 986 987 @font_metadata.setter 988 def font_metadata(self, font_metadata): 989 """Sets the font_metadata of this Radio. 990 991 Metadata that indicates whether the `font` property is editable. # noqa: E501 992 993 :param font_metadata: The font_metadata of this Radio. # noqa: E501 994 :type: PropertyMetadata 995 """ 996 997 self._font_metadata = font_metadata 998 999 @property 1000 def font_size(self): 1001 """Gets the font_size of this Radio. # noqa: E501 1002 1003 The font size used for the information in the tab. Possible values are: Size7, Size8, Size9, Size10, Size11, Size12, Size14, Size16, Size18, Size20, Size22, Size24, Size26, Size28, Size36, Size48, or Size72. # noqa: E501 1004 1005 :return: The font_size of this Radio. # noqa: E501 1006 :rtype: str 1007 """ 1008 return self._font_size 1009 1010 @font_size.setter 1011 def font_size(self, font_size): 1012 """Sets the font_size of this Radio. 1013 1014 The font size used for the information in the tab. Possible values are: Size7, Size8, Size9, Size10, Size11, Size12, Size14, Size16, Size18, Size20, Size22, Size24, Size26, Size28, Size36, Size48, or Size72. # noqa: E501 1015 1016 :param font_size: The font_size of this Radio. # noqa: E501 1017 :type: str 1018 """ 1019 1020 self._font_size = font_size 1021 1022 @property 1023 def font_size_metadata(self): 1024 """Gets the font_size_metadata of this Radio. # noqa: E501 1025 1026 Metadata that indicates whether the `fontSize` property is editable. # noqa: E501 1027 1028 :return: The font_size_metadata of this Radio. # noqa: E501 1029 :rtype: PropertyMetadata 1030 """ 1031 return self._font_size_metadata 1032 1033 @font_size_metadata.setter 1034 def font_size_metadata(self, font_size_metadata): 1035 """Sets the font_size_metadata of this Radio. 1036 1037 Metadata that indicates whether the `fontSize` property is editable. # noqa: E501 1038 1039 :param font_size_metadata: The font_size_metadata of this Radio. # noqa: E501 1040 :type: PropertyMetadata 1041 """ 1042 1043 self._font_size_metadata = font_size_metadata 1044 1045 @property 1046 def italic(self): 1047 """Gets the italic of this Radio. # noqa: E501 1048 1049 When set to **true**, the information in the tab is italic. # noqa: E501 1050 1051 :return: The italic of this Radio. # noqa: E501 1052 :rtype: str 1053 """ 1054 return self._italic 1055 1056 @italic.setter 1057 def italic(self, italic): 1058 """Sets the italic of this Radio. 1059 1060 When set to **true**, the information in the tab is italic. # noqa: E501 1061 1062 :param italic: The italic of this Radio. # noqa: E501 1063 :type: str 1064 """ 1065 1066 self._italic = italic 1067 1068 @property 1069 def italic_metadata(self): 1070 """Gets the italic_metadata of this Radio. # noqa: E501 1071 1072 Metadata that indicates whether the `italic` property is editable. # noqa: E501 1073 1074 :return: The italic_metadata of this Radio. # noqa: E501 1075 :rtype: PropertyMetadata 1076 """ 1077 return self._italic_metadata 1078 1079 @italic_metadata.setter 1080 def italic_metadata(self, italic_metadata): 1081 """Sets the italic_metadata of this Radio. 1082 1083 Metadata that indicates whether the `italic` property is editable. # noqa: E501 1084 1085 :param italic_metadata: The italic_metadata of this Radio. # noqa: E501 1086 :type: PropertyMetadata 1087 """ 1088 1089 self._italic_metadata = italic_metadata 1090 1091 @property 1092 def locked(self): 1093 """Gets the locked of this Radio. # noqa: E501 1094 1095 When set to **true**, the signer cannot change the data of the custom tab. # noqa: E501 1096 1097 :return: The locked of this Radio. # noqa: E501 1098 :rtype: str 1099 """ 1100 return self._locked 1101 1102 @locked.setter 1103 def locked(self, locked): 1104 """Sets the locked of this Radio. 1105 1106 When set to **true**, the signer cannot change the data of the custom tab. # noqa: E501 1107 1108 :param locked: The locked of this Radio. # noqa: E501 1109 :type: str 1110 """ 1111 1112 self._locked = locked 1113 1114 @property 1115 def locked_metadata(self): 1116 """Gets the locked_metadata of this Radio. # noqa: E501 1117 1118 Metadata that indicates whether the `locked` property is editable. # noqa: E501 1119 1120 :return: The locked_metadata of this Radio. # noqa: E501 1121 :rtype: PropertyMetadata 1122 """ 1123 return self._locked_metadata 1124 1125 @locked_metadata.setter 1126 def locked_metadata(self, locked_metadata): 1127 """Sets the locked_metadata of this Radio. 1128 1129 Metadata that indicates whether the `locked` property is editable. # noqa: E501 1130 1131 :param locked_metadata: The locked_metadata of this Radio. # noqa: E501 1132 :type: PropertyMetadata 1133 """ 1134 1135 self._locked_metadata = locked_metadata 1136 1137 @property 1138 def merge_field_xml(self): 1139 """Gets the merge_field_xml of this Radio. # noqa: E501 1140 1141 # noqa: E501 1142 1143 :return: The merge_field_xml of this Radio. # noqa: E501 1144 :rtype: str 1145 """ 1146 return self._merge_field_xml 1147 1148 @merge_field_xml.setter 1149 def merge_field_xml(self, merge_field_xml): 1150 """Sets the merge_field_xml of this Radio. 1151 1152 # noqa: E501 1153 1154 :param merge_field_xml: The merge_field_xml of this Radio. # noqa: E501 1155 :type: str 1156 """ 1157 1158 self._merge_field_xml = merge_field_xml 1159 1160 @property 1161 def page_number(self): 1162 """Gets the page_number of this Radio. # noqa: E501 1163 1164 Specifies the page number on which the tab is located. # noqa: E501 1165 1166 :return: The page_number of this Radio. # noqa: E501 1167 :rtype: str 1168 """ 1169 return self._page_number 1170 1171 @page_number.setter 1172 def page_number(self, page_number): 1173 """Sets the page_number of this Radio. 1174 1175 Specifies the page number on which the tab is located. # noqa: E501 1176 1177 :param page_number: The page_number of this Radio. # noqa: E501 1178 :type: str 1179 """ 1180 1181 self._page_number = page_number 1182 1183 @property 1184 def page_number_metadata(self): 1185 """Gets the page_number_metadata of this Radio. # noqa: E501 1186 1187 Metadata that indicates whether the `pageNumber` property is editable. # noqa: E501 1188 1189 :return: The page_number_metadata of this Radio. # noqa: E501 1190 :rtype: PropertyMetadata 1191 """ 1192 return self._page_number_metadata 1193 1194 @page_number_metadata.setter 1195 def page_number_metadata(self, page_number_metadata): 1196 """Sets the page_number_metadata of this Radio. 1197 1198 Metadata that indicates whether the `pageNumber` property is editable. # noqa: E501 1199 1200 :param page_number_metadata: The page_number_metadata of this Radio. # noqa: E501 1201 :type: PropertyMetadata 1202 """ 1203 1204 self._page_number_metadata = page_number_metadata 1205 1206 @property 1207 def required(self): 1208 """Gets the required of this Radio. # noqa: E501 1209 1210 When set to **true**, the signer is required to fill out this tab # noqa: E501 1211 1212 :return: The required of this Radio. # noqa: E501 1213 :rtype: str 1214 """ 1215 return self._required 1216 1217 @required.setter 1218 def required(self, required): 1219 """Sets the required of this Radio. 1220 1221 When set to **true**, the signer is required to fill out this tab # noqa: E501 1222 1223 :param required: The required of this Radio. # noqa: E501 1224 :type: str 1225 """ 1226 1227 self._required = required 1228 1229 @property 1230 def required_metadata(self): 1231 """Gets the required_metadata of this Radio. # noqa: E501 1232 1233 Metadata that indicates whether the `required` property is editable. # noqa: E501 1234 1235 :return: The required_metadata of this Radio. # noqa: E501 1236 :rtype: PropertyMetadata 1237 """ 1238 return self._required_metadata 1239 1240 @required_metadata.setter 1241 def required_metadata(self, required_metadata): 1242 """Sets the required_metadata of this Radio. 1243 1244 Metadata that indicates whether the `required` property is editable. # noqa: E501 1245 1246 :param required_metadata: The required_metadata of this Radio. # noqa: E501 1247 :type: PropertyMetadata 1248 """ 1249 1250 self._required_metadata = required_metadata 1251 1252 @property 1253 def selected(self): 1254 """Gets the selected of this Radio. # noqa: E501 1255 1256 When set to **true**, the radio button is selected. # noqa: E501 1257 1258 :return: The selected of this Radio. # noqa: E501 1259 :rtype: str 1260 """ 1261 return self._selected 1262 1263 @selected.setter 1264 def selected(self, selected): 1265 """Sets the selected of this Radio. 1266 1267 When set to **true**, the radio button is selected. # noqa: E501 1268 1269 :param selected: The selected of this Radio. # noqa: E501 1270 :type: str 1271 """ 1272 1273 self._selected = selected 1274 1275 @property 1276 def selected_metadata(self): 1277 """Gets the selected_metadata of this Radio. # noqa: E501 1278 1279 Metadata that indicates whether the `selected` property is editable. # noqa: E501 1280 1281 :return: The selected_metadata of this Radio. # noqa: E501 1282 :rtype: PropertyMetadata 1283 """ 1284 return self._selected_metadata 1285 1286 @selected_metadata.setter 1287 def selected_metadata(self, selected_metadata): 1288 """Sets the selected_metadata of this Radio. 1289 1290 Metadata that indicates whether the `selected` property is editable. # noqa: E501 1291 1292 :param selected_metadata: The selected_metadata of this Radio. # noqa: E501 1293 :type: PropertyMetadata 1294 """ 1295 1296 self._selected_metadata = selected_metadata 1297 1298 @property 1299 def status(self): 1300 """Gets the status of this Radio. # noqa: E501 1301 1302 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 1303 1304 :return: The status of this Radio. # noqa: E501 1305 :rtype: str 1306 """ 1307 return self._status 1308 1309 @status.setter 1310 def status(self, status): 1311 """Sets the status of this Radio. 1312 1313 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 1314 1315 :param status: The status of this Radio. # noqa: E501 1316 :type: str 1317 """ 1318 1319 self._status = status 1320 1321 @property 1322 def status_metadata(self): 1323 """Gets the status_metadata of this Radio. # noqa: E501 1324 1325 Metadata that indicates whether the `status` property is editable. # noqa: E501 1326 1327 :return: The status_metadata of this Radio. # noqa: E501 1328 :rtype: PropertyMetadata 1329 """ 1330 return self._status_metadata 1331 1332 @status_metadata.setter 1333 def status_metadata(self, status_metadata): 1334 """Sets the status_metadata of this Radio. 1335 1336 Metadata that indicates whether the `status` property is editable. # noqa: E501 1337 1338 :param status_metadata: The status_metadata of this Radio. # noqa: E501 1339 :type: PropertyMetadata 1340 """ 1341 1342 self._status_metadata = status_metadata 1343 1344 @property 1345 def tab_fully_qualified_path(self): 1346 """Gets the tab_fully_qualified_path of this Radio. # noqa: E501 1347 1348 # noqa: E501 1349 1350 :return: The tab_fully_qualified_path of this Radio. # noqa: E501 1351 :rtype: str 1352 """ 1353 return self._tab_fully_qualified_path 1354 1355 @tab_fully_qualified_path.setter 1356 def tab_fully_qualified_path(self, tab_fully_qualified_path): 1357 """Sets the tab_fully_qualified_path of this Radio. 1358 1359 # noqa: E501 1360 1361 :param tab_fully_qualified_path: The tab_fully_qualified_path of this Radio. # noqa: E501 1362 :type: str 1363 """ 1364 1365 self._tab_fully_qualified_path = tab_fully_qualified_path 1366 1367 @property 1368 def tab_id(self): 1369 """Gets the tab_id of this Radio. # noqa: E501 1370 1371 The unique identifier for the tab. The tabid can be retrieved with the [ML:GET call]. # noqa: E501 1372 1373 :return: The tab_id of this Radio. # noqa: E501 1374 :rtype: str 1375 """ 1376 return self._tab_id 1377 1378 @tab_id.setter 1379 def tab_id(self, tab_id): 1380 """Sets the tab_id of this Radio. 1381 1382 The unique identifier for the tab. The tabid can be retrieved with the [ML:GET call]. # noqa: E501 1383 1384 :param tab_id: The tab_id of this Radio. # noqa: E501 1385 :type: str 1386 """ 1387 1388 self._tab_id = tab_id 1389 1390 @property 1391 def tab_id_metadata(self): 1392 """Gets the tab_id_metadata of this Radio. # noqa: E501 1393 1394 Metadata that indicates whether the `tabId` property is editable. # noqa: E501 1395 1396 :return: The tab_id_metadata of this Radio. # noqa: E501 1397 :rtype: PropertyMetadata 1398 """ 1399 return self._tab_id_metadata 1400 1401 @tab_id_metadata.setter 1402 def tab_id_metadata(self, tab_id_metadata): 1403 """Sets the tab_id_metadata of this Radio. 1404 1405 Metadata that indicates whether the `tabId` property is editable. # noqa: E501 1406 1407 :param tab_id_metadata: The tab_id_metadata of this Radio. # noqa: E501 1408 :type: PropertyMetadata 1409 """ 1410 1411 self._tab_id_metadata = tab_id_metadata 1412 1413 @property 1414 def tab_order(self): 1415 """Gets the tab_order of this Radio. # noqa: E501 1416 1417 # noqa: E501 1418 1419 :return: The tab_order of this Radio. # noqa: E501 1420 :rtype: str 1421 """ 1422 return self._tab_order 1423 1424 @tab_order.setter 1425 def tab_order(self, tab_order): 1426 """Sets the tab_order of this Radio. 1427 1428 # noqa: E501 1429 1430 :param tab_order: The tab_order of this Radio. # noqa: E501 1431 :type: str 1432 """ 1433 1434 self._tab_order = tab_order 1435 1436 @property 1437 def tab_order_metadata(self): 1438 """Gets the tab_order_metadata of this Radio. # noqa: E501 1439 1440 Metadata that indicates whether the `tabOrder` property is editable. # noqa: E501 1441 1442 :return: The tab_order_metadata of this Radio. # noqa: E501 1443 :rtype: PropertyMetadata 1444 """ 1445 return self._tab_order_metadata 1446 1447 @tab_order_metadata.setter 1448 def tab_order_metadata(self, tab_order_metadata): 1449 """Sets the tab_order_metadata of this Radio. 1450 1451 Metadata that indicates whether the `tabOrder` property is editable. # noqa: E501 1452 1453 :param tab_order_metadata: The tab_order_metadata of this Radio. # noqa: E501 1454 :type: PropertyMetadata 1455 """ 1456 1457 self._tab_order_metadata = tab_order_metadata 1458 1459 @property 1460 def underline(self): 1461 """Gets the underline of this Radio. # noqa: E501 1462 1463 When set to **true**, the information in the tab is underlined. # noqa: E501 1464 1465 :return: The underline of this Radio. # noqa: E501 1466 :rtype: str 1467 """ 1468 return self._underline 1469 1470 @underline.setter 1471 def underline(self, underline): 1472 """Sets the underline of this Radio. 1473 1474 When set to **true**, the information in the tab is underlined. # noqa: E501 1475 1476 :param underline: The underline of this Radio. # noqa: E501 1477 :type: str 1478 """ 1479 1480 self._underline = underline 1481 1482 @property 1483 def underline_metadata(self): 1484 """Gets the underline_metadata of this Radio. # noqa: E501 1485 1486 Metadata that indicates whether the `underline` property is editable. # noqa: E501 1487 1488 :return: The underline_metadata of this Radio. # noqa: E501 1489 :rtype: PropertyMetadata 1490 """ 1491 return self._underline_metadata 1492 1493 @underline_metadata.setter 1494 def underline_metadata(self, underline_metadata): 1495 """Sets the underline_metadata of this Radio. 1496 1497 Metadata that indicates whether the `underline` property is editable. # noqa: E501 1498 1499 :param underline_metadata: The underline_metadata of this Radio. # noqa: E501 1500 :type: PropertyMetadata 1501 """ 1502 1503 self._underline_metadata = underline_metadata 1504 1505 @property 1506 def value(self): 1507 """Gets the value of this Radio. # noqa: E501 1508 1509 Specifies the value of the tab. # noqa: E501 1510 1511 :return: The value of this Radio. # noqa: E501 1512 :rtype: str 1513 """ 1514 return self._value 1515 1516 @value.setter 1517 def value(self, value): 1518 """Sets the value of this Radio. 1519 1520 Specifies the value of the tab. # noqa: E501 1521 1522 :param value: The value of this Radio. # noqa: E501 1523 :type: str 1524 """ 1525 1526 self._value = value 1527 1528 @property 1529 def value_metadata(self): 1530 """Gets the value_metadata of this Radio. # noqa: E501 1531 1532 Metadata that indicates whether the `value` property is editable. # noqa: E501 1533 1534 :return: The value_metadata of this Radio. # noqa: E501 1535 :rtype: PropertyMetadata 1536 """ 1537 return self._value_metadata 1538 1539 @value_metadata.setter 1540 def value_metadata(self, value_metadata): 1541 """Sets the value_metadata of this Radio. 1542 1543 Metadata that indicates whether the `value` property is editable. # noqa: E501 1544 1545 :param value_metadata: The value_metadata of this Radio. # noqa: E501 1546 :type: PropertyMetadata 1547 """ 1548 1549 self._value_metadata = value_metadata 1550 1551 @property 1552 def x_position(self): 1553 """Gets the x_position of this Radio. # noqa: E501 1554 1555 This indicates the horizontal offset of the object on the page. DocuSign uses 72 DPI when determining position. # noqa: E501 1556 1557 :return: The x_position of this Radio. # noqa: E501 1558 :rtype: str 1559 """ 1560 return self._x_position 1561 1562 @x_position.setter 1563 def x_position(self, x_position): 1564 """Sets the x_position of this Radio. 1565 1566 This indicates the horizontal offset of the object on the page. DocuSign uses 72 DPI when determining position. # noqa: E501 1567 1568 :param x_position: The x_position of this Radio. # noqa: E501 1569 :type: str 1570 """ 1571 1572 self._x_position = x_position 1573 1574 @property 1575 def x_position_metadata(self): 1576 """Gets the x_position_metadata of this Radio. # noqa: E501 1577 1578 Metadata that indicates whether the `xPosition` property is editable. # noqa: E501 1579 1580 :return: The x_position_metadata of this Radio. # noqa: E501 1581 :rtype: PropertyMetadata 1582 """ 1583 return self._x_position_metadata 1584 1585 @x_position_metadata.setter 1586 def x_position_metadata(self, x_position_metadata): 1587 """Sets the x_position_metadata of this Radio. 1588 1589 Metadata that indicates whether the `xPosition` property is editable. # noqa: E501 1590 1591 :param x_position_metadata: The x_position_metadata of this Radio. # noqa: E501 1592 :type: PropertyMetadata 1593 """ 1594 1595 self._x_position_metadata = x_position_metadata 1596 1597 @property 1598 def y_position(self): 1599 """Gets the y_position of this Radio. # noqa: E501 1600 1601 This indicates the vertical offset of the object on the page. DocuSign uses 72 DPI when determining position. # noqa: E501 1602 1603 :return: The y_position of this Radio. # noqa: E501 1604 :rtype: str 1605 """ 1606 return self._y_position 1607 1608 @y_position.setter 1609 def y_position(self, y_position): 1610 """Sets the y_position of this Radio. 1611 1612 This indicates the vertical offset of the object on the page. DocuSign uses 72 DPI when determining position. # noqa: E501 1613 1614 :param y_position: The y_position of this Radio. # noqa: E501 1615 :type: str 1616 """ 1617 1618 self._y_position = y_position 1619 1620 @property 1621 def y_position_metadata(self): 1622 """Gets the y_position_metadata of this Radio. # noqa: E501 1623 1624 Metadata that indicates whether the `yPosition` property is editable. # noqa: E501 1625 1626 :return: The y_position_metadata of this Radio. # noqa: E501 1627 :rtype: PropertyMetadata 1628 """ 1629 return self._y_position_metadata 1630 1631 @y_position_metadata.setter 1632 def y_position_metadata(self, y_position_metadata): 1633 """Sets the y_position_metadata of this Radio. 1634 1635 Metadata that indicates whether the `yPosition` property is editable. # noqa: E501 1636 1637 :param y_position_metadata: The y_position_metadata of this Radio. # noqa: E501 1638 :type: PropertyMetadata 1639 """ 1640 1641 self._y_position_metadata = y_position_metadata 1642 1643 def to_dict(self): 1644 """Returns the model properties as a dict""" 1645 result = {} 1646 1647 for attr, _ in six.iteritems(self.swagger_types): 1648 value = getattr(self, attr) 1649 if isinstance(value, list): 1650 result[attr] = list(map( 1651 lambda x: x.to_dict() if hasattr(x, "to_dict") else x, 1652 value 1653 )) 1654 elif hasattr(value, "to_dict"): 1655 result[attr] = value.to_dict() 1656 elif isinstance(value, dict): 1657 result[attr] = dict(map( 1658 lambda item: (item[0], item[1].to_dict()) 1659 if hasattr(item[1], "to_dict") else item, 1660 value.items() 1661 )) 1662 else: 1663 result[attr] = value 1664 if issubclass(Radio, dict): 1665 for key, value in self.items(): 1666 result[key] = value 1667 1668 return result 1669 1670 def to_str(self): 1671 """Returns the string representation of the model""" 1672 return pprint.pformat(self.to_dict()) 1673 1674 def __repr__(self): 1675 """For `print` and `pprint`""" 1676 return self.to_str() 1677 1678 def __eq__(self, other): 1679 """Returns true if both objects are equal""" 1680 if not isinstance(other, Radio): 1681 return False 1682 1683 return self.to_dict() == other.to_dict() 1684 1685 def __ne__(self, other): 1686 """Returns true if both objects are not equal""" 1687 if not isinstance(other, Radio): 1688 return True 1689 1690 return self.to_dict() != other.to_dict()
23class Radio(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 '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 'bold': 'str', 58 'bold_metadata': 'PropertyMetadata', 59 'caption': 'str', 60 'caption_metadata': 'PropertyMetadata', 61 'connected_object_details': 'ConnectedObjectDetails', 62 'error_details': 'ErrorDetails', 63 'extension_data': 'ExtensionData', 64 'font': 'str', 65 'font_color': 'str', 66 'font_color_metadata': 'PropertyMetadata', 67 'font_metadata': 'PropertyMetadata', 68 'font_size': 'str', 69 'font_size_metadata': 'PropertyMetadata', 70 'italic': 'str', 71 'italic_metadata': 'PropertyMetadata', 72 'locked': 'str', 73 'locked_metadata': 'PropertyMetadata', 74 'merge_field_xml': 'str', 75 'page_number': 'str', 76 'page_number_metadata': 'PropertyMetadata', 77 'required': 'str', 78 'required_metadata': 'PropertyMetadata', 79 'selected': 'str', 80 'selected_metadata': 'PropertyMetadata', 81 'status': 'str', 82 'status_metadata': 'PropertyMetadata', 83 'tab_fully_qualified_path': 'str', 84 'tab_id': 'str', 85 'tab_id_metadata': 'PropertyMetadata', 86 'tab_order': 'str', 87 'tab_order_metadata': 'PropertyMetadata', 88 'underline': 'str', 89 'underline_metadata': 'PropertyMetadata', 90 'value': 'str', 91 'value_metadata': 'PropertyMetadata', 92 'x_position': 'str', 93 'x_position_metadata': 'PropertyMetadata', 94 'y_position': 'str', 95 'y_position_metadata': 'PropertyMetadata' 96 } 97 98 attribute_map = { 99 'anchor_allow_white_space_in_characters': 'anchorAllowWhiteSpaceInCharacters', 100 'anchor_allow_white_space_in_characters_metadata': 'anchorAllowWhiteSpaceInCharactersMetadata', 101 'anchor_case_sensitive': 'anchorCaseSensitive', 102 'anchor_case_sensitive_metadata': 'anchorCaseSensitiveMetadata', 103 'anchor_horizontal_alignment': 'anchorHorizontalAlignment', 104 'anchor_horizontal_alignment_metadata': 'anchorHorizontalAlignmentMetadata', 105 'anchor_ignore_if_not_present': 'anchorIgnoreIfNotPresent', 106 'anchor_ignore_if_not_present_metadata': 'anchorIgnoreIfNotPresentMetadata', 107 'anchor_match_whole_word': 'anchorMatchWholeWord', 108 'anchor_match_whole_word_metadata': 'anchorMatchWholeWordMetadata', 109 'anchor_string': 'anchorString', 110 'anchor_string_metadata': 'anchorStringMetadata', 111 'anchor_tab_processor_version': 'anchorTabProcessorVersion', 112 'anchor_tab_processor_version_metadata': 'anchorTabProcessorVersionMetadata', 113 'anchor_units': 'anchorUnits', 114 'anchor_units_metadata': 'anchorUnitsMetadata', 115 'anchor_x_offset': 'anchorXOffset', 116 'anchor_x_offset_metadata': 'anchorXOffsetMetadata', 117 'anchor_y_offset': 'anchorYOffset', 118 'anchor_y_offset_metadata': 'anchorYOffsetMetadata', 119 'bold': 'bold', 120 'bold_metadata': 'boldMetadata', 121 'caption': 'caption', 122 'caption_metadata': 'captionMetadata', 123 'connected_object_details': 'connectedObjectDetails', 124 'error_details': 'errorDetails', 125 'extension_data': 'extensionData', 126 'font': 'font', 127 'font_color': 'fontColor', 128 'font_color_metadata': 'fontColorMetadata', 129 'font_metadata': 'fontMetadata', 130 'font_size': 'fontSize', 131 'font_size_metadata': 'fontSizeMetadata', 132 'italic': 'italic', 133 'italic_metadata': 'italicMetadata', 134 'locked': 'locked', 135 'locked_metadata': 'lockedMetadata', 136 'merge_field_xml': 'mergeFieldXml', 137 'page_number': 'pageNumber', 138 'page_number_metadata': 'pageNumberMetadata', 139 'required': 'required', 140 'required_metadata': 'requiredMetadata', 141 'selected': 'selected', 142 'selected_metadata': 'selectedMetadata', 143 'status': 'status', 144 'status_metadata': 'statusMetadata', 145 'tab_fully_qualified_path': 'tabFullyQualifiedPath', 146 'tab_id': 'tabId', 147 'tab_id_metadata': 'tabIdMetadata', 148 'tab_order': 'tabOrder', 149 'tab_order_metadata': 'tabOrderMetadata', 150 'underline': 'underline', 151 'underline_metadata': 'underlineMetadata', 152 'value': 'value', 153 'value_metadata': 'valueMetadata', 154 'x_position': 'xPosition', 155 'x_position_metadata': 'xPositionMetadata', 156 'y_position': 'yPosition', 157 'y_position_metadata': 'yPositionMetadata' 158 } 159 160 def __init__(self, _configuration=None, **kwargs): # noqa: E501 161 """Radio - a model defined in Swagger""" # noqa: E501 162 if _configuration is None: 163 _configuration = Configuration() 164 self._configuration = _configuration 165 166 self._anchor_allow_white_space_in_characters = None 167 self._anchor_allow_white_space_in_characters_metadata = None 168 self._anchor_case_sensitive = None 169 self._anchor_case_sensitive_metadata = None 170 self._anchor_horizontal_alignment = None 171 self._anchor_horizontal_alignment_metadata = None 172 self._anchor_ignore_if_not_present = None 173 self._anchor_ignore_if_not_present_metadata = None 174 self._anchor_match_whole_word = None 175 self._anchor_match_whole_word_metadata = None 176 self._anchor_string = None 177 self._anchor_string_metadata = None 178 self._anchor_tab_processor_version = None 179 self._anchor_tab_processor_version_metadata = None 180 self._anchor_units = None 181 self._anchor_units_metadata = None 182 self._anchor_x_offset = None 183 self._anchor_x_offset_metadata = None 184 self._anchor_y_offset = None 185 self._anchor_y_offset_metadata = None 186 self._bold = None 187 self._bold_metadata = None 188 self._caption = None 189 self._caption_metadata = None 190 self._connected_object_details = None 191 self._error_details = None 192 self._extension_data = None 193 self._font = None 194 self._font_color = None 195 self._font_color_metadata = None 196 self._font_metadata = None 197 self._font_size = None 198 self._font_size_metadata = None 199 self._italic = None 200 self._italic_metadata = None 201 self._locked = None 202 self._locked_metadata = None 203 self._merge_field_xml = None 204 self._page_number = None 205 self._page_number_metadata = None 206 self._required = None 207 self._required_metadata = None 208 self._selected = None 209 self._selected_metadata = None 210 self._status = None 211 self._status_metadata = None 212 self._tab_fully_qualified_path = None 213 self._tab_id = None 214 self._tab_id_metadata = None 215 self._tab_order = None 216 self._tab_order_metadata = None 217 self._underline = None 218 self._underline_metadata = None 219 self._value = None 220 self._value_metadata = None 221 self._x_position = None 222 self._x_position_metadata = None 223 self._y_position = None 224 self._y_position_metadata = None 225 self.discriminator = None 226 227 setattr(self, "_{}".format('anchor_allow_white_space_in_characters'), kwargs.get('anchor_allow_white_space_in_characters', None)) 228 setattr(self, "_{}".format('anchor_allow_white_space_in_characters_metadata'), kwargs.get('anchor_allow_white_space_in_characters_metadata', None)) 229 setattr(self, "_{}".format('anchor_case_sensitive'), kwargs.get('anchor_case_sensitive', None)) 230 setattr(self, "_{}".format('anchor_case_sensitive_metadata'), kwargs.get('anchor_case_sensitive_metadata', None)) 231 setattr(self, "_{}".format('anchor_horizontal_alignment'), kwargs.get('anchor_horizontal_alignment', None)) 232 setattr(self, "_{}".format('anchor_horizontal_alignment_metadata'), kwargs.get('anchor_horizontal_alignment_metadata', None)) 233 setattr(self, "_{}".format('anchor_ignore_if_not_present'), kwargs.get('anchor_ignore_if_not_present', None)) 234 setattr(self, "_{}".format('anchor_ignore_if_not_present_metadata'), kwargs.get('anchor_ignore_if_not_present_metadata', None)) 235 setattr(self, "_{}".format('anchor_match_whole_word'), kwargs.get('anchor_match_whole_word', None)) 236 setattr(self, "_{}".format('anchor_match_whole_word_metadata'), kwargs.get('anchor_match_whole_word_metadata', None)) 237 setattr(self, "_{}".format('anchor_string'), kwargs.get('anchor_string', None)) 238 setattr(self, "_{}".format('anchor_string_metadata'), kwargs.get('anchor_string_metadata', None)) 239 setattr(self, "_{}".format('anchor_tab_processor_version'), kwargs.get('anchor_tab_processor_version', None)) 240 setattr(self, "_{}".format('anchor_tab_processor_version_metadata'), kwargs.get('anchor_tab_processor_version_metadata', None)) 241 setattr(self, "_{}".format('anchor_units'), kwargs.get('anchor_units', None)) 242 setattr(self, "_{}".format('anchor_units_metadata'), kwargs.get('anchor_units_metadata', None)) 243 setattr(self, "_{}".format('anchor_x_offset'), kwargs.get('anchor_x_offset', None)) 244 setattr(self, "_{}".format('anchor_x_offset_metadata'), kwargs.get('anchor_x_offset_metadata', None)) 245 setattr(self, "_{}".format('anchor_y_offset'), kwargs.get('anchor_y_offset', None)) 246 setattr(self, "_{}".format('anchor_y_offset_metadata'), kwargs.get('anchor_y_offset_metadata', None)) 247 setattr(self, "_{}".format('bold'), kwargs.get('bold', None)) 248 setattr(self, "_{}".format('bold_metadata'), kwargs.get('bold_metadata', None)) 249 setattr(self, "_{}".format('caption'), kwargs.get('caption', None)) 250 setattr(self, "_{}".format('caption_metadata'), kwargs.get('caption_metadata', None)) 251 setattr(self, "_{}".format('connected_object_details'), kwargs.get('connected_object_details', None)) 252 setattr(self, "_{}".format('error_details'), kwargs.get('error_details', None)) 253 setattr(self, "_{}".format('extension_data'), kwargs.get('extension_data', None)) 254 setattr(self, "_{}".format('font'), kwargs.get('font', None)) 255 setattr(self, "_{}".format('font_color'), kwargs.get('font_color', None)) 256 setattr(self, "_{}".format('font_color_metadata'), kwargs.get('font_color_metadata', None)) 257 setattr(self, "_{}".format('font_metadata'), kwargs.get('font_metadata', None)) 258 setattr(self, "_{}".format('font_size'), kwargs.get('font_size', None)) 259 setattr(self, "_{}".format('font_size_metadata'), kwargs.get('font_size_metadata', None)) 260 setattr(self, "_{}".format('italic'), kwargs.get('italic', None)) 261 setattr(self, "_{}".format('italic_metadata'), kwargs.get('italic_metadata', None)) 262 setattr(self, "_{}".format('locked'), kwargs.get('locked', None)) 263 setattr(self, "_{}".format('locked_metadata'), kwargs.get('locked_metadata', None)) 264 setattr(self, "_{}".format('merge_field_xml'), kwargs.get('merge_field_xml', None)) 265 setattr(self, "_{}".format('page_number'), kwargs.get('page_number', None)) 266 setattr(self, "_{}".format('page_number_metadata'), kwargs.get('page_number_metadata', None)) 267 setattr(self, "_{}".format('required'), kwargs.get('required', None)) 268 setattr(self, "_{}".format('required_metadata'), kwargs.get('required_metadata', None)) 269 setattr(self, "_{}".format('selected'), kwargs.get('selected', None)) 270 setattr(self, "_{}".format('selected_metadata'), kwargs.get('selected_metadata', None)) 271 setattr(self, "_{}".format('status'), kwargs.get('status', None)) 272 setattr(self, "_{}".format('status_metadata'), kwargs.get('status_metadata', None)) 273 setattr(self, "_{}".format('tab_fully_qualified_path'), kwargs.get('tab_fully_qualified_path', None)) 274 setattr(self, "_{}".format('tab_id'), kwargs.get('tab_id', None)) 275 setattr(self, "_{}".format('tab_id_metadata'), kwargs.get('tab_id_metadata', None)) 276 setattr(self, "_{}".format('tab_order'), kwargs.get('tab_order', None)) 277 setattr(self, "_{}".format('tab_order_metadata'), kwargs.get('tab_order_metadata', None)) 278 setattr(self, "_{}".format('underline'), kwargs.get('underline', None)) 279 setattr(self, "_{}".format('underline_metadata'), kwargs.get('underline_metadata', None)) 280 setattr(self, "_{}".format('value'), kwargs.get('value', None)) 281 setattr(self, "_{}".format('value_metadata'), kwargs.get('value_metadata', None)) 282 setattr(self, "_{}".format('x_position'), kwargs.get('x_position', None)) 283 setattr(self, "_{}".format('x_position_metadata'), kwargs.get('x_position_metadata', None)) 284 setattr(self, "_{}".format('y_position'), kwargs.get('y_position', None)) 285 setattr(self, "_{}".format('y_position_metadata'), kwargs.get('y_position_metadata', None)) 286 287 @property 288 def anchor_allow_white_space_in_characters(self): 289 """Gets the anchor_allow_white_space_in_characters of this Radio. # noqa: E501 290 291 # noqa: E501 292 293 :return: The anchor_allow_white_space_in_characters of this Radio. # noqa: E501 294 :rtype: str 295 """ 296 return self._anchor_allow_white_space_in_characters 297 298 @anchor_allow_white_space_in_characters.setter 299 def anchor_allow_white_space_in_characters(self, anchor_allow_white_space_in_characters): 300 """Sets the anchor_allow_white_space_in_characters of this Radio. 301 302 # noqa: E501 303 304 :param anchor_allow_white_space_in_characters: The anchor_allow_white_space_in_characters of this Radio. # noqa: E501 305 :type: str 306 """ 307 308 self._anchor_allow_white_space_in_characters = anchor_allow_white_space_in_characters 309 310 @property 311 def anchor_allow_white_space_in_characters_metadata(self): 312 """Gets the anchor_allow_white_space_in_characters_metadata of this Radio. # noqa: E501 313 314 Metadata that indicates whether the `anchorAllowWhiteSpaceInCharacters` property is editable. # noqa: E501 315 316 :return: The anchor_allow_white_space_in_characters_metadata of this Radio. # noqa: E501 317 :rtype: PropertyMetadata 318 """ 319 return self._anchor_allow_white_space_in_characters_metadata 320 321 @anchor_allow_white_space_in_characters_metadata.setter 322 def anchor_allow_white_space_in_characters_metadata(self, anchor_allow_white_space_in_characters_metadata): 323 """Sets the anchor_allow_white_space_in_characters_metadata of this Radio. 324 325 Metadata that indicates whether the `anchorAllowWhiteSpaceInCharacters` property is editable. # noqa: E501 326 327 :param anchor_allow_white_space_in_characters_metadata: The anchor_allow_white_space_in_characters_metadata of this Radio. # noqa: E501 328 :type: PropertyMetadata 329 """ 330 331 self._anchor_allow_white_space_in_characters_metadata = anchor_allow_white_space_in_characters_metadata 332 333 @property 334 def anchor_case_sensitive(self): 335 """Gets the anchor_case_sensitive of this Radio. # noqa: E501 336 337 When set to **true**, the anchor string does not consider case when matching strings in the document. The default value is **true**. # noqa: E501 338 339 :return: The anchor_case_sensitive of this Radio. # noqa: E501 340 :rtype: str 341 """ 342 return self._anchor_case_sensitive 343 344 @anchor_case_sensitive.setter 345 def anchor_case_sensitive(self, anchor_case_sensitive): 346 """Sets the anchor_case_sensitive of this Radio. 347 348 When set to **true**, the anchor string does not consider case when matching strings in the document. The default value is **true**. # noqa: E501 349 350 :param anchor_case_sensitive: The anchor_case_sensitive of this Radio. # noqa: E501 351 :type: str 352 """ 353 354 self._anchor_case_sensitive = anchor_case_sensitive 355 356 @property 357 def anchor_case_sensitive_metadata(self): 358 """Gets the anchor_case_sensitive_metadata of this Radio. # noqa: E501 359 360 Metadata that indicates whether the `anchorCaseSensitive` property is editable. # noqa: E501 361 362 :return: The anchor_case_sensitive_metadata of this Radio. # noqa: E501 363 :rtype: PropertyMetadata 364 """ 365 return self._anchor_case_sensitive_metadata 366 367 @anchor_case_sensitive_metadata.setter 368 def anchor_case_sensitive_metadata(self, anchor_case_sensitive_metadata): 369 """Sets the anchor_case_sensitive_metadata of this Radio. 370 371 Metadata that indicates whether the `anchorCaseSensitive` property is editable. # noqa: E501 372 373 :param anchor_case_sensitive_metadata: The anchor_case_sensitive_metadata of this Radio. # noqa: E501 374 :type: PropertyMetadata 375 """ 376 377 self._anchor_case_sensitive_metadata = anchor_case_sensitive_metadata 378 379 @property 380 def anchor_horizontal_alignment(self): 381 """Gets the anchor_horizontal_alignment of this Radio. # noqa: E501 382 383 Specifies the alignment of anchor tabs with anchor strings. Possible values are **left** or **right**. The default value is **left**. # noqa: E501 384 385 :return: The anchor_horizontal_alignment of this Radio. # noqa: E501 386 :rtype: str 387 """ 388 return self._anchor_horizontal_alignment 389 390 @anchor_horizontal_alignment.setter 391 def anchor_horizontal_alignment(self, anchor_horizontal_alignment): 392 """Sets the anchor_horizontal_alignment of this Radio. 393 394 Specifies the alignment of anchor tabs with anchor strings. Possible values are **left** or **right**. The default value is **left**. # noqa: E501 395 396 :param anchor_horizontal_alignment: The anchor_horizontal_alignment of this Radio. # noqa: E501 397 :type: str 398 """ 399 400 self._anchor_horizontal_alignment = anchor_horizontal_alignment 401 402 @property 403 def anchor_horizontal_alignment_metadata(self): 404 """Gets the anchor_horizontal_alignment_metadata of this Radio. # noqa: E501 405 406 Metadata that indicates whether the `anchorHorizontalAlignment` property is editable. # noqa: E501 407 408 :return: The anchor_horizontal_alignment_metadata of this Radio. # noqa: E501 409 :rtype: PropertyMetadata 410 """ 411 return self._anchor_horizontal_alignment_metadata 412 413 @anchor_horizontal_alignment_metadata.setter 414 def anchor_horizontal_alignment_metadata(self, anchor_horizontal_alignment_metadata): 415 """Sets the anchor_horizontal_alignment_metadata of this Radio. 416 417 Metadata that indicates whether the `anchorHorizontalAlignment` property is editable. # noqa: E501 418 419 :param anchor_horizontal_alignment_metadata: The anchor_horizontal_alignment_metadata of this Radio. # noqa: E501 420 :type: PropertyMetadata 421 """ 422 423 self._anchor_horizontal_alignment_metadata = anchor_horizontal_alignment_metadata 424 425 @property 426 def anchor_ignore_if_not_present(self): 427 """Gets the anchor_ignore_if_not_present of this Radio. # noqa: E501 428 429 When set to **true**, this tab is ignored if anchorString is not found in the document. # noqa: E501 430 431 :return: The anchor_ignore_if_not_present of this Radio. # noqa: E501 432 :rtype: str 433 """ 434 return self._anchor_ignore_if_not_present 435 436 @anchor_ignore_if_not_present.setter 437 def anchor_ignore_if_not_present(self, anchor_ignore_if_not_present): 438 """Sets the anchor_ignore_if_not_present of this Radio. 439 440 When set to **true**, this tab is ignored if anchorString is not found in the document. # noqa: E501 441 442 :param anchor_ignore_if_not_present: The anchor_ignore_if_not_present of this Radio. # noqa: E501 443 :type: str 444 """ 445 446 self._anchor_ignore_if_not_present = anchor_ignore_if_not_present 447 448 @property 449 def anchor_ignore_if_not_present_metadata(self): 450 """Gets the anchor_ignore_if_not_present_metadata of this Radio. # noqa: E501 451 452 Metadata that indicates whether the `anchorIgnoreIfNotPresent` property is editable. # noqa: E501 453 454 :return: The anchor_ignore_if_not_present_metadata of this Radio. # noqa: E501 455 :rtype: PropertyMetadata 456 """ 457 return self._anchor_ignore_if_not_present_metadata 458 459 @anchor_ignore_if_not_present_metadata.setter 460 def anchor_ignore_if_not_present_metadata(self, anchor_ignore_if_not_present_metadata): 461 """Sets the anchor_ignore_if_not_present_metadata of this Radio. 462 463 Metadata that indicates whether the `anchorIgnoreIfNotPresent` property is editable. # noqa: E501 464 465 :param anchor_ignore_if_not_present_metadata: The anchor_ignore_if_not_present_metadata of this Radio. # noqa: E501 466 :type: PropertyMetadata 467 """ 468 469 self._anchor_ignore_if_not_present_metadata = anchor_ignore_if_not_present_metadata 470 471 @property 472 def anchor_match_whole_word(self): 473 """Gets the anchor_match_whole_word of this Radio. # noqa: E501 474 475 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 476 477 :return: The anchor_match_whole_word of this Radio. # noqa: E501 478 :rtype: str 479 """ 480 return self._anchor_match_whole_word 481 482 @anchor_match_whole_word.setter 483 def anchor_match_whole_word(self, anchor_match_whole_word): 484 """Sets the anchor_match_whole_word of this Radio. 485 486 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 487 488 :param anchor_match_whole_word: The anchor_match_whole_word of this Radio. # noqa: E501 489 :type: str 490 """ 491 492 self._anchor_match_whole_word = anchor_match_whole_word 493 494 @property 495 def anchor_match_whole_word_metadata(self): 496 """Gets the anchor_match_whole_word_metadata of this Radio. # noqa: E501 497 498 Metadata that indicates whether the `anchorMatchWholeWord` property is editable. # noqa: E501 499 500 :return: The anchor_match_whole_word_metadata of this Radio. # noqa: E501 501 :rtype: PropertyMetadata 502 """ 503 return self._anchor_match_whole_word_metadata 504 505 @anchor_match_whole_word_metadata.setter 506 def anchor_match_whole_word_metadata(self, anchor_match_whole_word_metadata): 507 """Sets the anchor_match_whole_word_metadata of this Radio. 508 509 Metadata that indicates whether the `anchorMatchWholeWord` property is editable. # noqa: E501 510 511 :param anchor_match_whole_word_metadata: The anchor_match_whole_word_metadata of this Radio. # noqa: E501 512 :type: PropertyMetadata 513 """ 514 515 self._anchor_match_whole_word_metadata = anchor_match_whole_word_metadata 516 517 @property 518 def anchor_string(self): 519 """Gets the anchor_string of this Radio. # noqa: E501 520 521 Anchor text information for a radio button. # noqa: E501 522 523 :return: The anchor_string of this Radio. # noqa: E501 524 :rtype: str 525 """ 526 return self._anchor_string 527 528 @anchor_string.setter 529 def anchor_string(self, anchor_string): 530 """Sets the anchor_string of this Radio. 531 532 Anchor text information for a radio button. # noqa: E501 533 534 :param anchor_string: The anchor_string of this Radio. # noqa: E501 535 :type: str 536 """ 537 538 self._anchor_string = anchor_string 539 540 @property 541 def anchor_string_metadata(self): 542 """Gets the anchor_string_metadata of this Radio. # noqa: E501 543 544 Metadata that indicates whether the `anchorString` property is editable. # noqa: E501 545 546 :return: The anchor_string_metadata of this Radio. # noqa: E501 547 :rtype: PropertyMetadata 548 """ 549 return self._anchor_string_metadata 550 551 @anchor_string_metadata.setter 552 def anchor_string_metadata(self, anchor_string_metadata): 553 """Sets the anchor_string_metadata of this Radio. 554 555 Metadata that indicates whether the `anchorString` property is editable. # noqa: E501 556 557 :param anchor_string_metadata: The anchor_string_metadata of this Radio. # noqa: E501 558 :type: PropertyMetadata 559 """ 560 561 self._anchor_string_metadata = anchor_string_metadata 562 563 @property 564 def anchor_tab_processor_version(self): 565 """Gets the anchor_tab_processor_version of this Radio. # noqa: E501 566 567 # noqa: E501 568 569 :return: The anchor_tab_processor_version of this Radio. # noqa: E501 570 :rtype: str 571 """ 572 return self._anchor_tab_processor_version 573 574 @anchor_tab_processor_version.setter 575 def anchor_tab_processor_version(self, anchor_tab_processor_version): 576 """Sets the anchor_tab_processor_version of this Radio. 577 578 # noqa: E501 579 580 :param anchor_tab_processor_version: The anchor_tab_processor_version of this Radio. # noqa: E501 581 :type: str 582 """ 583 584 self._anchor_tab_processor_version = anchor_tab_processor_version 585 586 @property 587 def anchor_tab_processor_version_metadata(self): 588 """Gets the anchor_tab_processor_version_metadata of this Radio. # noqa: E501 589 590 Reserved for DocuSign. # noqa: E501 591 592 :return: The anchor_tab_processor_version_metadata of this Radio. # noqa: E501 593 :rtype: PropertyMetadata 594 """ 595 return self._anchor_tab_processor_version_metadata 596 597 @anchor_tab_processor_version_metadata.setter 598 def anchor_tab_processor_version_metadata(self, anchor_tab_processor_version_metadata): 599 """Sets the anchor_tab_processor_version_metadata of this Radio. 600 601 Reserved for DocuSign. # noqa: E501 602 603 :param anchor_tab_processor_version_metadata: The anchor_tab_processor_version_metadata of this Radio. # noqa: E501 604 :type: PropertyMetadata 605 """ 606 607 self._anchor_tab_processor_version_metadata = anchor_tab_processor_version_metadata 608 609 @property 610 def anchor_units(self): 611 """Gets the anchor_units of this Radio. # noqa: E501 612 613 Specifies units of the X and Y offset. Units could be pixels, millimeters, centimeters, or inches. # noqa: E501 614 615 :return: The anchor_units of this Radio. # noqa: E501 616 :rtype: str 617 """ 618 return self._anchor_units 619 620 @anchor_units.setter 621 def anchor_units(self, anchor_units): 622 """Sets the anchor_units of this Radio. 623 624 Specifies units of the X and Y offset. Units could be pixels, millimeters, centimeters, or inches. # noqa: E501 625 626 :param anchor_units: The anchor_units of this Radio. # noqa: E501 627 :type: str 628 """ 629 630 self._anchor_units = anchor_units 631 632 @property 633 def anchor_units_metadata(self): 634 """Gets the anchor_units_metadata of this Radio. # noqa: E501 635 636 Metadata that indicates whether the `anchorUnits` property is editable. # noqa: E501 637 638 :return: The anchor_units_metadata of this Radio. # noqa: E501 639 :rtype: PropertyMetadata 640 """ 641 return self._anchor_units_metadata 642 643 @anchor_units_metadata.setter 644 def anchor_units_metadata(self, anchor_units_metadata): 645 """Sets the anchor_units_metadata of this Radio. 646 647 Metadata that indicates whether the `anchorUnits` property is editable. # noqa: E501 648 649 :param anchor_units_metadata: The anchor_units_metadata of this Radio. # noqa: E501 650 :type: PropertyMetadata 651 """ 652 653 self._anchor_units_metadata = anchor_units_metadata 654 655 @property 656 def anchor_x_offset(self): 657 """Gets the anchor_x_offset of this Radio. # noqa: E501 658 659 Specifies the X axis location of the tab, in anchorUnits, relative to the anchorString. # noqa: E501 660 661 :return: The anchor_x_offset of this Radio. # noqa: E501 662 :rtype: str 663 """ 664 return self._anchor_x_offset 665 666 @anchor_x_offset.setter 667 def anchor_x_offset(self, anchor_x_offset): 668 """Sets the anchor_x_offset of this Radio. 669 670 Specifies the X axis location of the tab, in anchorUnits, relative to the anchorString. # noqa: E501 671 672 :param anchor_x_offset: The anchor_x_offset of this Radio. # noqa: E501 673 :type: str 674 """ 675 676 self._anchor_x_offset = anchor_x_offset 677 678 @property 679 def anchor_x_offset_metadata(self): 680 """Gets the anchor_x_offset_metadata of this Radio. # noqa: E501 681 682 Metadata that indicates whether the `anchorXOffset` property is editable. # noqa: E501 683 684 :return: The anchor_x_offset_metadata of this Radio. # noqa: E501 685 :rtype: PropertyMetadata 686 """ 687 return self._anchor_x_offset_metadata 688 689 @anchor_x_offset_metadata.setter 690 def anchor_x_offset_metadata(self, anchor_x_offset_metadata): 691 """Sets the anchor_x_offset_metadata of this Radio. 692 693 Metadata that indicates whether the `anchorXOffset` property is editable. # noqa: E501 694 695 :param anchor_x_offset_metadata: The anchor_x_offset_metadata of this Radio. # noqa: E501 696 :type: PropertyMetadata 697 """ 698 699 self._anchor_x_offset_metadata = anchor_x_offset_metadata 700 701 @property 702 def anchor_y_offset(self): 703 """Gets the anchor_y_offset of this Radio. # noqa: E501 704 705 Specifies the Y axis location of the tab, in anchorUnits, relative to the anchorString. # noqa: E501 706 707 :return: The anchor_y_offset of this Radio. # noqa: E501 708 :rtype: str 709 """ 710 return self._anchor_y_offset 711 712 @anchor_y_offset.setter 713 def anchor_y_offset(self, anchor_y_offset): 714 """Sets the anchor_y_offset of this Radio. 715 716 Specifies the Y axis location of the tab, in anchorUnits, relative to the anchorString. # noqa: E501 717 718 :param anchor_y_offset: The anchor_y_offset of this Radio. # noqa: E501 719 :type: str 720 """ 721 722 self._anchor_y_offset = anchor_y_offset 723 724 @property 725 def anchor_y_offset_metadata(self): 726 """Gets the anchor_y_offset_metadata of this Radio. # noqa: E501 727 728 Metadata that indicates whether the `anchorYOffset` property is editable. # noqa: E501 729 730 :return: The anchor_y_offset_metadata of this Radio. # noqa: E501 731 :rtype: PropertyMetadata 732 """ 733 return self._anchor_y_offset_metadata 734 735 @anchor_y_offset_metadata.setter 736 def anchor_y_offset_metadata(self, anchor_y_offset_metadata): 737 """Sets the anchor_y_offset_metadata of this Radio. 738 739 Metadata that indicates whether the `anchorYOffset` property is editable. # noqa: E501 740 741 :param anchor_y_offset_metadata: The anchor_y_offset_metadata of this Radio. # noqa: E501 742 :type: PropertyMetadata 743 """ 744 745 self._anchor_y_offset_metadata = anchor_y_offset_metadata 746 747 @property 748 def bold(self): 749 """Gets the bold of this Radio. # noqa: E501 750 751 When set to **true**, the information in the tab is bold. # noqa: E501 752 753 :return: The bold of this Radio. # noqa: E501 754 :rtype: str 755 """ 756 return self._bold 757 758 @bold.setter 759 def bold(self, bold): 760 """Sets the bold of this Radio. 761 762 When set to **true**, the information in the tab is bold. # noqa: E501 763 764 :param bold: The bold of this Radio. # noqa: E501 765 :type: str 766 """ 767 768 self._bold = bold 769 770 @property 771 def bold_metadata(self): 772 """Gets the bold_metadata of this Radio. # noqa: E501 773 774 Metadata that indicates whether the `bold` property is editable. # noqa: E501 775 776 :return: The bold_metadata of this Radio. # noqa: E501 777 :rtype: PropertyMetadata 778 """ 779 return self._bold_metadata 780 781 @bold_metadata.setter 782 def bold_metadata(self, bold_metadata): 783 """Sets the bold_metadata of this Radio. 784 785 Metadata that indicates whether the `bold` property is editable. # noqa: E501 786 787 :param bold_metadata: The bold_metadata of this Radio. # noqa: E501 788 :type: PropertyMetadata 789 """ 790 791 self._bold_metadata = bold_metadata 792 793 @property 794 def caption(self): 795 """Gets the caption of this Radio. # noqa: E501 796 797 # noqa: E501 798 799 :return: The caption of this Radio. # noqa: E501 800 :rtype: str 801 """ 802 return self._caption 803 804 @caption.setter 805 def caption(self, caption): 806 """Sets the caption of this Radio. 807 808 # noqa: E501 809 810 :param caption: The caption of this Radio. # noqa: E501 811 :type: str 812 """ 813 814 self._caption = caption 815 816 @property 817 def caption_metadata(self): 818 """Gets the caption_metadata of this Radio. # noqa: E501 819 820 # noqa: E501 821 822 :return: The caption_metadata of this Radio. # noqa: E501 823 :rtype: PropertyMetadata 824 """ 825 return self._caption_metadata 826 827 @caption_metadata.setter 828 def caption_metadata(self, caption_metadata): 829 """Sets the caption_metadata of this Radio. 830 831 # noqa: E501 832 833 :param caption_metadata: The caption_metadata of this Radio. # noqa: E501 834 :type: PropertyMetadata 835 """ 836 837 self._caption_metadata = caption_metadata 838 839 @property 840 def connected_object_details(self): 841 """Gets the connected_object_details of this Radio. # noqa: E501 842 843 # noqa: E501 844 845 :return: The connected_object_details of this Radio. # noqa: E501 846 :rtype: ConnectedObjectDetails 847 """ 848 return self._connected_object_details 849 850 @connected_object_details.setter 851 def connected_object_details(self, connected_object_details): 852 """Sets the connected_object_details of this Radio. 853 854 # noqa: E501 855 856 :param connected_object_details: The connected_object_details of this Radio. # noqa: E501 857 :type: ConnectedObjectDetails 858 """ 859 860 self._connected_object_details = connected_object_details 861 862 @property 863 def error_details(self): 864 """Gets the error_details of this Radio. # noqa: E501 865 866 Array or errors. # noqa: E501 867 868 :return: The error_details of this Radio. # noqa: E501 869 :rtype: ErrorDetails 870 """ 871 return self._error_details 872 873 @error_details.setter 874 def error_details(self, error_details): 875 """Sets the error_details of this Radio. 876 877 Array or errors. # noqa: E501 878 879 :param error_details: The error_details of this Radio. # noqa: E501 880 :type: ErrorDetails 881 """ 882 883 self._error_details = error_details 884 885 @property 886 def extension_data(self): 887 """Gets the extension_data of this Radio. # noqa: E501 888 889 # noqa: E501 890 891 :return: The extension_data of this Radio. # noqa: E501 892 :rtype: ExtensionData 893 """ 894 return self._extension_data 895 896 @extension_data.setter 897 def extension_data(self, extension_data): 898 """Sets the extension_data of this Radio. 899 900 # noqa: E501 901 902 :param extension_data: The extension_data of this Radio. # noqa: E501 903 :type: ExtensionData 904 """ 905 906 self._extension_data = extension_data 907 908 @property 909 def font(self): 910 """Gets the font of this Radio. # noqa: E501 911 912 The font to be used for the tab value. Supported Fonts: Arial, Arial, ArialNarrow, Calibri, CourierNew, Garamond, Georgia, Helvetica, LucidaConsole, Tahoma, TimesNewRoman, Trebuchet, Verdana, MSGothic, MSMincho, Default. # noqa: E501 913 914 :return: The font of this Radio. # noqa: E501 915 :rtype: str 916 """ 917 return self._font 918 919 @font.setter 920 def font(self, font): 921 """Sets the font of this Radio. 922 923 The font to be used for the tab value. Supported Fonts: Arial, Arial, ArialNarrow, Calibri, CourierNew, Garamond, Georgia, Helvetica, LucidaConsole, Tahoma, TimesNewRoman, Trebuchet, Verdana, MSGothic, MSMincho, Default. # noqa: E501 924 925 :param font: The font of this Radio. # noqa: E501 926 :type: str 927 """ 928 929 self._font = font 930 931 @property 932 def font_color(self): 933 """Gets the font_color of this Radio. # noqa: E501 934 935 The font color used for the information in the tab. Possible values are: Black, BrightBlue, BrightRed, DarkGreen, DarkRed, Gold, Green, NavyBlue, Purple, or White. # noqa: E501 936 937 :return: The font_color of this Radio. # noqa: E501 938 :rtype: str 939 """ 940 return self._font_color 941 942 @font_color.setter 943 def font_color(self, font_color): 944 """Sets the font_color of this Radio. 945 946 The font color used for the information in the tab. Possible values are: Black, BrightBlue, BrightRed, DarkGreen, DarkRed, Gold, Green, NavyBlue, Purple, or White. # noqa: E501 947 948 :param font_color: The font_color of this Radio. # noqa: E501 949 :type: str 950 """ 951 952 self._font_color = font_color 953 954 @property 955 def font_color_metadata(self): 956 """Gets the font_color_metadata of this Radio. # noqa: E501 957 958 Metadata that indicates whether the `fontColor` property is editable. # noqa: E501 959 960 :return: The font_color_metadata of this Radio. # noqa: E501 961 :rtype: PropertyMetadata 962 """ 963 return self._font_color_metadata 964 965 @font_color_metadata.setter 966 def font_color_metadata(self, font_color_metadata): 967 """Sets the font_color_metadata of this Radio. 968 969 Metadata that indicates whether the `fontColor` property is editable. # noqa: E501 970 971 :param font_color_metadata: The font_color_metadata of this Radio. # noqa: E501 972 :type: PropertyMetadata 973 """ 974 975 self._font_color_metadata = font_color_metadata 976 977 @property 978 def font_metadata(self): 979 """Gets the font_metadata of this Radio. # noqa: E501 980 981 Metadata that indicates whether the `font` property is editable. # noqa: E501 982 983 :return: The font_metadata of this Radio. # noqa: E501 984 :rtype: PropertyMetadata 985 """ 986 return self._font_metadata 987 988 @font_metadata.setter 989 def font_metadata(self, font_metadata): 990 """Sets the font_metadata of this Radio. 991 992 Metadata that indicates whether the `font` property is editable. # noqa: E501 993 994 :param font_metadata: The font_metadata of this Radio. # noqa: E501 995 :type: PropertyMetadata 996 """ 997 998 self._font_metadata = font_metadata 999 1000 @property 1001 def font_size(self): 1002 """Gets the font_size of this Radio. # noqa: E501 1003 1004 The font size used for the information in the tab. Possible values are: Size7, Size8, Size9, Size10, Size11, Size12, Size14, Size16, Size18, Size20, Size22, Size24, Size26, Size28, Size36, Size48, or Size72. # noqa: E501 1005 1006 :return: The font_size of this Radio. # noqa: E501 1007 :rtype: str 1008 """ 1009 return self._font_size 1010 1011 @font_size.setter 1012 def font_size(self, font_size): 1013 """Sets the font_size of this Radio. 1014 1015 The font size used for the information in the tab. Possible values are: Size7, Size8, Size9, Size10, Size11, Size12, Size14, Size16, Size18, Size20, Size22, Size24, Size26, Size28, Size36, Size48, or Size72. # noqa: E501 1016 1017 :param font_size: The font_size of this Radio. # noqa: E501 1018 :type: str 1019 """ 1020 1021 self._font_size = font_size 1022 1023 @property 1024 def font_size_metadata(self): 1025 """Gets the font_size_metadata of this Radio. # noqa: E501 1026 1027 Metadata that indicates whether the `fontSize` property is editable. # noqa: E501 1028 1029 :return: The font_size_metadata of this Radio. # noqa: E501 1030 :rtype: PropertyMetadata 1031 """ 1032 return self._font_size_metadata 1033 1034 @font_size_metadata.setter 1035 def font_size_metadata(self, font_size_metadata): 1036 """Sets the font_size_metadata of this Radio. 1037 1038 Metadata that indicates whether the `fontSize` property is editable. # noqa: E501 1039 1040 :param font_size_metadata: The font_size_metadata of this Radio. # noqa: E501 1041 :type: PropertyMetadata 1042 """ 1043 1044 self._font_size_metadata = font_size_metadata 1045 1046 @property 1047 def italic(self): 1048 """Gets the italic of this Radio. # noqa: E501 1049 1050 When set to **true**, the information in the tab is italic. # noqa: E501 1051 1052 :return: The italic of this Radio. # noqa: E501 1053 :rtype: str 1054 """ 1055 return self._italic 1056 1057 @italic.setter 1058 def italic(self, italic): 1059 """Sets the italic of this Radio. 1060 1061 When set to **true**, the information in the tab is italic. # noqa: E501 1062 1063 :param italic: The italic of this Radio. # noqa: E501 1064 :type: str 1065 """ 1066 1067 self._italic = italic 1068 1069 @property 1070 def italic_metadata(self): 1071 """Gets the italic_metadata of this Radio. # noqa: E501 1072 1073 Metadata that indicates whether the `italic` property is editable. # noqa: E501 1074 1075 :return: The italic_metadata of this Radio. # noqa: E501 1076 :rtype: PropertyMetadata 1077 """ 1078 return self._italic_metadata 1079 1080 @italic_metadata.setter 1081 def italic_metadata(self, italic_metadata): 1082 """Sets the italic_metadata of this Radio. 1083 1084 Metadata that indicates whether the `italic` property is editable. # noqa: E501 1085 1086 :param italic_metadata: The italic_metadata of this Radio. # noqa: E501 1087 :type: PropertyMetadata 1088 """ 1089 1090 self._italic_metadata = italic_metadata 1091 1092 @property 1093 def locked(self): 1094 """Gets the locked of this Radio. # noqa: E501 1095 1096 When set to **true**, the signer cannot change the data of the custom tab. # noqa: E501 1097 1098 :return: The locked of this Radio. # noqa: E501 1099 :rtype: str 1100 """ 1101 return self._locked 1102 1103 @locked.setter 1104 def locked(self, locked): 1105 """Sets the locked of this Radio. 1106 1107 When set to **true**, the signer cannot change the data of the custom tab. # noqa: E501 1108 1109 :param locked: The locked of this Radio. # noqa: E501 1110 :type: str 1111 """ 1112 1113 self._locked = locked 1114 1115 @property 1116 def locked_metadata(self): 1117 """Gets the locked_metadata of this Radio. # noqa: E501 1118 1119 Metadata that indicates whether the `locked` property is editable. # noqa: E501 1120 1121 :return: The locked_metadata of this Radio. # noqa: E501 1122 :rtype: PropertyMetadata 1123 """ 1124 return self._locked_metadata 1125 1126 @locked_metadata.setter 1127 def locked_metadata(self, locked_metadata): 1128 """Sets the locked_metadata of this Radio. 1129 1130 Metadata that indicates whether the `locked` property is editable. # noqa: E501 1131 1132 :param locked_metadata: The locked_metadata of this Radio. # noqa: E501 1133 :type: PropertyMetadata 1134 """ 1135 1136 self._locked_metadata = locked_metadata 1137 1138 @property 1139 def merge_field_xml(self): 1140 """Gets the merge_field_xml of this Radio. # noqa: E501 1141 1142 # noqa: E501 1143 1144 :return: The merge_field_xml of this Radio. # noqa: E501 1145 :rtype: str 1146 """ 1147 return self._merge_field_xml 1148 1149 @merge_field_xml.setter 1150 def merge_field_xml(self, merge_field_xml): 1151 """Sets the merge_field_xml of this Radio. 1152 1153 # noqa: E501 1154 1155 :param merge_field_xml: The merge_field_xml of this Radio. # noqa: E501 1156 :type: str 1157 """ 1158 1159 self._merge_field_xml = merge_field_xml 1160 1161 @property 1162 def page_number(self): 1163 """Gets the page_number of this Radio. # noqa: E501 1164 1165 Specifies the page number on which the tab is located. # noqa: E501 1166 1167 :return: The page_number of this Radio. # noqa: E501 1168 :rtype: str 1169 """ 1170 return self._page_number 1171 1172 @page_number.setter 1173 def page_number(self, page_number): 1174 """Sets the page_number of this Radio. 1175 1176 Specifies the page number on which the tab is located. # noqa: E501 1177 1178 :param page_number: The page_number of this Radio. # noqa: E501 1179 :type: str 1180 """ 1181 1182 self._page_number = page_number 1183 1184 @property 1185 def page_number_metadata(self): 1186 """Gets the page_number_metadata of this Radio. # noqa: E501 1187 1188 Metadata that indicates whether the `pageNumber` property is editable. # noqa: E501 1189 1190 :return: The page_number_metadata of this Radio. # noqa: E501 1191 :rtype: PropertyMetadata 1192 """ 1193 return self._page_number_metadata 1194 1195 @page_number_metadata.setter 1196 def page_number_metadata(self, page_number_metadata): 1197 """Sets the page_number_metadata of this Radio. 1198 1199 Metadata that indicates whether the `pageNumber` property is editable. # noqa: E501 1200 1201 :param page_number_metadata: The page_number_metadata of this Radio. # noqa: E501 1202 :type: PropertyMetadata 1203 """ 1204 1205 self._page_number_metadata = page_number_metadata 1206 1207 @property 1208 def required(self): 1209 """Gets the required of this Radio. # noqa: E501 1210 1211 When set to **true**, the signer is required to fill out this tab # noqa: E501 1212 1213 :return: The required of this Radio. # noqa: E501 1214 :rtype: str 1215 """ 1216 return self._required 1217 1218 @required.setter 1219 def required(self, required): 1220 """Sets the required of this Radio. 1221 1222 When set to **true**, the signer is required to fill out this tab # noqa: E501 1223 1224 :param required: The required of this Radio. # noqa: E501 1225 :type: str 1226 """ 1227 1228 self._required = required 1229 1230 @property 1231 def required_metadata(self): 1232 """Gets the required_metadata of this Radio. # noqa: E501 1233 1234 Metadata that indicates whether the `required` property is editable. # noqa: E501 1235 1236 :return: The required_metadata of this Radio. # noqa: E501 1237 :rtype: PropertyMetadata 1238 """ 1239 return self._required_metadata 1240 1241 @required_metadata.setter 1242 def required_metadata(self, required_metadata): 1243 """Sets the required_metadata of this Radio. 1244 1245 Metadata that indicates whether the `required` property is editable. # noqa: E501 1246 1247 :param required_metadata: The required_metadata of this Radio. # noqa: E501 1248 :type: PropertyMetadata 1249 """ 1250 1251 self._required_metadata = required_metadata 1252 1253 @property 1254 def selected(self): 1255 """Gets the selected of this Radio. # noqa: E501 1256 1257 When set to **true**, the radio button is selected. # noqa: E501 1258 1259 :return: The selected of this Radio. # noqa: E501 1260 :rtype: str 1261 """ 1262 return self._selected 1263 1264 @selected.setter 1265 def selected(self, selected): 1266 """Sets the selected of this Radio. 1267 1268 When set to **true**, the radio button is selected. # noqa: E501 1269 1270 :param selected: The selected of this Radio. # noqa: E501 1271 :type: str 1272 """ 1273 1274 self._selected = selected 1275 1276 @property 1277 def selected_metadata(self): 1278 """Gets the selected_metadata of this Radio. # noqa: E501 1279 1280 Metadata that indicates whether the `selected` property is editable. # noqa: E501 1281 1282 :return: The selected_metadata of this Radio. # noqa: E501 1283 :rtype: PropertyMetadata 1284 """ 1285 return self._selected_metadata 1286 1287 @selected_metadata.setter 1288 def selected_metadata(self, selected_metadata): 1289 """Sets the selected_metadata of this Radio. 1290 1291 Metadata that indicates whether the `selected` property is editable. # noqa: E501 1292 1293 :param selected_metadata: The selected_metadata of this Radio. # noqa: E501 1294 :type: PropertyMetadata 1295 """ 1296 1297 self._selected_metadata = selected_metadata 1298 1299 @property 1300 def status(self): 1301 """Gets the status of this Radio. # noqa: E501 1302 1303 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 1304 1305 :return: The status of this Radio. # noqa: E501 1306 :rtype: str 1307 """ 1308 return self._status 1309 1310 @status.setter 1311 def status(self, status): 1312 """Sets the status of this Radio. 1313 1314 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 1315 1316 :param status: The status of this Radio. # noqa: E501 1317 :type: str 1318 """ 1319 1320 self._status = status 1321 1322 @property 1323 def status_metadata(self): 1324 """Gets the status_metadata of this Radio. # noqa: E501 1325 1326 Metadata that indicates whether the `status` property is editable. # noqa: E501 1327 1328 :return: The status_metadata of this Radio. # noqa: E501 1329 :rtype: PropertyMetadata 1330 """ 1331 return self._status_metadata 1332 1333 @status_metadata.setter 1334 def status_metadata(self, status_metadata): 1335 """Sets the status_metadata of this Radio. 1336 1337 Metadata that indicates whether the `status` property is editable. # noqa: E501 1338 1339 :param status_metadata: The status_metadata of this Radio. # noqa: E501 1340 :type: PropertyMetadata 1341 """ 1342 1343 self._status_metadata = status_metadata 1344 1345 @property 1346 def tab_fully_qualified_path(self): 1347 """Gets the tab_fully_qualified_path of this Radio. # noqa: E501 1348 1349 # noqa: E501 1350 1351 :return: The tab_fully_qualified_path of this Radio. # noqa: E501 1352 :rtype: str 1353 """ 1354 return self._tab_fully_qualified_path 1355 1356 @tab_fully_qualified_path.setter 1357 def tab_fully_qualified_path(self, tab_fully_qualified_path): 1358 """Sets the tab_fully_qualified_path of this Radio. 1359 1360 # noqa: E501 1361 1362 :param tab_fully_qualified_path: The tab_fully_qualified_path of this Radio. # noqa: E501 1363 :type: str 1364 """ 1365 1366 self._tab_fully_qualified_path = tab_fully_qualified_path 1367 1368 @property 1369 def tab_id(self): 1370 """Gets the tab_id of this Radio. # noqa: E501 1371 1372 The unique identifier for the tab. The tabid can be retrieved with the [ML:GET call]. # noqa: E501 1373 1374 :return: The tab_id of this Radio. # noqa: E501 1375 :rtype: str 1376 """ 1377 return self._tab_id 1378 1379 @tab_id.setter 1380 def tab_id(self, tab_id): 1381 """Sets the tab_id of this Radio. 1382 1383 The unique identifier for the tab. The tabid can be retrieved with the [ML:GET call]. # noqa: E501 1384 1385 :param tab_id: The tab_id of this Radio. # noqa: E501 1386 :type: str 1387 """ 1388 1389 self._tab_id = tab_id 1390 1391 @property 1392 def tab_id_metadata(self): 1393 """Gets the tab_id_metadata of this Radio. # noqa: E501 1394 1395 Metadata that indicates whether the `tabId` property is editable. # noqa: E501 1396 1397 :return: The tab_id_metadata of this Radio. # noqa: E501 1398 :rtype: PropertyMetadata 1399 """ 1400 return self._tab_id_metadata 1401 1402 @tab_id_metadata.setter 1403 def tab_id_metadata(self, tab_id_metadata): 1404 """Sets the tab_id_metadata of this Radio. 1405 1406 Metadata that indicates whether the `tabId` property is editable. # noqa: E501 1407 1408 :param tab_id_metadata: The tab_id_metadata of this Radio. # noqa: E501 1409 :type: PropertyMetadata 1410 """ 1411 1412 self._tab_id_metadata = tab_id_metadata 1413 1414 @property 1415 def tab_order(self): 1416 """Gets the tab_order of this Radio. # noqa: E501 1417 1418 # noqa: E501 1419 1420 :return: The tab_order of this Radio. # noqa: E501 1421 :rtype: str 1422 """ 1423 return self._tab_order 1424 1425 @tab_order.setter 1426 def tab_order(self, tab_order): 1427 """Sets the tab_order of this Radio. 1428 1429 # noqa: E501 1430 1431 :param tab_order: The tab_order of this Radio. # noqa: E501 1432 :type: str 1433 """ 1434 1435 self._tab_order = tab_order 1436 1437 @property 1438 def tab_order_metadata(self): 1439 """Gets the tab_order_metadata of this Radio. # noqa: E501 1440 1441 Metadata that indicates whether the `tabOrder` property is editable. # noqa: E501 1442 1443 :return: The tab_order_metadata of this Radio. # noqa: E501 1444 :rtype: PropertyMetadata 1445 """ 1446 return self._tab_order_metadata 1447 1448 @tab_order_metadata.setter 1449 def tab_order_metadata(self, tab_order_metadata): 1450 """Sets the tab_order_metadata of this Radio. 1451 1452 Metadata that indicates whether the `tabOrder` property is editable. # noqa: E501 1453 1454 :param tab_order_metadata: The tab_order_metadata of this Radio. # noqa: E501 1455 :type: PropertyMetadata 1456 """ 1457 1458 self._tab_order_metadata = tab_order_metadata 1459 1460 @property 1461 def underline(self): 1462 """Gets the underline of this Radio. # noqa: E501 1463 1464 When set to **true**, the information in the tab is underlined. # noqa: E501 1465 1466 :return: The underline of this Radio. # noqa: E501 1467 :rtype: str 1468 """ 1469 return self._underline 1470 1471 @underline.setter 1472 def underline(self, underline): 1473 """Sets the underline of this Radio. 1474 1475 When set to **true**, the information in the tab is underlined. # noqa: E501 1476 1477 :param underline: The underline of this Radio. # noqa: E501 1478 :type: str 1479 """ 1480 1481 self._underline = underline 1482 1483 @property 1484 def underline_metadata(self): 1485 """Gets the underline_metadata of this Radio. # noqa: E501 1486 1487 Metadata that indicates whether the `underline` property is editable. # noqa: E501 1488 1489 :return: The underline_metadata of this Radio. # noqa: E501 1490 :rtype: PropertyMetadata 1491 """ 1492 return self._underline_metadata 1493 1494 @underline_metadata.setter 1495 def underline_metadata(self, underline_metadata): 1496 """Sets the underline_metadata of this Radio. 1497 1498 Metadata that indicates whether the `underline` property is editable. # noqa: E501 1499 1500 :param underline_metadata: The underline_metadata of this Radio. # noqa: E501 1501 :type: PropertyMetadata 1502 """ 1503 1504 self._underline_metadata = underline_metadata 1505 1506 @property 1507 def value(self): 1508 """Gets the value of this Radio. # noqa: E501 1509 1510 Specifies the value of the tab. # noqa: E501 1511 1512 :return: The value of this Radio. # noqa: E501 1513 :rtype: str 1514 """ 1515 return self._value 1516 1517 @value.setter 1518 def value(self, value): 1519 """Sets the value of this Radio. 1520 1521 Specifies the value of the tab. # noqa: E501 1522 1523 :param value: The value of this Radio. # noqa: E501 1524 :type: str 1525 """ 1526 1527 self._value = value 1528 1529 @property 1530 def value_metadata(self): 1531 """Gets the value_metadata of this Radio. # noqa: E501 1532 1533 Metadata that indicates whether the `value` property is editable. # noqa: E501 1534 1535 :return: The value_metadata of this Radio. # noqa: E501 1536 :rtype: PropertyMetadata 1537 """ 1538 return self._value_metadata 1539 1540 @value_metadata.setter 1541 def value_metadata(self, value_metadata): 1542 """Sets the value_metadata of this Radio. 1543 1544 Metadata that indicates whether the `value` property is editable. # noqa: E501 1545 1546 :param value_metadata: The value_metadata of this Radio. # noqa: E501 1547 :type: PropertyMetadata 1548 """ 1549 1550 self._value_metadata = value_metadata 1551 1552 @property 1553 def x_position(self): 1554 """Gets the x_position of this Radio. # noqa: E501 1555 1556 This indicates the horizontal offset of the object on the page. DocuSign uses 72 DPI when determining position. # noqa: E501 1557 1558 :return: The x_position of this Radio. # noqa: E501 1559 :rtype: str 1560 """ 1561 return self._x_position 1562 1563 @x_position.setter 1564 def x_position(self, x_position): 1565 """Sets the x_position of this Radio. 1566 1567 This indicates the horizontal offset of the object on the page. DocuSign uses 72 DPI when determining position. # noqa: E501 1568 1569 :param x_position: The x_position of this Radio. # noqa: E501 1570 :type: str 1571 """ 1572 1573 self._x_position = x_position 1574 1575 @property 1576 def x_position_metadata(self): 1577 """Gets the x_position_metadata of this Radio. # noqa: E501 1578 1579 Metadata that indicates whether the `xPosition` property is editable. # noqa: E501 1580 1581 :return: The x_position_metadata of this Radio. # noqa: E501 1582 :rtype: PropertyMetadata 1583 """ 1584 return self._x_position_metadata 1585 1586 @x_position_metadata.setter 1587 def x_position_metadata(self, x_position_metadata): 1588 """Sets the x_position_metadata of this Radio. 1589 1590 Metadata that indicates whether the `xPosition` property is editable. # noqa: E501 1591 1592 :param x_position_metadata: The x_position_metadata of this Radio. # noqa: E501 1593 :type: PropertyMetadata 1594 """ 1595 1596 self._x_position_metadata = x_position_metadata 1597 1598 @property 1599 def y_position(self): 1600 """Gets the y_position of this Radio. # noqa: E501 1601 1602 This indicates the vertical offset of the object on the page. DocuSign uses 72 DPI when determining position. # noqa: E501 1603 1604 :return: The y_position of this Radio. # noqa: E501 1605 :rtype: str 1606 """ 1607 return self._y_position 1608 1609 @y_position.setter 1610 def y_position(self, y_position): 1611 """Sets the y_position of this Radio. 1612 1613 This indicates the vertical offset of the object on the page. DocuSign uses 72 DPI when determining position. # noqa: E501 1614 1615 :param y_position: The y_position of this Radio. # noqa: E501 1616 :type: str 1617 """ 1618 1619 self._y_position = y_position 1620 1621 @property 1622 def y_position_metadata(self): 1623 """Gets the y_position_metadata of this Radio. # noqa: E501 1624 1625 Metadata that indicates whether the `yPosition` property is editable. # noqa: E501 1626 1627 :return: The y_position_metadata of this Radio. # noqa: E501 1628 :rtype: PropertyMetadata 1629 """ 1630 return self._y_position_metadata 1631 1632 @y_position_metadata.setter 1633 def y_position_metadata(self, y_position_metadata): 1634 """Sets the y_position_metadata of this Radio. 1635 1636 Metadata that indicates whether the `yPosition` property is editable. # noqa: E501 1637 1638 :param y_position_metadata: The y_position_metadata of this Radio. # noqa: E501 1639 :type: PropertyMetadata 1640 """ 1641 1642 self._y_position_metadata = y_position_metadata 1643 1644 def to_dict(self): 1645 """Returns the model properties as a dict""" 1646 result = {} 1647 1648 for attr, _ in six.iteritems(self.swagger_types): 1649 value = getattr(self, attr) 1650 if isinstance(value, list): 1651 result[attr] = list(map( 1652 lambda x: x.to_dict() if hasattr(x, "to_dict") else x, 1653 value 1654 )) 1655 elif hasattr(value, "to_dict"): 1656 result[attr] = value.to_dict() 1657 elif isinstance(value, dict): 1658 result[attr] = dict(map( 1659 lambda item: (item[0], item[1].to_dict()) 1660 if hasattr(item[1], "to_dict") else item, 1661 value.items() 1662 )) 1663 else: 1664 result[attr] = value 1665 if issubclass(Radio, dict): 1666 for key, value in self.items(): 1667 result[key] = value 1668 1669 return result 1670 1671 def to_str(self): 1672 """Returns the string representation of the model""" 1673 return pprint.pformat(self.to_dict()) 1674 1675 def __repr__(self): 1676 """For `print` and `pprint`""" 1677 return self.to_str() 1678 1679 def __eq__(self, other): 1680 """Returns true if both objects are equal""" 1681 if not isinstance(other, Radio): 1682 return False 1683 1684 return self.to_dict() == other.to_dict() 1685 1686 def __ne__(self, other): 1687 """Returns true if both objects are not equal""" 1688 if not isinstance(other, Radio): 1689 return True 1690 1691 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.
160 def __init__(self, _configuration=None, **kwargs): # noqa: E501 161 """Radio - a model defined in Swagger""" # noqa: E501 162 if _configuration is None: 163 _configuration = Configuration() 164 self._configuration = _configuration 165 166 self._anchor_allow_white_space_in_characters = None 167 self._anchor_allow_white_space_in_characters_metadata = None 168 self._anchor_case_sensitive = None 169 self._anchor_case_sensitive_metadata = None 170 self._anchor_horizontal_alignment = None 171 self._anchor_horizontal_alignment_metadata = None 172 self._anchor_ignore_if_not_present = None 173 self._anchor_ignore_if_not_present_metadata = None 174 self._anchor_match_whole_word = None 175 self._anchor_match_whole_word_metadata = None 176 self._anchor_string = None 177 self._anchor_string_metadata = None 178 self._anchor_tab_processor_version = None 179 self._anchor_tab_processor_version_metadata = None 180 self._anchor_units = None 181 self._anchor_units_metadata = None 182 self._anchor_x_offset = None 183 self._anchor_x_offset_metadata = None 184 self._anchor_y_offset = None 185 self._anchor_y_offset_metadata = None 186 self._bold = None 187 self._bold_metadata = None 188 self._caption = None 189 self._caption_metadata = None 190 self._connected_object_details = None 191 self._error_details = None 192 self._extension_data = None 193 self._font = None 194 self._font_color = None 195 self._font_color_metadata = None 196 self._font_metadata = None 197 self._font_size = None 198 self._font_size_metadata = None 199 self._italic = None 200 self._italic_metadata = None 201 self._locked = None 202 self._locked_metadata = None 203 self._merge_field_xml = None 204 self._page_number = None 205 self._page_number_metadata = None 206 self._required = None 207 self._required_metadata = None 208 self._selected = None 209 self._selected_metadata = None 210 self._status = None 211 self._status_metadata = None 212 self._tab_fully_qualified_path = None 213 self._tab_id = None 214 self._tab_id_metadata = None 215 self._tab_order = None 216 self._tab_order_metadata = None 217 self._underline = None 218 self._underline_metadata = None 219 self._value = None 220 self._value_metadata = None 221 self._x_position = None 222 self._x_position_metadata = None 223 self._y_position = None 224 self._y_position_metadata = None 225 self.discriminator = None 226 227 setattr(self, "_{}".format('anchor_allow_white_space_in_characters'), kwargs.get('anchor_allow_white_space_in_characters', None)) 228 setattr(self, "_{}".format('anchor_allow_white_space_in_characters_metadata'), kwargs.get('anchor_allow_white_space_in_characters_metadata', None)) 229 setattr(self, "_{}".format('anchor_case_sensitive'), kwargs.get('anchor_case_sensitive', None)) 230 setattr(self, "_{}".format('anchor_case_sensitive_metadata'), kwargs.get('anchor_case_sensitive_metadata', None)) 231 setattr(self, "_{}".format('anchor_horizontal_alignment'), kwargs.get('anchor_horizontal_alignment', None)) 232 setattr(self, "_{}".format('anchor_horizontal_alignment_metadata'), kwargs.get('anchor_horizontal_alignment_metadata', None)) 233 setattr(self, "_{}".format('anchor_ignore_if_not_present'), kwargs.get('anchor_ignore_if_not_present', None)) 234 setattr(self, "_{}".format('anchor_ignore_if_not_present_metadata'), kwargs.get('anchor_ignore_if_not_present_metadata', None)) 235 setattr(self, "_{}".format('anchor_match_whole_word'), kwargs.get('anchor_match_whole_word', None)) 236 setattr(self, "_{}".format('anchor_match_whole_word_metadata'), kwargs.get('anchor_match_whole_word_metadata', None)) 237 setattr(self, "_{}".format('anchor_string'), kwargs.get('anchor_string', None)) 238 setattr(self, "_{}".format('anchor_string_metadata'), kwargs.get('anchor_string_metadata', None)) 239 setattr(self, "_{}".format('anchor_tab_processor_version'), kwargs.get('anchor_tab_processor_version', None)) 240 setattr(self, "_{}".format('anchor_tab_processor_version_metadata'), kwargs.get('anchor_tab_processor_version_metadata', None)) 241 setattr(self, "_{}".format('anchor_units'), kwargs.get('anchor_units', None)) 242 setattr(self, "_{}".format('anchor_units_metadata'), kwargs.get('anchor_units_metadata', None)) 243 setattr(self, "_{}".format('anchor_x_offset'), kwargs.get('anchor_x_offset', None)) 244 setattr(self, "_{}".format('anchor_x_offset_metadata'), kwargs.get('anchor_x_offset_metadata', None)) 245 setattr(self, "_{}".format('anchor_y_offset'), kwargs.get('anchor_y_offset', None)) 246 setattr(self, "_{}".format('anchor_y_offset_metadata'), kwargs.get('anchor_y_offset_metadata', None)) 247 setattr(self, "_{}".format('bold'), kwargs.get('bold', None)) 248 setattr(self, "_{}".format('bold_metadata'), kwargs.get('bold_metadata', None)) 249 setattr(self, "_{}".format('caption'), kwargs.get('caption', None)) 250 setattr(self, "_{}".format('caption_metadata'), kwargs.get('caption_metadata', None)) 251 setattr(self, "_{}".format('connected_object_details'), kwargs.get('connected_object_details', None)) 252 setattr(self, "_{}".format('error_details'), kwargs.get('error_details', None)) 253 setattr(self, "_{}".format('extension_data'), kwargs.get('extension_data', None)) 254 setattr(self, "_{}".format('font'), kwargs.get('font', None)) 255 setattr(self, "_{}".format('font_color'), kwargs.get('font_color', None)) 256 setattr(self, "_{}".format('font_color_metadata'), kwargs.get('font_color_metadata', None)) 257 setattr(self, "_{}".format('font_metadata'), kwargs.get('font_metadata', None)) 258 setattr(self, "_{}".format('font_size'), kwargs.get('font_size', None)) 259 setattr(self, "_{}".format('font_size_metadata'), kwargs.get('font_size_metadata', None)) 260 setattr(self, "_{}".format('italic'), kwargs.get('italic', None)) 261 setattr(self, "_{}".format('italic_metadata'), kwargs.get('italic_metadata', None)) 262 setattr(self, "_{}".format('locked'), kwargs.get('locked', None)) 263 setattr(self, "_{}".format('locked_metadata'), kwargs.get('locked_metadata', None)) 264 setattr(self, "_{}".format('merge_field_xml'), kwargs.get('merge_field_xml', None)) 265 setattr(self, "_{}".format('page_number'), kwargs.get('page_number', None)) 266 setattr(self, "_{}".format('page_number_metadata'), kwargs.get('page_number_metadata', None)) 267 setattr(self, "_{}".format('required'), kwargs.get('required', None)) 268 setattr(self, "_{}".format('required_metadata'), kwargs.get('required_metadata', None)) 269 setattr(self, "_{}".format('selected'), kwargs.get('selected', None)) 270 setattr(self, "_{}".format('selected_metadata'), kwargs.get('selected_metadata', None)) 271 setattr(self, "_{}".format('status'), kwargs.get('status', None)) 272 setattr(self, "_{}".format('status_metadata'), kwargs.get('status_metadata', None)) 273 setattr(self, "_{}".format('tab_fully_qualified_path'), kwargs.get('tab_fully_qualified_path', None)) 274 setattr(self, "_{}".format('tab_id'), kwargs.get('tab_id', None)) 275 setattr(self, "_{}".format('tab_id_metadata'), kwargs.get('tab_id_metadata', None)) 276 setattr(self, "_{}".format('tab_order'), kwargs.get('tab_order', None)) 277 setattr(self, "_{}".format('tab_order_metadata'), kwargs.get('tab_order_metadata', None)) 278 setattr(self, "_{}".format('underline'), kwargs.get('underline', None)) 279 setattr(self, "_{}".format('underline_metadata'), kwargs.get('underline_metadata', None)) 280 setattr(self, "_{}".format('value'), kwargs.get('value', None)) 281 setattr(self, "_{}".format('value_metadata'), kwargs.get('value_metadata', None)) 282 setattr(self, "_{}".format('x_position'), kwargs.get('x_position', None)) 283 setattr(self, "_{}".format('x_position_metadata'), kwargs.get('x_position_metadata', None)) 284 setattr(self, "_{}".format('y_position'), kwargs.get('y_position', None)) 285 setattr(self, "_{}".format('y_position_metadata'), kwargs.get('y_position_metadata', None))
Radio - a model defined in Swagger
Gets the anchor_allow_white_space_in_characters of this Radio. # noqa: E501
# noqa: E501
Returns
The anchor_allow_white_space_in_characters of this Radio. # noqa: E501
Gets the anchor_allow_white_space_in_characters_metadata of this Radio. # noqa: E501
Metadata that indicates whether the anchorAllowWhiteSpaceInCharacters property is editable. # noqa: E501
Returns
The anchor_allow_white_space_in_characters_metadata of this Radio. # noqa: E501
Gets the anchor_case_sensitive of this Radio. # 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 Radio. # noqa: E501
Gets the anchor_case_sensitive_metadata of this Radio. # noqa: E501
Metadata that indicates whether the anchorCaseSensitive property is editable. # noqa: E501
Returns
The anchor_case_sensitive_metadata of this Radio. # noqa: E501
Gets the anchor_horizontal_alignment of this Radio. # 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 Radio. # noqa: E501
Gets the anchor_horizontal_alignment_metadata of this Radio. # noqa: E501
Metadata that indicates whether the anchorHorizontalAlignment property is editable. # noqa: E501
Returns
The anchor_horizontal_alignment_metadata of this Radio. # noqa: E501
Gets the anchor_ignore_if_not_present of this Radio. # 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 Radio. # noqa: E501
Gets the anchor_ignore_if_not_present_metadata of this Radio. # noqa: E501
Metadata that indicates whether the anchorIgnoreIfNotPresent property is editable. # noqa: E501
Returns
The anchor_ignore_if_not_present_metadata of this Radio. # noqa: E501
Gets the anchor_match_whole_word of this Radio. # 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 Radio. # noqa: E501
Gets the anchor_match_whole_word_metadata of this Radio. # noqa: E501
Metadata that indicates whether the anchorMatchWholeWord property is editable. # noqa: E501
Returns
The anchor_match_whole_word_metadata of this Radio. # noqa: E501
Gets the anchor_string of this Radio. # noqa: E501
Anchor text information for a radio button. # noqa: E501
Returns
The anchor_string of this Radio. # noqa: E501
Gets the anchor_string_metadata of this Radio. # noqa: E501
Metadata that indicates whether the anchorString property is editable. # noqa: E501
Returns
The anchor_string_metadata of this Radio. # noqa: E501
Gets the anchor_tab_processor_version of this Radio. # noqa: E501
# noqa: E501
Returns
The anchor_tab_processor_version of this Radio. # noqa: E501
Gets the anchor_tab_processor_version_metadata of this Radio. # noqa: E501
Reserved for DocuSign. # noqa: E501
Returns
The anchor_tab_processor_version_metadata of this Radio. # noqa: E501
Gets the anchor_units of this Radio. # 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 Radio. # noqa: E501
Gets the anchor_units_metadata of this Radio. # noqa: E501
Metadata that indicates whether the anchorUnits property is editable. # noqa: E501
Returns
The anchor_units_metadata of this Radio. # noqa: E501
Gets the anchor_x_offset of this Radio. # 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 Radio. # noqa: E501
Gets the anchor_x_offset_metadata of this Radio. # noqa: E501
Metadata that indicates whether the anchorXOffset property is editable. # noqa: E501
Returns
The anchor_x_offset_metadata of this Radio. # noqa: E501
Gets the anchor_y_offset of this Radio. # 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 Radio. # noqa: E501
Gets the anchor_y_offset_metadata of this Radio. # noqa: E501
Metadata that indicates whether the anchorYOffset property is editable. # noqa: E501
Returns
The anchor_y_offset_metadata of this Radio. # noqa: E501
Gets the bold of this Radio. # noqa: E501
When set to true, the information in the tab is bold. # noqa: E501
Returns
The bold of this Radio. # noqa: E501
Gets the bold_metadata of this Radio. # noqa: E501
Metadata that indicates whether the bold property is editable. # noqa: E501
Returns
The bold_metadata of this Radio. # noqa: E501
Gets the caption of this Radio. # noqa: E501
# noqa: E501
Returns
The caption of this Radio. # noqa: E501
Gets the caption_metadata of this Radio. # noqa: E501
# noqa: E501
Returns
The caption_metadata of this Radio. # noqa: E501
Gets the connected_object_details of this Radio. # noqa: E501
# noqa: E501
Returns
The connected_object_details of this Radio. # noqa: E501
Gets the error_details of this Radio. # noqa: E501
Array or errors. # noqa: E501
Returns
The error_details of this Radio. # noqa: E501
Gets the extension_data of this Radio. # noqa: E501
# noqa: E501
Returns
The extension_data of this Radio. # noqa: E501
Gets the font of this Radio. # noqa: E501
The font to be used for the tab value. Supported Fonts: Arial, Arial, ArialNarrow, Calibri, CourierNew, Garamond, Georgia, Helvetica, LucidaConsole, Tahoma, TimesNewRoman, Trebuchet, Verdana, MSGothic, MSMincho, Default. # noqa: E501
Returns
The font of this Radio. # noqa: E501
Gets the font_color of this Radio. # noqa: E501
The font color used for the information in the tab. Possible values are: Black, BrightBlue, BrightRed, DarkGreen, DarkRed, Gold, Green, NavyBlue, Purple, or White. # noqa: E501
Returns
The font_color of this Radio. # noqa: E501
Gets the font_color_metadata of this Radio. # noqa: E501
Metadata that indicates whether the fontColor property is editable. # noqa: E501
Returns
The font_color_metadata of this Radio. # noqa: E501
Gets the font_metadata of this Radio. # noqa: E501
Metadata that indicates whether the font property is editable. # noqa: E501
Returns
The font_metadata of this Radio. # noqa: E501
Gets the font_size of this Radio. # noqa: E501
The font size used for the information in the tab. Possible values are: Size7, Size8, Size9, Size10, Size11, Size12, Size14, Size16, Size18, Size20, Size22, Size24, Size26, Size28, Size36, Size48, or Size72. # noqa: E501
Returns
The font_size of this Radio. # noqa: E501
Gets the font_size_metadata of this Radio. # noqa: E501
Metadata that indicates whether the fontSize property is editable. # noqa: E501
Returns
The font_size_metadata of this Radio. # noqa: E501
Gets the italic of this Radio. # noqa: E501
When set to true, the information in the tab is italic. # noqa: E501
Returns
The italic of this Radio. # noqa: E501
Gets the italic_metadata of this Radio. # noqa: E501
Metadata that indicates whether the italic property is editable. # noqa: E501
Returns
The italic_metadata of this Radio. # noqa: E501
Gets the locked of this Radio. # noqa: E501
When set to true, the signer cannot change the data of the custom tab. # noqa: E501
Returns
The locked of this Radio. # noqa: E501
Gets the locked_metadata of this Radio. # noqa: E501
Metadata that indicates whether the locked property is editable. # noqa: E501
Returns
The locked_metadata of this Radio. # noqa: E501
Gets the merge_field_xml of this Radio. # noqa: E501
# noqa: E501
Returns
The merge_field_xml of this Radio. # noqa: E501
Gets the page_number of this Radio. # noqa: E501
Specifies the page number on which the tab is located. # noqa: E501
Returns
The page_number of this Radio. # noqa: E501
Gets the page_number_metadata of this Radio. # noqa: E501
Metadata that indicates whether the pageNumber property is editable. # noqa: E501
Returns
The page_number_metadata of this Radio. # noqa: E501
Gets the required of this Radio. # noqa: E501
When set to true, the signer is required to fill out this tab # noqa: E501
Returns
The required of this Radio. # noqa: E501
Gets the required_metadata of this Radio. # noqa: E501
Metadata that indicates whether the required property is editable. # noqa: E501
Returns
The required_metadata of this Radio. # noqa: E501
Gets the selected of this Radio. # noqa: E501
When set to true, the radio button is selected. # noqa: E501
Returns
The selected of this Radio. # noqa: E501
Gets the selected_metadata of this Radio. # noqa: E501
Metadata that indicates whether the selected property is editable. # noqa: E501
Returns
The selected_metadata of this Radio. # noqa: E501
Gets the status of this Radio. # 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 Radio. # noqa: E501
Gets the status_metadata of this Radio. # noqa: E501
Metadata that indicates whether the status property is editable. # noqa: E501
Returns
The status_metadata of this Radio. # noqa: E501
Gets the tab_fully_qualified_path of this Radio. # noqa: E501
# noqa: E501
Returns
The tab_fully_qualified_path of this Radio. # noqa: E501
Gets the tab_id of this Radio. # 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 Radio. # noqa: E501
Gets the tab_id_metadata of this Radio. # noqa: E501
Metadata that indicates whether the tabId property is editable. # noqa: E501
Returns
The tab_id_metadata of this Radio. # noqa: E501
Gets the tab_order of this Radio. # noqa: E501
# noqa: E501
Returns
The tab_order of this Radio. # noqa: E501
Gets the tab_order_metadata of this Radio. # noqa: E501
Metadata that indicates whether the tabOrder property is editable. # noqa: E501
Returns
The tab_order_metadata of this Radio. # noqa: E501
Gets the underline of this Radio. # noqa: E501
When set to true, the information in the tab is underlined. # noqa: E501
Returns
The underline of this Radio. # noqa: E501
Gets the underline_metadata of this Radio. # noqa: E501
Metadata that indicates whether the underline property is editable. # noqa: E501
Returns
The underline_metadata of this Radio. # noqa: E501
Gets the value of this Radio. # noqa: E501
Specifies the value of the tab. # noqa: E501
Returns
The value of this Radio. # noqa: E501
Gets the value_metadata of this Radio. # noqa: E501
Metadata that indicates whether the value property is editable. # noqa: E501
Returns
The value_metadata of this Radio. # noqa: E501
Gets the x_position of this Radio. # 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 Radio. # noqa: E501
Gets the x_position_metadata of this Radio. # noqa: E501
Metadata that indicates whether the xPosition property is editable. # noqa: E501
Returns
The x_position_metadata of this Radio. # noqa: E501
Gets the y_position of this Radio. # 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 Radio. # noqa: E501
Gets the y_position_metadata of this Radio. # noqa: E501
Metadata that indicates whether the yPosition property is editable. # noqa: E501
Returns
The y_position_metadata of this Radio. # noqa: E501
1644 def to_dict(self): 1645 """Returns the model properties as a dict""" 1646 result = {} 1647 1648 for attr, _ in six.iteritems(self.swagger_types): 1649 value = getattr(self, attr) 1650 if isinstance(value, list): 1651 result[attr] = list(map( 1652 lambda x: x.to_dict() if hasattr(x, "to_dict") else x, 1653 value 1654 )) 1655 elif hasattr(value, "to_dict"): 1656 result[attr] = value.to_dict() 1657 elif isinstance(value, dict): 1658 result[attr] = dict(map( 1659 lambda item: (item[0], item[1].to_dict()) 1660 if hasattr(item[1], "to_dict") else item, 1661 value.items() 1662 )) 1663 else: 1664 result[attr] = value 1665 if issubclass(Radio, dict): 1666 for key, value in self.items(): 1667 result[key] = value 1668 1669 return result
Returns the model properties as a dict