Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.52 KB

DocusignNotificationExpirations.md

File metadata and controls

31 lines (22 loc) · 1.52 KB

DocusignNotificationExpirations

Properties

Name Type Description Notes
expire_after str An integer that sets the number of days the envelope is active. For this value to be used, expireEnabled must be explicitly set to true. [optional]
expire_enabled str When true, the envelope expires in the number of days set by expireAfter. [optional]
expire_warn str An integer that specifying the number of days before the envelope expires that an expiration warning email is sent to the recipient. [optional]

Example

from formkiq_client.models.docusign_notification_expirations import DocusignNotificationExpirations

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

# convert the object into a dict
docusign_notification_expirations_dict = docusign_notification_expirations_instance.to_dict()
# create an instance of DocusignNotificationExpirations from a dict
docusign_notification_expirations_from_dict = DocusignNotificationExpirations.from_dict(docusign_notification_expirations_dict)

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