frostfs-api-go/pkg/object/wellknown_attributes.go

16 lines
463 B
Go
Raw Normal View History

package object
const (
// AttrName is an attribute key that is commonly used to denote
// human-friendly name.
AttrName = "Name"
// AttrFileName is an attribute key that is commonly used to denote
// file name to be associated with the object on saving.
AttrFileName = "FileName"
// AttrTimestamp is an attribute key that is commonly used to denote
// user-defined local time of object creation in Unix Timestamp format.
AttrTimestamp = "Timestamp"
)