Spaces:
Sleeping
Sleeping
File size: 856 Bytes
c98875e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | // create-diagnostic-code.dto.ts
import { IsString, IsBoolean, IsOptional, IsArray } from 'class-validator';
import { ApiProperty } from '@nestjs/swagger';
export class CreateDiagnosticCodeDto {
@ApiProperty({ example: 'J18.9' })
@IsString()
code: string;
@ApiProperty({ example: 'Pneumonia, unspecified organism' })
@IsString()
description: string;
@ApiProperty({ required: false })
@IsString()
@IsOptional()
category?: string;
@ApiProperty({ required: false })
@IsString()
@IsOptional()
chapter?: string;
@ApiProperty({ required: false, type: [String] })
@IsArray()
@IsOptional()
includes?: string[];
@ApiProperty({ required: false, type: [String] })
@IsArray()
@IsOptional()
excludes?: string[];
@ApiProperty({ required: false, default: true })
@IsBoolean()
@IsOptional()
billable?: boolean;
}
|