/**
 * 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';
import { UserLanguageInputModel } from './user-language-input-model';
/**
 *
 * @export
 * @interface UpdateUserCommand
 */
export interface UpdateUserCommand {
    /**
     *
     * @type {string}
     * @memberof UpdateUserCommand
     */
    'email'?: string | null;
    /**
     *
     * @type {string}
     * @memberof UpdateUserCommand
     */
    'firstName'?: string | null;
    /**
     *
     * @type {string}
     * @memberof UpdateUserCommand
     */
    'lastName'?: string | null;
    /**
     *
     * @type {string}
     * @memberof UpdateUserCommand
     */
    'phone'?: string | null;
    /**
     *
     * @type {string}
     * @memberof UpdateUserCommand
     */
    'photo'?: string | null;
    /**
     *
     * @type {string}
     * @memberof UpdateUserCommand
     */
    'photoThumbnail'?: string | null;
    /**
     *
     * @type {Gender}
     * @memberof UpdateUserCommand
     */
    'gender'?: Gender;
    /**
     *
     * @type {Date}
     * @memberof UpdateUserCommand
     */
    'dateOfBirth'?: Date | null;
    /**
     *
     * @type {string}
     * @memberof UpdateUserCommand
     */
    'timeZone'?: string | null;
    /**
     *
     * @type {string}
     * @memberof UpdateUserCommand
     */
    'languageCode'?: string | null;
    /**
     *
     * @type {string}
     * @memberof UpdateUserCommand
     */
    'name'?: string | null;
    /**
     *
     * @type {string}
     * @memberof UpdateUserCommand
     */
    'jobTitle'?: string | null;
    /**
     *
     * @type {string}
     * @memberof UpdateUserCommand
     */
    'jobPosition'?: string | null;
    /**
     *
     * @type {Date}
     * @memberof UpdateUserCommand
     */
    'startPracticeDate'?: Date | null;
    /**
     *
     * @type {boolean}
     * @memberof UpdateUserCommand
     */
    'consultationEnabled'?: boolean | null;
    /**
     *
     * @type {number}
     * @memberof UpdateUserCommand
     */
    'consultationFee'?: number | null;
    /**
     *
     * @type {string}
     * @memberof UpdateUserCommand
     */
    'license'?: string | null;
    /**
     *
     * @type {Array<string>}
     * @memberof UpdateUserCommand
     */
    'roles'?: Array<string> | null;
    /**
     *
     * @type {Array<UserLanguageInputModel>}
     * @memberof UpdateUserCommand
     */
    'userLanguages'?: Array<UserLanguageInputModel> | null;
    /**
     *
     * @type {boolean}
     * @memberof UpdateUserCommand
     */
    'createIdentityAccount'?: boolean | null;
    /**
     *
     * @type {Array<string>}
     * @memberof UpdateUserCommand
     */
    'managerAffiliations'?: Array<string> | null;
    /**
     *
     * @type {Array<string>}
     * @memberof UpdateUserCommand
     */
    'patientAffiliations'?: Array<string> | null;
    /**
     *
     * @type {Array<string>}
     * @memberof UpdateUserCommand
     */
    'doctorAffiliations'?: Array<string> | null;
}
//# sourceMappingURL=update-user-command.d.ts.map