Current section

Files

Jump to
docusign lib docusign model template_responsive_html_preview.ex
Raw

lib/docusign/model/template_responsive_html_preview.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.TemplateResponsiveHtmlPreview do
@moduledoc """
This resource is used to create a responsive preview of all of the documents associated with a template.
"""
@derive [Poison.Encoder]
defstruct [
:htmlDefinitions
]
@type t :: %__MODULE__{
:htmlDefinitions => [String.t()] | nil
}
end
defimpl Poison.Decoder, for: DocuSign.Model.TemplateResponsiveHtmlPreview do
def decode(value, _options) do
value
end
end