Current section

Files

Jump to
docusign lib docusign model authentication_method.ex
Raw

lib/docusign/model/authentication_method.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.AuthenticationMethod do
@moduledoc """
Contains information about the method used for authentication.
"""
@derive Jason.Encoder
defstruct [
:authenticationType,
:lastProvider,
:lastTimestamp,
:totalCount
]
@type t :: %__MODULE__{
:authenticationType => String.t() | nil,
:lastProvider => String.t() | nil,
:lastTimestamp => String.t() | nil,
:totalCount => String.t() | nil
}
def decode(value) do
value
end
end