// Generated Source interface BannerInfo { /** * Type of a banner */ bannerType?: string; /** * Custom text description of a banner */ description?: string; /** * HTML formatted message content */ content?: string; /** * Datetime of message expiration in ISO 8601 format including timezone, for example 2016-03-10T18:07:52.534Z */ expirationDate?: string; } export default BannerInfo;