src/trigger-time-slot/request/dto/update-time-slot.dto.ts
Properties |
| Optional active |
Type : boolean
|
Decorators :
@ApiProperty({type: Boolean, required: false})
|
|
Inherited from
AddTimeSlotDTO
|
|
Defined in
AddTimeSlotDTO:7
|
| days |
Type : string[]
|
Decorators :
@ApiProperty({type: 'enum', required: false, isArray: true, enum: undefined, example: undefined})
|
|
Inherited from
AddTimeSlotDTO
|
|
Defined in
AddTimeSlotDTO:25
|
| Optional from |
Type : Date
|
Decorators :
@ApiProperty({type: Date, required: false})
|
|
Inherited from
AddTimeSlotDTO
|
|
Defined in
AddTimeSlotDTO:10
|
| timezone |
Type : string
|
Decorators :
@ApiProperty({type: String, required: true})
|
|
Inherited from
AddTimeSlotDTO
|
|
Defined in
AddTimeSlotDTO:16
|
| to |
Type : Date
|
Decorators :
@ApiProperty({type: Date, required: true})
|
|
Inherited from
AddTimeSlotDTO
|
|
Defined in
AddTimeSlotDTO:13
|
import { AddTimeSlotDTO } from './add-time-slot.dto';
export class UpdateTimeSlotDTO extends AddTimeSlotDTO {}