| Name | Type | Description | Notes |
|---|---|---|---|
| email_subject | str | The subject line of the email message that is sent to all recipients | [optional] |
| environment | DocusignEnvironment | ||
| signers | List[DocusignSigner] | List of DocuSign Signers | [optional] |
| inperson_signers | List[DocusignInpersonSigner] | List of DocuSign Inperson Signers | [optional] |
| notification | DocusignNotification | [optional] |
from formkiq_client.models.add_docusign_envelopes_request import AddDocusignEnvelopesRequest
# TODO update the JSON string below
json = "{}"
# create an instance of AddDocusignEnvelopesRequest from a JSON string
add_docusign_envelopes_request_instance = AddDocusignEnvelopesRequest.from_json(json)
# print the JSON string representation of the object
print(AddDocusignEnvelopesRequest.to_json())
# convert the object into a dict
add_docusign_envelopes_request_dict = add_docusign_envelopes_request_instance.to_dict()
# create an instance of AddDocusignEnvelopesRequest from a dict
add_docusign_envelopes_request_from_dict = AddDocusignEnvelopesRequest.from_dict(add_docusign_envelopes_request_dict)