/** * @module Notifications */ /** * Details of the application that will handle any actions coming from a particular stream. */ export interface NotificationStream { /** * Unique id of the stream. */ id: string; /** * Stream title. * * Providing a different displayName for an existing stream id will update the * displayName of the stream stored in Notification Center. * */ displayName: string; /** * ID of the application source of this stream. */ appId: string; }