whalecloud-dxp-api-react-native
Version:
This section explains how to use the SDK and illustrates it with an example: - This chapter is essential to learn - For specific business development, see [Bussiness Scenario](https://www.digchan.info/en-US/dxp/user-sso/sign-up) - The Business Scenario pr
100 lines (95 loc) • 2.18 kB
text/typescript
/* tslint:disable */
/* eslint-disable */
/**
* DXP API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
// May contain unused imports in some cases
// @ts-ignore
import type { UserBindingForQuery } from './user-binding-for-query';
/**
*
* @export
* @interface UserInfo
*/
export interface UserInfo {
/**
* User\'s mobile phone number.
* @type {string}
* @memberof UserInfo
*/
'mobile'?: string;
/**
* The email address.
* @type {string}
* @memberof UserInfo
*/
'email'?: string;
/**
* User\'s name.
* @type {string}
* @memberof UserInfo
*/
'userName': string;
/**
* User\'s alias.
* @type {string}
* @memberof UserInfo
*/
'alias'?: string;
/**
* The URL of user\'s avatar image.
* @type {string}
* @memberof UserInfo
*/
'avatarUrl'?: string;
/**
* Nationality.
* @type {string}
* @memberof UserInfo
*/
'nationality'?: string;
/**
* The type of identification document.
* @type {string}
* @memberof UserInfo
*/
'identificationType'?: string;
/**
* The name of the identification type.
* @type {string}
* @memberof UserInfo
*/
'identificationTypeName'?: string;
/**
* The number of the identification document. This is used to uniquely identify the document.
* @type {string}
* @memberof UserInfo
*/
'identificationNbr'?: string;
/**
* User code.
* @type {string}
* @memberof UserInfo
*/
'userCode': string;
/**
* Indicates whether the user has a password.
* @type {boolean}
* @memberof UserInfo
*/
'hasUserPwd': boolean;
/**
* User binding information.
* @type {Array<UserBindingForQuery>}
* @memberof UserInfo
*/
'userBinding'?: Array<UserBindingForQuery>;
}