/**
 * 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 PatchSSOUserAPIResponse
 */
export interface PatchSSOUserAPIResponse {
    /**
     *
     * @type {string}
     * @memberof PatchSSOUserAPIResponse
     */
    reason?: string;
    /**
     *
     * @type {string}
     * @memberof PatchSSOUserAPIResponse
     */
    code?: string;
    /**
     *
     * @type {APISSOUser}
     * @memberof PatchSSOUserAPIResponse
     */
    user?: APISSOUser;
    /**
     *
     * @type {string}
     * @memberof PatchSSOUserAPIResponse
     */
    status: string;
}
/**
 * Check if a given object implements the PatchSSOUserAPIResponse interface.
 */
export declare function instanceOfPatchSSOUserAPIResponse(value: object): value is PatchSSOUserAPIResponse;
export declare function PatchSSOUserAPIResponseFromJSON(json: any): PatchSSOUserAPIResponse;
export declare function PatchSSOUserAPIResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchSSOUserAPIResponse;
export declare function PatchSSOUserAPIResponseToJSON(json: any): PatchSSOUserAPIResponse;
export declare function PatchSSOUserAPIResponseToJSONTyped(value?: PatchSSOUserAPIResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=PatchSSOUserAPIResponse.d.ts.map