UNPKG

fastcomments-sdk

Version:

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

52 lines 1.65 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 DeleteSSOUserAPIResponse */ export interface DeleteSSOUserAPIResponse { /** * * @type {string} * @memberof DeleteSSOUserAPIResponse */ reason?: string; /** * * @type {string} * @memberof DeleteSSOUserAPIResponse */ code?: string; /** * * @type {APISSOUser} * @memberof DeleteSSOUserAPIResponse */ user?: APISSOUser; /** * * @type {string} * @memberof DeleteSSOUserAPIResponse */ status: string; } /** * Check if a given object implements the DeleteSSOUserAPIResponse interface. */ export declare function instanceOfDeleteSSOUserAPIResponse(value: object): value is DeleteSSOUserAPIResponse; export declare function DeleteSSOUserAPIResponseFromJSON(json: any): DeleteSSOUserAPIResponse; export declare function DeleteSSOUserAPIResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeleteSSOUserAPIResponse; export declare function DeleteSSOUserAPIResponseToJSON(json: any): DeleteSSOUserAPIResponse; export declare function DeleteSSOUserAPIResponseToJSONTyped(value?: DeleteSSOUserAPIResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=DeleteSSOUserAPIResponse.d.ts.map