frostfs-api-go/pkg/object/wellknown_attributes.go
Leonard Lyubich 5494d3417f [#172] sdk/object: Define well-known application attributes
Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
2020-10-22 19:15:45 +03:00

15 lines
463 B
Go

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"
)