forked from TrueCloudLab/frostfs-api-go
16 lines
463 B
Go
16 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"
|
||
|
)
|