autobindings/constants/attributes.go

18 lines
519 B
Go
Raw Normal View History

2023-02-21 20:31:49 +00:00
package constants
const Name = "name"
2023-02-23 18:14:27 +00:00
2023-02-21 20:31:49 +00:00
const Picture = "picture"
const DefaultProfilePicture = "defaultPicture"
2023-02-23 18:14:27 +00:00
2023-02-21 20:31:49 +00:00
const Archived = "archived"
const LastSeenTime = "lastMessageSeenTime"
// PeerOnline stores state on if the peer believes it is online
const PeerOnline = "peer-online"
const PeerAutostart = "autostart"
// ConversationNotificationPolicy is the attribute label for conversations. When App NotificationPolicy is OptIn a true value here opts in
const ConversationNotificationPolicy = "notification-policy"