# NOTE: This file is auto generated by OpenAPI Generator 7.12.0 (https://openapi-generator.tech).
# Do not edit this file manually.
defmodule DocuSign.Model.Attachment do
@moduledoc """
Contains information about an attachment.
"""
@derive Jason.Encoder
defstruct [
:accessControl,
:attachmentId,
:attachmentType,
:data,
:label,
:name,
:remoteUrl
]
@type t :: %__MODULE__{
:accessControl => String.t() | nil,
:attachmentId => String.t() | nil,
:attachmentType => String.t() | nil,
:data => String.t() | nil,
:label => String.t() | nil,
:name => String.t() | nil,
:remoteUrl => String.t() | nil
}
def decode(value) do
value
end
end