# NOTE: This file is auto generated by OpenAPI Generator 7.22.0 (https://openapi-generator.tech).
# Do not edit this file manually.
defmodule Spatio.Model.InitChunkedUploadResponse do
@moduledoc """
"""
@derive JSON.Encoder
defstruct [
:sessionId,
:blocksToUpload,
:blocksAlreadyExist,
:deduplicationPct,
:estimatedUploadSize
]
@type t :: %__MODULE__{
:sessionId => String.t,
:blocksToUpload => [String.t],
:blocksAlreadyExist => [String.t],
:deduplicationPct => float(),
:estimatedUploadSize => integer()
}
def decode(value) do
value
end
end