import { BaseVideoCreative } from './baseVideoCreative';
import { DateTime } from './dateTime';
export interface SetTopBoxCreative extends BaseVideoCreative {
    externalAssetId?: string;
    providerId?: string;
    availabilityRegionIds?: string[];
    licenseWindowStartDateTime?: DateTime;
    licenseWindowEndDateTime?: DateTime;
}
