Current section
Files
Jump to
Current section
Files
lib/docusign/model/account_watermarks.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.AccountWatermarks do
@moduledoc """
"""
@derive Jason.Encoder
defstruct [
:displayAngle,
:enabled,
:font,
:fontColor,
:fontSize,
:id,
:imageBase64,
:transparency,
:watermarkText
]
@type t :: %__MODULE__{
:displayAngle => String.t() | nil,
:enabled => String.t() | nil,
:font => String.t() | nil,
:fontColor => String.t() | nil,
:fontSize => String.t() | nil,
:id => String.t() | nil,
:imageBase64 => String.t() | nil,
:transparency => String.t() | nil,
:watermarkText => String.t() | nil
}
def decode(value) do
value
end
end