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 7.12.0 (https://openapi-generator.tech).
# Do not edit this file manually.
defmodule DocuSign.Model.MatchBox do
@moduledoc """
"""
@derive Jason.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
}
def decode(value) do
value
end
end