src/app/modules/program/interfaces/program.ts
bloomsLevel |
bloomsLevel: |
Type : any[]
|
board |
board: |
Type : string
|
channel |
channel: |
Type : string
|
collection |
collection: |
Type : string
|
collectionName |
collectionName: |
Type : any
|
collectionStatus |
collectionStatus: |
Type : any
|
collectionType |
collectionType: |
Type : any
|
collectionUnitIdentifier |
collectionUnitIdentifier: |
Type : any
|
currentOrgRole |
currentOrgRole: |
Type : string
|
currentRoleIds |
currentRoleIds: |
Type : number[]
|
currentRoles |
currentRoles: |
Type : string[]
|
framework |
framework: |
Type : string
|
frameworkData |
frameworkData: |
Type : any
|
gradeLevel |
gradeLevel: |
Type : any
|
hierarchyObj |
hierarchyObj: |
Type : any
|
lastOpenedUnitChild |
lastOpenedUnitChild: |
Type : any
|
lastOpenedUnitParent |
lastOpenedUnitParent: |
Type : any
|
medium |
medium: |
Type : any
|
nominationDetails |
nominationDetails: |
Type : any
|
onBoardSchool |
onBoardSchool: |
Type : string
|
program |
program: |
Type : string
|
programId |
programId: |
Type : string
|
questionSetEditorDetails |
questionSetEditorDetails: |
Type : any
|
questionType |
questionType: |
Type : string
|
resourceIdentifier |
resourceIdentifier: |
Type : string
|
selectedSchoolForReview |
selectedSchoolForReview: |
Type : string
|
subject |
subject: |
Type : any
|
targetCollectionFrameworksData |
targetCollectionFrameworksData: |
Type : any
|
targetCollectionMimetype |
targetCollectionMimetype: |
Type : any
|
targetCollectionPrimaryCategory |
targetCollectionPrimaryCategory: |
Type : any
|
telemetryPageDetails |
telemetryPageDetails: |
Type : any
|
textbook |
textbook: |
Type : string
|
textbookName |
textbookName: |
Type : any
|
textBookUnitIdentifier |
textBookUnitIdentifier: |
Type : any
|
topic |
topic: |
Type : string
|
topicList |
topicList: |
Type : any[]
|
export interface ISessionContext { // TODO: remove any 'textbook' reference
textBookUnitIdentifier?: any;
collectionUnitIdentifier?: any;
lastOpenedUnitChild?: any;
lastOpenedUnitParent?: any;
framework?: string;
frameworkData?: any;
channel?: string;
board?: string;
medium?: any;
gradeLevel?: any;
subject?: any;
textbook?: string;
collection?: string;
topic?: string;
questionType?: string;
programId?: string;
program?: string;
currentRoles?: Array<string>;
currentRoleIds?: Array<number>;
bloomsLevel?: Array<any>;
topicList?: Array<any>;
onBoardSchool?: string;
selectedSchoolForReview?: string;
resourceIdentifier?: string;
hierarchyObj?: any;
textbookName?: any;
collectionName?: any;
collectionType?: any;
collectionStatus?: any;
currentOrgRole?: string;
nominationDetails?: any;
telemetryPageDetails?: any;
questionSetEditorDetails?: any;
targetCollectionFrameworksData?: any;
targetCollectionPrimaryCategory?: any;
targetCollectionMimetype?: any;
}
export interface IPagination {
totalItems: number;
currentPage: number;
pageSize: number;
totalPages: number;
startPage: number;
endPage: number;
startIndex: number;
endIndex: number;
pages: Array<number>;
}