# NOTE: This file is auto generated by OpenAPI Generator 6.2.1 (https://openapi-generator.tech). # Do not edit this file manually. defmodule DocuSign.Model.EnvelopeViews do @moduledoc """ Provides a URL that you can embed in your application to provide access to the DocuSign UI. ### Related topics - [Embedded signing and sending](/docs/esign-rest-api/esign101/concepts/embedding/) - [Send an envelope via your app](/docs/esign-rest-api/how-to/embedded-sending/) - [Introducing customizable embedded sending](https://www.docusign.com/blog/developers/introducing-customizable-embedded-sending) """ @derive [Poison.Encoder] defstruct [ :url ] @type t :: %__MODULE__{ :url => String.t() | nil } end defimpl Poison.Decoder, for: DocuSign.Model.EnvelopeViews do def decode(value, _options) do value end end