Current section
Files
Jump to
Current section
Files
lib/docusign/model/external_file.ex
# 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.ExternalFile do
@moduledoc """
This object contains information about a file or folder in cloud storage.
"""
@derive Jason.Encoder
defstruct [
:date,
:hasCompositeTemplate,
:id,
:img,
:name,
:ownerName,
:size,
:supported,
:type,
:uri
]
@type t :: %__MODULE__{
:date => String.t() | nil,
:hasCompositeTemplate => String.t() | nil,
:id => String.t() | nil,
:img => String.t() | nil,
:name => String.t() | nil,
:ownerName => String.t() | nil,
:size => String.t() | nil,
:supported => String.t() | nil,
:type => String.t() | nil,
:uri => String.t() | nil
}
def decode(value) do
value
end
end