src/services/content/content-info.ts
Properties |
correlationList |
correlationList:
|
Type : CorrelationData[]
|
course |
course:
|
Type : Course
|
Optional |
hierachyInfo |
hierachyInfo:
|
Type : HierarchyInfo[]
|
rollUp |
rollUp:
|
Type : Rollup
|
telemetryObject |
telemetryObject:
|
Type : TelemetryObject
|
import { TelemetryObject, Rollup, CorrelationData, HierarchyInfo , Course} from 'sunbird-sdk';
export interface ContentInfo {
telemetryObject: TelemetryObject;
rollUp: Rollup;
correlationList: CorrelationData[];
hierachyInfo: HierarchyInfo[];
course?: Course;
}