ch-admin-api-client-typescript
Version:
Openapi generated typescript-axios client for CloudHospital admin
161 lines • 3.65 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 { AppointmentType } from './appointment-type';
import { Gender } from './gender';
import { MediaModel } from './media-model';
import { PaymentMethod } from './payment-method';
/**
*
* @export
* @interface CreateWalkInAppointmentCommand
*/
export interface CreateWalkInAppointmentCommand {
/**
*
* @type {AppointmentType}
* @memberof CreateWalkInAppointmentCommand
*/
'appointmentType'?: AppointmentType;
/**
*
* @type {boolean}
* @memberof CreateWalkInAppointmentCommand
*/
'isOnline'?: boolean;
/**
*
* @type {string}
* @memberof CreateWalkInAppointmentCommand
*/
'hospitalId'?: string;
/**
*
* @type {string}
* @memberof CreateWalkInAppointmentCommand
*/
'patientId'?: string | null;
/**
*
* @type {string}
* @memberof CreateWalkInAppointmentCommand
*/
'hospitalSpecialtyId'?: string | null;
/**
*
* @type {string}
* @memberof CreateWalkInAppointmentCommand
*/
'doctorAffiliationId'?: string | null;
/**
*
* @type {string}
* @memberof CreateWalkInAppointmentCommand
*/
'dealPackageId'?: string | null;
/**
*
* @type {string}
* @memberof CreateWalkInAppointmentCommand
*/
'serviceId'?: string | null;
/**
*
* @type {string}
* @memberof CreateWalkInAppointmentCommand
*/
'languageCode'?: string | null;
/**
*
* @type {string}
* @memberof CreateWalkInAppointmentCommand
*/
'firstName'?: string | null;
/**
*
* @type {string}
* @memberof CreateWalkInAppointmentCommand
*/
'lastName'?: string | null;
/**
*
* @type {string}
* @memberof CreateWalkInAppointmentCommand
*/
'email'?: string | null;
/**
*
* @type {string}
* @memberof CreateWalkInAppointmentCommand
*/
'phone'?: string | null;
/**
*
* @type {Date}
* @memberof CreateWalkInAppointmentCommand
*/
'dateOfBirth'?: Date | null;
/**
*
* @type {Gender}
* @memberof CreateWalkInAppointmentCommand
*/
'gender'?: Gender;
/**
*
* @type {string}
* @memberof CreateWalkInAppointmentCommand
*/
'timeZone'?: string | null;
/**
*
* @type {string}
* @memberof CreateWalkInAppointmentCommand
*/
'comment'?: string | null;
/**
*
* @type {number}
* @memberof CreateWalkInAppointmentCommand
*/
'quantity'?: number;
/**
*
* @type {Date}
* @memberof CreateWalkInAppointmentCommand
*/
'confirmedDateStart'?: Date;
/**
*
* @type {Date}
* @memberof CreateWalkInAppointmentCommand
*/
'confirmedDateEnd'?: Date;
/**
*
* @type {boolean}
* @memberof CreateWalkInAppointmentCommand
*/
'isExternal'?: boolean;
/**
*
* @type {Array<MediaModel>}
* @memberof CreateWalkInAppointmentCommand
*/
'medias'?: Array<MediaModel> | null;
/**
*
* @type {PaymentMethod}
* @memberof CreateWalkInAppointmentCommand
*/
'paymentMethod'?: PaymentMethod;
}
//# sourceMappingURL=create-walk-in-appointment-command.d.ts.map