2020-10-22 18:41:49 +03:00
|
|
|
package object
|
|
|
|
|
|
|
|
const (
|
2020-10-22 19:10:42 +03:00
|
|
|
// AttributeName is an attribute key that is commonly used to denote
|
2020-10-22 18:41:49 +03:00
|
|
|
// human-friendly name.
|
2020-10-22 19:10:42 +03:00
|
|
|
AttributeName = "Name"
|
2020-10-22 18:41:49 +03:00
|
|
|
|
2020-10-22 19:10:42 +03:00
|
|
|
// AttributeFileName is an attribute key that is commonly used to denote
|
2020-10-22 18:41:49 +03:00
|
|
|
// file name to be associated with the object on saving.
|
2020-10-22 19:10:42 +03:00
|
|
|
AttributeFileName = "FileName"
|
2020-10-22 18:41:49 +03:00
|
|
|
|
2020-10-22 19:10:42 +03:00
|
|
|
// AttributeTimestamp is an attribute key that is commonly used to denote
|
2020-10-22 18:41:49 +03:00
|
|
|
// user-defined local time of object creation in Unix Timestamp format.
|
2020-10-22 19:10:42 +03:00
|
|
|
AttributeTimestamp = "Timestamp"
|
2021-03-15 10:47:13 +03:00
|
|
|
|
|
|
|
// AttributeTimestamp is an attribute key that is commonly used to denote
|
|
|
|
// MIME Content Type of object's payload.
|
|
|
|
AttributeContentType = "Content-Type"
|
2020-10-22 18:41:49 +03:00
|
|
|
)
|