Patient intake dto
@IsIn(['doc', 'image'])
@IsNotEmpty()
@ApiProperty({ example: 'doc', enum: FileType })
type: FileType;
@IsString()
@IsNotEmpty()
@ApiProperty({
example: 'https://mentalhealthai.s3.amazonaws.com/sample.jpeg',
})
file: string;
@IsUUID()
@IsNotEmpty()
@ApiProperty({
example: '6f1bf9f2-3f09-465b-9884-d657261687f5',
})
report_type_id: string;
}```