Add SizeIsDeferred to FileInfo

This commit is contained in:
Adam Jensen 2018-04-23 17:07:51 -04:00
parent 3a4f216d5c
commit 82bc04cb36
1 changed files with 2 additions and 0 deletions

View File

@ -10,6 +10,8 @@ type FileInfo struct {
ID string
// Total file size in bytes specified in the NewUpload call
Size int64
// Indicates whether the total file size is deferred until later
SizeIsDeferred bool
// Offset in bytes (zero-based)
Offset int64
MetaData MetaData