UNPKG

fastcomments-sdk

Version:

FastComments API Client - A SDK for interacting with the FastComments API

52 lines 1.72 kB
/** * fastcomments * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { APISSOUser } from './APISSOUser'; /** * * @export * @interface GetSSOUserByEmailAPIResponse */ export interface GetSSOUserByEmailAPIResponse { /** * * @type {string} * @memberof GetSSOUserByEmailAPIResponse */ reason?: string; /** * * @type {string} * @memberof GetSSOUserByEmailAPIResponse */ code?: string; /** * * @type {APISSOUser} * @memberof GetSSOUserByEmailAPIResponse */ user?: APISSOUser; /** * * @type {string} * @memberof GetSSOUserByEmailAPIResponse */ status: string; } /** * Check if a given object implements the GetSSOUserByEmailAPIResponse interface. */ export declare function instanceOfGetSSOUserByEmailAPIResponse(value: object): value is GetSSOUserByEmailAPIResponse; export declare function GetSSOUserByEmailAPIResponseFromJSON(json: any): GetSSOUserByEmailAPIResponse; export declare function GetSSOUserByEmailAPIResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetSSOUserByEmailAPIResponse; export declare function GetSSOUserByEmailAPIResponseToJSON(json: any): GetSSOUserByEmailAPIResponse; export declare function GetSSOUserByEmailAPIResponseToJSONTyped(value?: GetSSOUserByEmailAPIResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetSSOUserByEmailAPIResponse.d.ts.map