import { IsString, IsOptional, IsObject, MaxLength } from 'class-validator'; import { ApiProperty, ApiPropertyOptional } from '@nestjs/swagger'; export class CreateTimedExecuteConfigDto { @ApiProperty({ example: 'Default Timer Config' }) @IsString() @MaxLength(100) config_name: string; @ApiPropertyOptional({ example: 'Standard TimedExecute settings' }) @IsString() @IsOptional() description?: string; @ApiPropertyOptional() @IsObject() @IsOptional() config_data?: Record; }