import * as $dara from '@darabonba/typescript'; export declare class ProgramAdBreaks extends $dara.Model { /** * @remarks * The name of the channel. * * @example * MyChannel */ channelName?: string; /** * @remarks * MessageType * * @example * SPLICE_INSERT */ messageType?: string; /** * @remarks * The offset. * * @example * 1000 */ offsetMillis?: number; /** * @remarks * The name of the program. * * @example * program_name */ programName?: string; /** * @remarks * The name of the source location. * * @example * MySourceLocation */ sourceLocationName?: string; /** * @remarks * The name of the source. * * @example * MyAdSource */ sourceName?: string; /** * @remarks * The SpliceInsert configurations. * * @example * {"AvailNumber":0,"AvailExpected":0,"SpliceEventID":1,"UniqueProgramID":0} */ spliceInsertSettings?: string; /** * @remarks * The TimeSignal configurations. * * @example * {"segmentationEventID":0,"segmentationUPIDType":14,"segmentationUPID":"upid","segmentationTypeID":48,"segmentNumber":0,"segmentsExpected":0,"subSegmentNumber":1,"subSegmentsExpected":0} */ timeSignalSettings?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class Program extends $dara.Model { /** * @remarks * The ad breaks. */ adBreaks?: ProgramAdBreaks[]; /** * @remarks * The ARN of the program. * * @example * acs:ims:mediaweaver:::program/myChannel/MyProgram */ arn?: string; /** * @remarks * The name of the channel. * * @example * MyChannel */ channelName?: string; /** * @remarks * The information about the clip. * * @example * {StartOffsetMillis: 213123, EndOffsetMillis: 213134} */ clipRange?: string; /** * @remarks * The creation time. * * @example * 2024-04-02T00:58:19Z */ gmtCreate?: string; /** * @remarks * The modification time. * * @example * 2024-04-02T00:58:19Z */ gmtModified?: string; /** * @remarks * The name of the program. * * @example * program1 */ programName?: string; /** * @remarks * The name of the source location. * * @example * MySourceLocation */ sourceLocationName?: string; /** * @remarks * The name of the source. * * @example * MySource */ sourceName?: string; /** * @remarks * The source type. * * @example * vodSource */ sourceType?: string; /** * @remarks * The program transition method. * * @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; }); }