/**
 * CloudHospital Api
 * CloudHospital application with Swagger, Swashbuckle, and API versioning.
 *
 * The version of the OpenAPI document: 2
 * 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';
/**
 *
 * @export
 * @interface CreateAppointmentCommand
 */
export interface CreateAppointmentCommand {
    /**
     *
     * @type {AppointmentType}
     * @memberof CreateAppointmentCommand
     */
    'appointmentType'?: AppointmentType;
    /**
     *
     * @type {boolean}
     * @memberof CreateAppointmentCommand
     */
    'isOnline'?: boolean;
    /**
     *
     * @type {string}
     * @memberof CreateAppointmentCommand
     */
    'hospitalId'?: string;
    /**
     *
     * @type {string}
     * @memberof CreateAppointmentCommand
     */
    'hospitalSpecialtyId'?: string | null;
    /**
     *
     * @type {string}
     * @memberof CreateAppointmentCommand
     */
    'doctorAffiliationId'?: string | null;
    /**
     *
     * @type {string}
     * @memberof CreateAppointmentCommand
     */
    'dealPackageId'?: string | null;
    /**
     *
     * @type {string}
     * @memberof CreateAppointmentCommand
     */
    'serviceId'?: string | null;
    /**
     *
     * @type {string}
     * @memberof CreateAppointmentCommand
     */
    'languageCode'?: string | null;
    /**
     *
     * @type {string}
     * @memberof CreateAppointmentCommand
     */
    'firstName'?: string | null;
    /**
     *
     * @type {string}
     * @memberof CreateAppointmentCommand
     */
    'lastName'?: string | null;
    /**
     *
     * @type {string}
     * @memberof CreateAppointmentCommand
     */
    'email'?: string | null;
    /**
     *
     * @type {string}
     * @memberof CreateAppointmentCommand
     */
    'phone'?: string | null;
    /**
     *
     * @type {Date}
     * @memberof CreateAppointmentCommand
     */
    'dateOfBirth'?: Date | null;
    /**
     *
     * @type {Gender}
     * @memberof CreateAppointmentCommand
     */
    'gender'?: Gender;
    /**
     *
     * @type {string}
     * @memberof CreateAppointmentCommand
     */
    'timeZone'?: string | null;
    /**
     *
     * @type {string}
     * @memberof CreateAppointmentCommand
     */
    'comment'?: string | null;
    /**
     *
     * @type {number}
     * @memberof CreateAppointmentCommand
     */
    'quantity'?: number;
    /**
     *
     * @type {Date}
     * @memberof CreateAppointmentCommand
     */
    'approximateDateStart'?: Date;
    /**
     *
     * @type {Date}
     * @memberof CreateAppointmentCommand
     */
    'approximateDateEnd'?: Date;
    /**
     *
     * @type {boolean}
     * @memberof CreateAppointmentCommand
     */
    'isExternal'?: boolean;
    /**
     *
     * @type {Array<MediaModel>}
     * @memberof CreateAppointmentCommand
     */
    'medias'?: Array<MediaModel> | null;
}
//# sourceMappingURL=create-appointment-command.d.ts.map