import * as $dara from '@darabonba/typescript'; export declare class ChannelAssemblyScheduleDataAdBreaks extends $dara.Model { /** * @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 * 100000 */ offsetMillis?: string; /** * @remarks * The name of the source location. * * @example * MySourceLocation */ sourceLocationName?: string; /** * @remarks * The name of the source. * * @example * MySource */ 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 ChannelAssemblyScheduleData extends $dara.Model { /** * @remarks * The information about ad breaks. */ adBreaks?: ChannelAssemblyScheduleDataAdBreaks[]; /** * @remarks * The scheduled playback duration. * * @example * 100000 */ approximateDurationSeconds?: number; /** * @remarks * The scheduled start time. * * @example * 1989128002313 */ approximateStartTime?: string; /** * @remarks * The entry type. * * @example * program */ entryType?: 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; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }