lib/docusign/model/brand_resource_urls.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.BrandResourceUrls do
  @moduledoc """
  Brands use resource files to style the following experiences:   - Email - Sending - Signing - Captive (embedded) signing   You can modify these resource files to customize these experiences.
  """

  @derive Jason.Encoder
  defstruct [
    :email,
    :sending,
    :signing,
    :signingCaptive
  ]

  @type t :: %__MODULE__{
          :email => String.t() | nil,
          :sending => String.t() | nil,
          :signing => String.t() | nil,
          :signingCaptive => String.t() | nil
        }

  def decode(value) do
    value
  end
end