Current section

Files

Jump to
docusign lib docusign model server_template.ex
Raw

lib/docusign/model/server_template.ex

# NOTE: This file is auto generated by OpenAPI Generator 6.2.1 (https://openapi-generator.tech).
# Do not edit this file manually.
defmodule DocuSign.Model.ServerTemplate do
@moduledoc """
"""
@derive [Poison.Encoder]
defstruct [
:sequence,
:templateId
]
@type t :: %__MODULE__{
:sequence => String.t() | nil,
:templateId => String.t() | nil
}
end
defimpl Poison.Decoder, for: DocuSign.Model.ServerTemplate do
def decode(value, _options) do
value
end
end