@documment/mmp.core
Version:
This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 1.0.1.
40 lines (39 loc) • 854 B
TypeScript
export interface IDmc {
id: number;
notQualifying: boolean;
cancer: boolean;
glaucoma: boolean;
aids: boolean;
hepatitis: boolean;
als: boolean;
crohns: boolean;
alzheimers: boolean;
nailPatella: boolean;
cachexia: boolean;
pain: boolean;
nausea: boolean;
seizures: boolean;
spasms: boolean;
approved: boolean;
explanation: string;
}
export declare class Dmc implements IDmc {
id: number;
notQualifying: boolean;
cancer: boolean;
glaucoma: boolean;
aids: boolean;
hepatitis: boolean;
als: boolean;
crohns: boolean;
alzheimers: boolean;
nailPatella: boolean;
cachexia: boolean;
pain: boolean;
nausea: boolean;
seizures: boolean;
spasms: boolean;
approved: boolean;
explanation: string;
constructor(params?: any);
}