UNPKG

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

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