fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
52 lines • 1.59 kB
TypeScript
/**
* 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 AddSSOUserAPIResponse
*/
export interface AddSSOUserAPIResponse {
/**
*
* @type {string}
* @memberof AddSSOUserAPIResponse
*/
reason?: string;
/**
*
* @type {string}
* @memberof AddSSOUserAPIResponse
*/
code?: string;
/**
*
* @type {APISSOUser}
* @memberof AddSSOUserAPIResponse
*/
user?: APISSOUser;
/**
*
* @type {string}
* @memberof AddSSOUserAPIResponse
*/
status: string;
}
/**
* Check if a given object implements the AddSSOUserAPIResponse interface.
*/
export declare function instanceOfAddSSOUserAPIResponse(value: object): value is AddSSOUserAPIResponse;
export declare function AddSSOUserAPIResponseFromJSON(json: any): AddSSOUserAPIResponse;
export declare function AddSSOUserAPIResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): AddSSOUserAPIResponse;
export declare function AddSSOUserAPIResponseToJSON(json: any): AddSSOUserAPIResponse;
export declare function AddSSOUserAPIResponseToJSONTyped(value?: AddSSOUserAPIResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=AddSSOUserAPIResponse.d.ts.map