Current section
Files
Jump to
Current section
Files
lib/docusign/model/expirations.ex
# NOTE: This file is auto generated by OpenAPI Generator 7.12.0 (https://openapi-generator.tech).
# Do not edit this file manually.
defmodule DocuSign.Model.Expirations do
@moduledoc """
A complex element that specifies the expiration settings for the envelope. When an envelope expires, it is voided and no longer available for signing. **Note:** there is a short delay between when the envelope expires and when it is voided.
"""
@derive Jason.Encoder
defstruct [
:expireAfter,
:expireEnabled,
:expireWarn
]
@type t :: %__MODULE__{
:expireAfter => String.t() | nil,
:expireEnabled => String.t() | nil,
:expireWarn => String.t() | nil
}
def decode(value) do
value
end
end