Current section

Files

Jump to
docusign lib docusign model recipient_attachment.ex
Raw

lib/docusign/model/recipient_attachment.ex

# NOTE: This class is auto generated by the swagger code generator program.
# https://github.com/swagger-api/swagger-codegen.git
# Do not edit the class manually.
defmodule DocuSign.Model.RecipientAttachment do
@moduledoc """
"""
@derive [Poison.Encoder]
defstruct [
:attachmentId,
:attachmentType,
:data,
:label,
:name,
:remoteUrl
]
@type t :: %__MODULE__{
:attachmentId => String.t(),
:attachmentType => String.t(),
:data => String.t(),
:label => String.t(),
:name => String.t(),
:remoteUrl => String.t()
}
end
defimpl Poison.Decoder, for: DocuSign.Model.RecipientAttachment do
def decode(value, _options) do
value
end
end