import * as $dara from '@darabonba/typescript'; export declare class CreateProgramRequest extends $dara.Model { /** * @remarks * The information about ad breaks. * * @example * [{"MessageType":"SPLICE_INSERT","OffsetMillis":1000,"SourceLocationName":"MySourceLocation","SourceName":"MyAdSource","SpliceInsertSettings":{"AvailNumber":0,"AvailExpected":0,"SpliceEventID":1,"UniqueProgramID":0}}] */ adBreaks?: string; /** * @remarks * The name of the channel. * * This parameter is required. * * @example * MyChannel */ channelName?: string; /** * @remarks * Extracts a clip from the source. * * @example * {StartOffsetMillis: 213123, EndOffsetMillis: 213134} */ clipRange?: string; /** * @remarks * The name of the program. * * This parameter is required. * * @example * program1 */ programName?: string; /** * @remarks * The source location. * * This parameter is required. * * @example * MySourceLcation */ sourceLocationName?: string; /** * @remarks * The name of the source. * * This parameter is required. * * @example * MySource */ sourceName?: string; /** * @remarks * The source type of the program. * * This parameter is required. * * @example * vodSource */ sourceType?: string; /** * @remarks * The program transition method. * * This parameter is required. * * @example * {"Type": "RELATIVE", "RelativePosition": "AFTER_PROGRAM", "RelativeProgram": "program2"} */ transition?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }