UNPKG

kaltura-node-typescript-client

Version:
41 lines (40 loc) 1.39 kB
import { KalturaObjectMetadata } from '../kaltura-object-base'; import { KalturaCuePointType } from './KalturaCuePointType'; import { KalturaCuePointStatus } from './KalturaCuePointStatus'; import { KalturaNullableBoolean } from './KalturaNullableBoolean'; import { KalturaObjectBase, KalturaObjectBaseArgs } from '../kaltura-object-base'; export interface KalturaCuePointArgs extends KalturaObjectBaseArgs { entryId?: string; triggeredAt?: Date; tags?: string; startTime?: number; userId?: string; partnerData?: string; partnerSortValue?: number; forceStop?: KalturaNullableBoolean; thumbOffset?: number; systemName?: string; } export declare class KalturaCuePoint extends KalturaObjectBase { readonly id: string; readonly intId: number; readonly cuePointType: KalturaCuePointType; readonly status: KalturaCuePointStatus; entryId: string; readonly partnerId: number; readonly createdAt: Date; readonly updatedAt: Date; triggeredAt: Date; tags: string; startTime: number; userId: string; partnerData: string; partnerSortValue: number; forceStop: KalturaNullableBoolean; thumbOffset: number; systemName: string; readonly isMomentary: boolean; readonly copiedFrom: string; constructor(data?: KalturaCuePointArgs); protected _getMetadata(): KalturaObjectMetadata; }