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