File

src/app/modules/shared/interfaces/batch.ts

Description

Batch interface

Index

Properties

Properties

appIcon
appIcon: string
Type : string
Optional

Batch image

batchId
batchId: string
Type : string
Optional

batchId

contentType
contentType: string
Type : string
Optional

Batch contentType

courseCreator
courseCreator: string
Type : string
Optional

courseCreator

createdBy
createdBy: string
Type : string
Optional

Batch createdBy

createdFor
createdFor: string[]
Type : string[]
Optional

createdFor

description
description: string
Type : string
Optional

Batch description

endDate
endDate: Date
Type : Date
Optional

Batch endDate

enrollmentType
enrollmentType: string
Type : string
Optional

natureofbatch

id
id: string
Type : string
Optional

Batch id

identifier
identifier: string
Type : string
Optional

Batch identifier

label
label: any
Type : any
Optional

Batch label

mentors
mentors: string[]
Type : string[]
Optional

mentors

name
name: string
Type : string
Optional

Batch name

participant
participant: any
Type : any
Optional

Batch patticipation

resourceType
resourceType: string
Type : string
Optional

Batch resourceType

startDate
startDate: Date
Type : Date
Optional

Batch startDate

status
status: number
Type : number
Optional

Stattus of Batch

userIds
userIds: string[]
Type : string[]
Optional

userIds

userName
userName: Array<string>
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;
}

results matching ""

    No results matching ""