wallee
Version:
TypeScript/JavaScript client for wallee
65 lines (64 loc) • 2.02 kB
TypeScript
import type { CreationEntityState } from './CreationEntityState';
/**
*
* @export
* @interface AbstractHumanUserUpdate
*/
export interface AbstractHumanUserUpdate {
/**
* The user's mobile phone number.
* @type {string}
* @memberof AbstractHumanUserUpdate
*/
mobilePhoneNumber?: string;
/**
* Whether two-factor authentication is enabled for this user.
* @type {boolean}
* @memberof AbstractHumanUserUpdate
*/
twoFactorEnabled?: boolean;
/**
* The user's email address.
* @type {string}
* @memberof AbstractHumanUserUpdate
*/
emailAddress?: string;
/**
* The user's first name.
* @type {string}
* @memberof AbstractHumanUserUpdate
*/
firstname?: string;
/**
* The user's time zone. If none is specified, the one provided by the browser will be used.
* @type {string}
* @memberof AbstractHumanUserUpdate
*/
timeZone?: string;
/**
* The user's preferred language.
* @type {string}
* @memberof AbstractHumanUserUpdate
*/
language?: string;
/**
*
* @type {CreationEntityState}
* @memberof AbstractHumanUserUpdate
*/
state?: CreationEntityState;
/**
* The user's last name.
* @type {string}
* @memberof AbstractHumanUserUpdate
*/
lastname?: string;
}
/**
* Check if a given object implements the AbstractHumanUserUpdate interface.
*/
export declare function instanceOfAbstractHumanUserUpdate(value: object): value is AbstractHumanUserUpdate;
export declare function AbstractHumanUserUpdateFromJSON(json: any): AbstractHumanUserUpdate;
export declare function AbstractHumanUserUpdateFromJSONTyped(json: any, ignoreDiscriminator: boolean): AbstractHumanUserUpdate;
export declare function AbstractHumanUserUpdateToJSON(json: any): AbstractHumanUserUpdate;
export declare function AbstractHumanUserUpdateToJSONTyped(value?: AbstractHumanUserUpdate | null, ignoreDiscriminator?: boolean): any;