Current section
Files
Jump to
Current section
Files
lib/docusign/model/expirations.ex
# NOTE: This class is auto generated by the swagger code generator program.
# https://github.com/swagger-api/swagger-codegen.git
# Do not edit the class manually.
defmodule DocuSign.Model.Expirations do
@moduledoc """
A complex element that specifies the expiration settings for the envelope.
"""
@derive [Poison.Encoder]
defstruct [
:expireAfter,
:expireEnabled,
:expireWarn
]
@type t :: %__MODULE__{
:expireAfter => String.t(),
:expireEnabled => String.t(),
:expireWarn => String.t()
}
end
defimpl Poison.Decoder, for: DocuSign.Model.Expirations do
def decode(value, _options) do
value
end
end