src/app/modules/shared/interfaces/batch.ts
Batch interface
Properties |
|
appIcon |
appIcon:
|
Type : string
|
Optional |
Batch image |
batchId |
batchId:
|
Type : string
|
Optional |
batchId |
contentType |
contentType:
|
Type : string
|
Optional |
Batch contentType |
courseCreator |
courseCreator:
|
Type : string
|
Optional |
courseCreator |
createdBy |
createdBy:
|
Type : string
|
Optional |
Batch createdBy |
createdFor |
createdFor:
|
Type : string[]
|
Optional |
createdFor |
description |
description:
|
Type : string
|
Optional |
Batch description |
endDate |
endDate:
|
Type : Date
|
Optional |
Batch endDate |
enrollmentType |
enrollmentType:
|
Type : string
|
Optional |
natureofbatch |
id |
id:
|
Type : string
|
Optional |
Batch id |
identifier |
identifier:
|
Type : string
|
Optional |
Batch identifier |
label |
label:
|
Type : any
|
Optional |
Batch label |
mentors |
mentors:
|
Type : string[]
|
Optional |
mentors |
name |
name:
|
Type : string
|
Optional |
Batch name |
participant |
participant:
|
Type : any
|
Optional |
Batch patticipation |
resourceType |
resourceType:
|
Type : string
|
Optional |
Batch resourceType |
startDate |
startDate:
|
Type : Date
|
Optional |
Batch startDate |
status |
status:
|
Type : number
|
Optional |
Stattus of Batch |
userIds |
userIds:
|
Type : string[]
|
Optional |
userIds |
userName |
userName:
|
Type : Array<string>
|
Optional |
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;
}