import type { BannerIntent } from '../schemas/BannerIntent'; /** * This is the request dto to create a Banner in Harness */ export interface BannerDto { callToActions?: { [key: string]: any; }; enabled?: boolean; identifier: string; intent: BannerIntent; /** * Banner Message with max length 250 */ message: string; name: string; /** * Banner Title with max length 80 */ title: string; }