wallee
Version:
TypeScript/JavaScript client for wallee
71 lines (70 loc) • 2.06 kB
TypeScript
import type { CreationEntityState } from './CreationEntityState';
/**
*
* @export
* @interface HumanUserUpdate
*/
export interface HumanUserUpdate {
/**
* The user's mobile phone number.
* @type {string}
* @memberof HumanUserUpdate
*/
mobilePhoneNumber?: string;
/**
* Whether two-factor authentication is enabled for this user.
* @type {boolean}
* @memberof HumanUserUpdate
*/
twoFactorEnabled?: boolean;
/**
* The user's email address.
* @type {string}
* @memberof HumanUserUpdate
*/
emailAddress?: string;
/**
* The user's first name.
* @type {string}
* @memberof HumanUserUpdate
*/
firstname?: string;
/**
* The user's time zone. If none is specified, the one provided by the browser will be used.
* @type {string}
* @memberof HumanUserUpdate
*/
timeZone?: string;
/**
* The user's preferred language.
* @type {string}
* @memberof HumanUserUpdate
*/
language?: string;
/**
*
* @type {CreationEntityState}
* @memberof HumanUserUpdate
*/
state?: CreationEntityState;
/**
* The user's last name.
* @type {string}
* @memberof HumanUserUpdate
*/
lastname?: string;
/**
* The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
* @type {number}
* @memberof HumanUserUpdate
*/
version: number;
}
/**
* Check if a given object implements the HumanUserUpdate interface.
*/
export declare function instanceOfHumanUserUpdate(value: object): value is HumanUserUpdate;
export declare function HumanUserUpdateFromJSON(json: any): HumanUserUpdate;
export declare function HumanUserUpdateFromJSONTyped(json: any, ignoreDiscriminator: boolean): HumanUserUpdate;
export declare function HumanUserUpdateToJSON(json: any): HumanUserUpdate;
export declare function HumanUserUpdateToJSONTyped(value?: HumanUserUpdate | null, ignoreDiscriminator?: boolean): any;