src/app/modules/workspace/interfaces/batch.ts
Batch interface
appIcon |
appIcon: |
Type : string
|
Batch image |
batchId |
batchId: |
Type : string
|
batchId |
contentType |
contentType: |
Type : string
|
Batch contentType |
courseCreator |
courseCreator: |
Type : string
|
courseCreator |
createdBy |
createdBy: |
Type : string
|
Batch createdBy |
createdFor |
createdFor: |
Type : string[]
|
createdFor |
description |
description: |
Type : string
|
Batch description |
endDate |
endDate: |
Type : Date
|
Batch endDate |
enrollmentType |
enrollmentType: |
Type : string
|
natureofbatch |
id |
id: |
Type : string
|
Batch id |
identifier |
identifier: |
Type : string
|
Batch identifier |
label |
label: |
Type : any
|
Batch label |
mentors |
mentors: |
Type : string[]
|
mentors |
name |
name: |
Type : string
|
Batch name |
participant |
participant: |
Type : any
|
Batch patticipation |
resourceType |
resourceType: |
Type : string
|
Batch resourceType |
startDate |
startDate: |
Type : Date
|
Batch startDate |
status |
status: |
Type : number
|
Stattus of Batch |
userIds |
userIds: |
Type : string[]
|
userIds |
userName |
userName: |
Type : string[]
|
Batch createdBy user |
export interface Ibatch {
/**
* Batch name
*/
name?: string;
/**
* Batch description
*/
description?: string;
/**
* Batch image
*/
appIcon?: string;
/**
* Batch resourceType
*/
resourceType?: string;
/**
* Batch contentType
*/
contentType?: string;
/**
* Batch identifier
*/
identifier?: string;
// action: IAction;
/**
* Batch patticipation
*/
participant?: any;
/**
* Batch id
*/
id?: string;
/**
* Batch label
*/
label?: any;
/**
* Batch createdBy
*/
createdBy?: string;
/**
* Batch startDate
*/
startDate?: Date;
/**
* Batch endDate
*/
endDate?: Date;
/**
* Batch createdBy user
*/
userName?: Array<string>;
/**
* Stattus of Batch
*/
status?: number;
/**
* natureofbatch
*/
enrollmentType?: string;
/**
* mentors
*/
mentors?: string [];
/**
* courseCreator
*/
courseCreator?: string;
/**
* createdFor
*/
createdFor?: string[];
/**
* userIds
*/
userIds?: string[];
/**
* batchId
*/
batchId?: string;
}