Spaces:
Sleeping
Sleeping
| // create-procedure-code.dto.ts | |
| import { IsString, IsBoolean, IsOptional, IsNumber } from 'class-validator'; | |
| import { ApiProperty } from '@nestjs/swagger'; | |
| export class CreateProcedureCodeDto { | |
| ({ example: '99213' }) | |
| () | |
| code: string; | |
| ({ example: 'Office or other outpatient visit, established patient, moderate complexity' }) | |
| () | |
| description: string; | |
| ({ required: false }) | |
| () | |
| () | |
| category?: string; | |
| ({ required: false }) | |
| () | |
| () | |
| subcategory?: string; | |
| ({ required: false }) | |
| () | |
| () | |
| relativeValueUnit?: number; | |
| ({ required: false }) | |
| () | |
| () | |
| globalDays?: number; | |
| ({ required: false, default: true }) | |
| () | |
| () | |
| billable?: boolean; | |
| } | |