Interface INotificationsResponse

interface INotificationsResponse {
    next_token: string;
    notifications: INotification[];
}

Properties

next_token: string
notifications: INotification[]