forked from TrueCloudLab/frostfs-api-go
ad0b01e892
Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
15 lines
493 B
Go
15 lines
493 B
Go
package object
|
|
|
|
const (
|
|
// AttributeName is an attribute key that is commonly used to denote
|
|
// human-friendly name.
|
|
AttributeName = "Name"
|
|
|
|
// AttributeFileName is an attribute key that is commonly used to denote
|
|
// file name to be associated with the object on saving.
|
|
AttributeFileName = "FileName"
|
|
|
|
// AttributeTimestamp is an attribute key that is commonly used to denote
|
|
// user-defined local time of object creation in Unix Timestamp format.
|
|
AttributeTimestamp = "Timestamp"
|
|
)
|