File

src/app/modules/core/interfaces/enrolledCourses.ts

Properties

action
action: any
Type : any

object type of IAction

batch
batch: any
Type : any
batchId
batchId: string
Type : string

course batch id

courseId
courseId: string
Type : string

course id

courseLogoUrl
courseLogoUrl: string
Type : string

course image

courseName
courseName: string
Type : string

course name

description
description: string
Type : string

course description

identifier
identifier: string
Type : string

course identifier

leafNodesCount
leafNodesCount: number
Type : number

number of nodes

me_averageRating
me_averageRating: number
Type : number

course rating

progress
progress: number
Type : number

course progress

userId
userId: string
Type : string

user id

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import { ServerResponse, IAction } from '@sunbird/shared';
export interface IEnrolledCourses {
    err: ServerResponse;
    enrolledCourses: ICourses[];
}

export interface ICourses {
   /**
    * course name
    */
    courseName: string;
    /**
    * course description
    */
    description: string;
    /**
    * course batch id
    */
    batchId?: string;
    /**
    * number of nodes
    */
    leafNodesCount: number;
    /**
    * course progress
    */
    progress?: number;
     /**
    * course image
    */
    courseLogoUrl?: string;
    /**
    * course id
    */
    courseId: string;
    /**
    * course identifier
    */
    identifier?: string;
    /**
    * course rating
    */
    me_averageRating?: number;
    /**
    * user id
    */
    userId: string;
    /**
    * object type of IAction
    */
    action?: IAction;

    batch?: any;
}

results matching ""

    No results matching ""