Current section

Files

Jump to
docusign lib docusign model date_stamp_properties.ex
Raw

lib/docusign/model/date_stamp_properties.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.DateStampProperties do
@moduledoc """
"""
@derive [Poison.Encoder]
defstruct [
:dateAreaHeight,
:dateAreaWidth,
:dateAreaX,
:dateAreaY
]
@type t :: %__MODULE__{
:dateAreaHeight => String.t(),
:dateAreaWidth => String.t(),
:dateAreaX => String.t(),
:dateAreaY => String.t()
}
end
defimpl Poison.Decoder, for: DocuSign.Model.DateStampProperties do
def decode(value, _options) do
value
end
end