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