Current section
Files
Jump to
Current section
Files
lib/docusign/model/brand_logos.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.BrandLogos do
@moduledoc """
"""
@derive [Poison.Encoder]
defstruct [
:email,
:primary,
:secondary
]
@type t :: %__MODULE__{
:email => String.t(),
:primary => String.t(),
:secondary => String.t()
}
end
defimpl Poison.Decoder, for: DocuSign.Model.BrandLogos do
def decode(value, _options) do
value
end
end