Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.85 KB

DocusignSignHereTabs.md

File metadata and controls

36 lines (27 loc) · 1.85 KB

DocusignSignHereTabs

Properties

Name Type Description Notes
anchor_string str Specifies the string to find in the document and use as the basis for tab placement. [optional]
anchor_x_offset str Specifies the X axis location of the tab in anchorUnits relative to the anchorString. [optional]
anchor_y_offset str Specifies the Y axis location of the tab in anchorUnits relative to the anchorString. [optional]
anchor_ignore_if_not_present str When true, this tab is ignored if the anchorString is not found in the document. [optional]
anchor_units str Specifies units of the anchorXOffset and anchorYOffset [optional]
x_position str This property indicates the horizontal offset of the object on the page [optional]
y_position str This property indicates the vertical offset of the object on the page [optional]
page_number str Specifies the page number on which the tab is located [optional]

Example

from formkiq_client.models.docusign_sign_here_tabs import DocusignSignHereTabs

# TODO update the JSON string below
json = "{}"
# create an instance of DocusignSignHereTabs from a JSON string
docusign_sign_here_tabs_instance = DocusignSignHereTabs.from_json(json)
# print the JSON string representation of the object
print(DocusignSignHereTabs.to_json())

# convert the object into a dict
docusign_sign_here_tabs_dict = docusign_sign_here_tabs_instance.to_dict()
# create an instance of DocusignSignHereTabs from a dict
docusign_sign_here_tabs_from_dict = DocusignSignHereTabs.from_dict(docusign_sign_here_tabs_dict)

[Back to Model list] [Back to API list] [Back to README]