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

52 lines (47 loc) 1.2 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. */ // May contain unused imports in some cases // @ts-ignore import type { UserInfo } from './user-info'; /** * * @export * @interface UserLoginRespForQuery */ export interface UserLoginRespForQuery { /** * Token for authentication. * @type {string} * @memberof UserLoginRespForQuery */ 'token': string; /** * Token used for refreshing authentication. * @type {string} * @memberof UserLoginRespForQuery */ 'refreshToken': string; /** * Date when the token expires. Use ISO 8601 standard, YYYY-MM-DDTHH:MM:SS * @type {string} * @memberof UserLoginRespForQuery */ 'tokenExpiryDate': string; /** * User information. * @type {UserInfo} * @memberof UserLoginRespForQuery */ 'userInfo': UserInfo; }