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
61 lines (56 loc) • 1.42 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.
*/
/**
* Password login request
* @export
* @interface PwdLoginReq
*/
export interface PwdLoginReq {
/**
* Type of user login identifier. Possible values are: / MOBILE/ EMAIL/ ID
* @type {string}
* @memberof PwdLoginReq
*/
'loginAcctType'?: string;
/**
* User login identifier.
* @type {string}
* @memberof PwdLoginReq
*/
'loginAcct': string;
/**
* User\'s password.
* @type {string}
* @memberof PwdLoginReq
*/
'password': string;
/**
* One-Time Password (OTP).
* @type {string}
* @memberof PwdLoginReq
*/
'otp'?: string;
/**
* A string containing the characters or image data of the CAPTCHA used for user verification.
* @type {string}
* @memberof PwdLoginReq
*/
'captcha'?: string;
/**
* A unique serial number associated with the CAPTCHA, used to track and validate the CAPTCHA session.
* @type {string}
* @memberof PwdLoginReq
*/
'captchaSn'?: string;
}