Platform object to pass to register function.
register
import { register, NotificationsPlatform } from '@openfin/workspace/notifications';const platform: NotificationsPlatform = { id: 'my-notifications-platform', title: 'My Notifications Platform', icon: 'https://link.to/my-notifications-platform.ico'}await register(platform); Copy
import { register, NotificationsPlatform } from '@openfin/workspace/notifications';const platform: NotificationsPlatform = { id: 'my-notifications-platform', title: 'My Notifications Platform', icon: 'https://link.to/my-notifications-platform.ico'}await register(platform);
URL of the icon to be displayed for this platform.
Unique identifier of the platform.
Stream title.
Providing a different displayName for an existing stream id will update the displayName of the stream stored in Notification Center.
Platform object to pass to
register
function.