src/app/enrolled-course-details-page/course.interface.ts
Properties |
|
batch |
batch:
|
Type : Batch | any
|
channel |
channel:
|
Type : string
|
Optional |
corRelationList |
corRelationList:
|
Type : Array<CorrelationData>
|
Optional |
courseId |
courseId:
|
Type : string
|
Optional |
objRollup |
objRollup:
|
Type : Rollup
|
Optional |
pageId |
pageId:
|
Type : string
|
telemetryObject |
telemetryObject:
|
Type : TelemetryObject
|
Optional |
userConsent |
userConsent:
|
Type : string
|
Optional |
userId |
userId:
|
Type : string
|
import { Batch, TelemetryObject, Rollup, CorrelationData } from 'sunbird-sdk';
export interface EnrollCourse {
userId: string;
batch: Batch | any;
pageId: string;
courseId?: string;
telemetryObject?: TelemetryObject;
objRollup?: Rollup;
corRelationList?: Array<CorrelationData>;
channel?: string;
userConsent?: string;
}