/**
 * 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 { Gender } from './gender';
/**
 *
 * @export
 * @interface CreatePatientCommand
 */
export interface CreatePatientCommand {
    /**
     *
     * @type {string}
     * @memberof CreatePatientCommand
     */
    'userName'?: string | null;
    /**
     *
     * @type {string}
     * @memberof CreatePatientCommand
     */
    'email'?: string | null;
    /**
     *
     * @type {string}
     * @memberof CreatePatientCommand
     */
    'firstName'?: string | null;
    /**
     *
     * @type {string}
     * @memberof CreatePatientCommand
     */
    'lastName'?: string | null;
    /**
     *
     * @type {string}
     * @memberof CreatePatientCommand
     */
    'phone'?: string | null;
    /**
     *
     * @type {string}
     * @memberof CreatePatientCommand
     */
    'photo'?: string | null;
    /**
     *
     * @type {string}
     * @memberof CreatePatientCommand
     */
    'photoThumbnail'?: string | null;
    /**
     *
     * @type {Gender}
     * @memberof CreatePatientCommand
     */
    'gender'?: Gender;
    /**
     *
     * @type {Date}
     * @memberof CreatePatientCommand
     */
    'dateOfBirth'?: Date | null;
    /**
     *
     * @type {string}
     * @memberof CreatePatientCommand
     */
    'timeZone'?: string | null;
    /**
     *
     * @type {string}
     * @memberof CreatePatientCommand
     */
    'hospitalId'?: string;
}
//# sourceMappingURL=create-patient-command.d.ts.map