Current section
Files
Jump to
Current section
Files
lib/docusign/model/comment_publish.ex
# 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.CommentPublish do
@moduledoc """
"""
@derive [Poison.Encoder]
defstruct [
:id,
:mentions,
:text,
:threadAnchorKeys,
:threadId,
:visibleTo
]
@type t :: %__MODULE__{
:id => String.t() | nil,
:mentions => [String.t()] | nil,
:text => String.t() | nil,
:threadAnchorKeys => %{optional(String.t()) => String.t()} | nil,
:threadId => String.t() | nil,
:visibleTo => [String.t()] | nil
}
end
defimpl Poison.Decoder, for: DocuSign.Model.CommentPublish do
def decode(value, _options) do
value
end
end