Current section
Files
Jump to
Current section
Files
lib/docusign/model/document_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.DocumentResponsiveHtmlPreview do
@moduledoc """
This resource is used to create a responsive preview of a specific document.
"""
@derive [Poison.Encoder]
defstruct [
:htmlDefinitions
]
@type t :: %__MODULE__{
:htmlDefinitions => [String.t()] | nil
}
end
defimpl Poison.Decoder, for: DocuSign.Model.DocumentResponsiveHtmlPreview do
def decode(value, _options) do
value
end
end