Current section

Files

Jump to
docusign lib docusign model smart_section_anchor_position.ex
Raw

lib/docusign/model/smart_section_anchor_position.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.SmartSectionAnchorPosition do
@moduledoc """
"""
@derive Jason.Encoder
defstruct [
:pageNumber,
:xPosition,
:yPosition
]
@type t :: %__MODULE__{
:pageNumber => integer() | nil,
:xPosition => float() | nil,
:yPosition => float() | nil
}
def decode(value) do
value
end
end