Current section

Files

Jump to
docusign lib docusign model match_box.ex
Raw

lib/docusign/model/match_box.ex

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