ch-admin-api-client-typescript
Version:
Openapi generated typescript-axios client for CloudHospital admin
116 lines • 2.38 kB
TypeScript
/**
* CloudHospital Admin Api
* CloudHospital application with Swagger, Swashbuckle, and API versioning.
*
* The version of the OpenAPI document: 1
* Contact: developer@icloudhospital.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { Gender } from './gender';
/**
*
* @export
* @interface CreateDoctorCommand
*/
export interface CreateDoctorCommand {
/**
*
* @type {string}
* @memberof CreateDoctorCommand
*/
'email'?: string | null;
/**
*
* @type {string}
* @memberof CreateDoctorCommand
*/
'firstName'?: string | null;
/**
*
* @type {string}
* @memberof CreateDoctorCommand
*/
'lastName'?: string | null;
/**
*
* @type {string}
* @memberof CreateDoctorCommand
*/
'phone'?: string | null;
/**
*
* @type {Gender}
* @memberof CreateDoctorCommand
*/
'gender'?: Gender;
/**
*
* @type {Date}
* @memberof CreateDoctorCommand
*/
'dateOfBirth'?: Date | null;
/**
*
* @type {Date}
* @memberof CreateDoctorCommand
*/
'startPracticeDate'?: Date | null;
/**
*
* @type {string}
* @memberof CreateDoctorCommand
*/
'timeZone'?: string | null;
/**
*
* @type {string}
* @memberof CreateDoctorCommand
*/
'hospitalId'?: string | null;
/**
*
* @type {string}
* @memberof CreateDoctorCommand
*/
'languageCode'?: string | null;
/**
*
* @type {boolean}
* @memberof CreateDoctorCommand
*/
'useTimetable'?: boolean | null;
/**
*
* @type {string}
* @memberof CreateDoctorCommand
*/
'name'?: string | null;
/**
*
* @type {string}
* @memberof CreateDoctorCommand
*/
'license'?: string | null;
/**
*
* @type {string}
* @memberof CreateDoctorCommand
*/
'jobTitle'?: string | null;
/**
*
* @type {string}
* @memberof CreateDoctorCommand
*/
'jobPosition'?: string | null;
/**
*
* @type {boolean}
* @memberof CreateDoctorCommand
*/
'needToCreateIdentityAccount'?: boolean;
}
//# sourceMappingURL=create-doctor-command.d.ts.map