You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The view URL to be navigated to complete DocuSign signing
[optional]
Example
fromformkiq_client.models.add_docusign_recipient_view_responseimportAddDocusignRecipientViewResponse# TODO update the JSON string belowjson="{}"# create an instance of AddDocusignRecipientViewResponse from a JSON stringadd_docusign_recipient_view_response_instance=AddDocusignRecipientViewResponse.from_json(json)
# print the JSON string representation of the objectprint(AddDocusignRecipientViewResponse.to_json())
# convert the object into a dictadd_docusign_recipient_view_response_dict=add_docusign_recipient_view_response_instance.to_dict()
# create an instance of AddDocusignRecipientViewResponse from a dictadd_docusign_recipient_view_response_from_dict=AddDocusignRecipientViewResponse.from_dict(add_docusign_recipient_view_response_dict)