Current section
Files
Jump to
Current section
Files
lib/docusign/model/jurisdiction.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.Jurisdiction do
@moduledoc """
"""
@derive [Poison.Encoder]
defstruct [
:allowSystemCreatedSeal,
:allowUserUploadedSeal,
:commissionIdInSeal,
:county,
:countyInSeal,
:enabled,
:jurisdictionId,
:name,
:notaryPublicInSeal,
:stateNameInSeal
]
@type t :: %__MODULE__{
:allowSystemCreatedSeal => String.t(),
:allowUserUploadedSeal => String.t(),
:commissionIdInSeal => String.t(),
:county => String.t(),
:countyInSeal => String.t(),
:enabled => String.t(),
:jurisdictionId => String.t(),
:name => String.t(),
:notaryPublicInSeal => String.t(),
:stateNameInSeal => String.t()
}
end
defimpl Poison.Decoder, for: DocuSign.Model.Jurisdiction do
def decode(value, _options) do
value
end
end