Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.17 KB

AddEsignatureDocusignResponse.md

File metadata and controls

30 lines (21 loc) · 1.17 KB

AddEsignatureDocusignResponse

Properties

Name Type Description Notes
redirect_url str Redirect Url to complete DocuSign workflow [optional]
message str Result message [optional]

Example

from formkiq_client.models.add_esignature_docusign_response import AddEsignatureDocusignResponse

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

# convert the object into a dict
add_esignature_docusign_response_dict = add_esignature_docusign_response_instance.to_dict()
# create an instance of AddEsignatureDocusignResponse from a dict
add_esignature_docusign_response_from_dict = AddEsignatureDocusignResponse.from_dict(add_esignature_docusign_response_dict)

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