Current section

Files

Jump to
docusign lib docusign model usage_history.ex
Raw

lib/docusign/model/usage_history.ex

# NOTE: This file is auto generated by OpenAPI Generator 6.4.0 (https://openapi-generator.tech).
# Do not edit this file 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() | nil,
:lastSignedDateTime => String.t() | nil,
:sentCount => String.t() | nil,
:signedCount => String.t() | nil
}
end
defimpl Poison.Decoder, for: DocuSign.Model.UsageHistory do
def decode(value, _options) do
value
end
end