Current section

Files

Jump to
docusign lib docusign model template_views.ex
Raw

lib/docusign/model/template_views.ex

# NOTE: This file is auto generated by OpenAPI Generator 6.4.0 (https://openapi-generator.tech).
# Do not edit this file manually.
defmodule DocuSign.Model.TemplateViews do
@moduledoc """
A TemplateView contains a URL that you can embed in your application to generate a template view that uses the DocuSign user interface (UI).
"""
@derive [Poison.Encoder]
defstruct [
:url
]
@type t :: %__MODULE__{
:url => String.t() | nil
}
end
defimpl Poison.Decoder, for: DocuSign.Model.TemplateViews do
def decode(value, _options) do
value
end
end