Current section

Files

Jump to
docusign lib docusign model usage_history.ex
Raw

lib/docusign/model/usage_history.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.UsageHistory do
@moduledoc """
A complex element consisting of: * lastSentDateTime - the date and time the user last sent an envelope. * lastSignedDateTime - the date and time the user last signed an envelope. * sentCount - the number of envelopes the user has sent. * signedCount - the number of envelopes the user has signed.
"""
@derive [Poison.Encoder]
defstruct [
:lastSentDateTime,
:lastSignedDateTime,
:sentCount,
:signedCount
]
@type t :: %__MODULE__{
:lastSentDateTime => String.t(),
:lastSignedDateTime => String.t(),
:sentCount => integer(),
:signedCount => integer()
}
end
defimpl Poison.Decoder, for: DocuSign.Model.UsageHistory do
def decode(value, _options) do
value
end
end