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
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
fromformkiq_client.models.docusign_notification_expirationsimportDocusignNotificationExpirations# TODO update the JSON string belowjson="{}"# create an instance of DocusignNotificationExpirations from a JSON stringdocusign_notification_expirations_instance=DocusignNotificationExpirations.from_json(json)
# print the JSON string representation of the objectprint(DocusignNotificationExpirations.to_json())
# convert the object into a dictdocusign_notification_expirations_dict=docusign_notification_expirations_instance.to_dict()
# create an instance of DocusignNotificationExpirations from a dictdocusign_notification_expirations_from_dict=DocusignNotificationExpirations.from_dict(docusign_notification_expirations_dict)