type

Object

type Object struct { Key string Size int64 ContentType string // ModifiedAt must be non-zero for every object returned by List. Ridu uses // it to enforce the reconciliation grace period and refuses cleanup when it // is unavailable. ModifiedAt time.Time }

Object identity and authoritative content metadata.

Source storage/storage.go:18

Keystring
Opaque object key.
Sizeint64
Stored byte length.
ContentTypestring
Stored media type.
ModifiedAttime.Time
Required authoritative timestamp used by safe reconciliation.