import * as $dara from '@darabonba/typescript'; export declare class ChannelAssemblyProgramAdBreaks extends $dara.Model { /** * @remarks * The name of the channel. * * @example * MyChannel */ channelName?: string; /** * @remarks * The SCTE-35 message type. * * @example * SPLICE_INSERT */ messageType?: string; /** * @remarks * The position to insert the ad marker, as an offset relative to the beginning of the program. Unit: milliseconds. * * @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 ChannelAssemblyProgram extends $dara.Model { /** * @remarks * The ad breaks. */ adBreaks?: ChannelAssemblyProgramAdBreaks[]; /** * @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 * Extracts a clip from the source. * * @example * {StartOffsetMillis: 213123, EndOffsetMillis: 213134} */ clipRange?: string; /** * @remarks * The time when the program was created. * * @example * 2024-04-02T00:58:19Z */ gmtCreate?: string; /** * @remarks * The time when the program was last modified. * * @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. Valid values: vodSource and liveSource. * * @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; }); }