forked from TrueCloudLab/frostfs-api-go
5494d3417f
Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
15 lines
463 B
Go
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"
|
|
)
|