Announcement Object
Lists current announcements that the user should see.
type Announcement {
createdAt: DateTime!
updatedAt: DateTime!
title: String!
messageHtml: String!
importance: AnnouncementImportanceEnum!
type: String!
extra: Metadata!
}
Fields
createdAt ● DateTime!
The date & time at which this announcement was created.
updatedAt ● DateTime!
The date & time at which this announcement was last updated.
title ● String!
The announcement's title.
messageHtml ● String!
The announcement's description, may contain HTML formatting.
importance ● AnnouncementImportanceEnum!
Determine the how critical the announcement is. UNSET if no severity level was defined for this announcement.
type ● String!
The announcement's type, for example "CUSTOM". Used to programatically distinguish between message types thus allowing to render the message differently, and allows to know the expected shape for the extra field.
extra ● Metadata!
Additional information about this announcement.
Member Of
Shop object