/** * TTLock * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v3.1.9 * * * 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 OAuthResponseAllOf */ export interface OAuthResponseAllOf { /** * Access token * @type {string} * @memberof OAuthResponseAllOf */ accessToken?: string | null; /** * Refresh token * @type {string} * @memberof OAuthResponseAllOf */ refreshToken?: string | null; /** * Expire time of access token, in second. * @type {number} * @memberof OAuthResponseAllOf */ expiresIn?: number | null; /** * User id * @type {number} * @memberof OAuthResponseAllOf */ uid?: number | null; } /** * Check if a given object implements the OAuthResponseAllOf interface. */ export declare function instanceOfOAuthResponseAllOf(value: object): boolean; export declare function OAuthResponseAllOfFromJSON(json: any): OAuthResponseAllOf; export declare function OAuthResponseAllOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): OAuthResponseAllOf; export declare function OAuthResponseAllOfToJSON(value?: OAuthResponseAllOf | null): any; //# sourceMappingURL=OAuthResponseAllOf.d.ts.map