CurrentAnnouncementDto
The currently active platform announcement banner, as shown to all users in the web app.
Properties
| Name | Type | Description |
|---|---|---|
| code | string | Unique code identifying the announcement. Used as the per-browser dismissal key. |
Unique code identifying the announcement. Used as the per-browser dismissal key. | ||
| message | string | The banner text shown on large screens. |
The banner text shown on large screens. | ||
| messageShort | string | Shorter banner text shown on small screens. Falls back to Message when null. |
Shorter banner text shown on small screens. Falls back to Message when null. | ||
| textColor | string | Hex colour for the banner text (e.g. "#FFFFFF"). |
Hex colour for the banner text (e.g. "#FFFFFF"). | ||
| backgroundColor | string | Hex colour for the banner background (e.g. "#000000"). |
Hex colour for the banner background (e.g. "#000000"). | ||
| linkUrl | string | Optional link rendered after the message. Null means no link. |
Optional link rendered after the message. Null means no link. | ||
| linkText | string | Text for the optional link. Falls back to "Find out more" when null. |
Text for the optional link. Falls back to "Find out more" when null. | ||
JSON Example
{
"code": "string",
"message": "string",
"messageShort": "string",
"textColor": "string",
"backgroundColor": "string"
}