UNPKG

fastcomments-sdk

Version:

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

52 lines 1.67 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 GetSSOUserByIdAPIResponse */ export interface GetSSOUserByIdAPIResponse { /** * * @type {string} * @memberof GetSSOUserByIdAPIResponse */ reason?: string; /** * * @type {string} * @memberof GetSSOUserByIdAPIResponse */ code?: string; /** * * @type {APISSOUser} * @memberof GetSSOUserByIdAPIResponse */ user?: APISSOUser; /** * * @type {string} * @memberof GetSSOUserByIdAPIResponse */ status: string; } /** * Check if a given object implements the GetSSOUserByIdAPIResponse interface. */ export declare function instanceOfGetSSOUserByIdAPIResponse(value: object): value is GetSSOUserByIdAPIResponse; export declare function GetSSOUserByIdAPIResponseFromJSON(json: any): GetSSOUserByIdAPIResponse; export declare function GetSSOUserByIdAPIResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetSSOUserByIdAPIResponse; export declare function GetSSOUserByIdAPIResponseToJSON(json: any): GetSSOUserByIdAPIResponse; export declare function GetSSOUserByIdAPIResponseToJSONTyped(value?: GetSSOUserByIdAPIResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetSSOUserByIdAPIResponse.d.ts.map