Current section

Files

Jump to
docusign lib docusign model brand_logos.ex
Raw

lib/docusign/model/brand_logos.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.BrandLogos do
@moduledoc """
The URIs for retrieving the logos that are associated with the brand. These are read-only properties that provide a URI to logos in use. To update a logo use [AccountBrands: updateLogo](/docs/esign-rest-api/reference/accounts/accountbrands/updatelogo/).
"""
@derive Jason.Encoder
defstruct [
:email,
:primary,
:secondary
]
@type t :: %__MODULE__{
:email => String.t() | nil,
:primary => String.t() | nil,
:secondary => String.t() | nil
}
def decode(value) do
value
end
end