UNPKG

@meeting-baas/sdk

Version:

Official SDK for Meeting BaaS API - https://meetingbaas.com

55 lines (54 loc) 1.01 kB
/** * Meeting BaaS API * Meeting BaaS API * * The version of the OpenAPI document: 1.1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface LoginAccount */ export interface LoginAccount { /** * * @type {string} * @memberof LoginAccount */ 'app_signin_token'?: string | null; /** * * @type {string} * @memberof LoginAccount */ 'google_chrome_token_id'?: string | null; /** * * @type {string} * @memberof LoginAccount */ 'google_token_id'?: string | null; /** * * @type {string} * @memberof LoginAccount */ 'microsoft_token_id'?: string | null; /** * * @type {string} * @memberof LoginAccount */ 'password': string; /** * * @type {string} * @memberof LoginAccount */ 'pseudo': string; }