2020-10-22 15:41:49 +00:00
|
|
|
package object
|
|
|
|
|
|
|
|
const (
|
2020-10-22 16:10:42 +00:00
|
|
|
// AttributeName is an attribute key that is commonly used to denote
|
2020-10-22 15:41:49 +00:00
|
|
|
// human-friendly name.
|
2020-10-22 16:10:42 +00:00
|
|
|
AttributeName = "Name"
|
2020-10-22 15:41:49 +00:00
|
|
|
|
2020-10-22 16:10:42 +00:00
|
|
|
// AttributeFileName is an attribute key that is commonly used to denote
|
2020-10-22 15:41:49 +00:00
|
|
|
// file name to be associated with the object on saving.
|
2020-10-22 16:10:42 +00:00
|
|
|
AttributeFileName = "FileName"
|
2020-10-22 15:41:49 +00:00
|
|
|
|
2020-10-22 16:10:42 +00:00
|
|
|
// AttributeTimestamp is an attribute key that is commonly used to denote
|
2020-10-22 15:41:49 +00:00
|
|
|
// user-defined local time of object creation in Unix Timestamp format.
|
2020-10-22 16:10:42 +00:00
|
|
|
AttributeTimestamp = "Timestamp"
|
2020-10-22 15:41:49 +00:00
|
|
|
)
|