/** * Synapse REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export */ export declare const OAuthResponseType: { readonly code: "code"; }; export type OAuthResponseType = typeof OAuthResponseType[keyof typeof OAuthResponseType]; export declare function instanceOfOAuthResponseType(value: any): boolean; export declare function OAuthResponseTypeFromJSON(json: any): OAuthResponseType; export declare function OAuthResponseTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): OAuthResponseType; export declare function OAuthResponseTypeToJSON(value?: OAuthResponseType | null): any; export declare function OAuthResponseTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): OAuthResponseType;