Current section
Files
Jump to
Current section
Files
lib/docusign/model/server_template.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.ServerTemplate do
@moduledoc """
"""
@derive [Poison.Encoder]
defstruct [
:sequence,
:templateId
]
@type t :: %__MODULE__{
:sequence => String.t(),
:templateId => String.t()
}
end
defimpl Poison.Decoder, for: DocuSign.Model.ServerTemplate do
def decode(value, _options) do
value
end
end