/** * 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 OAuthGrantType: { readonly authorization_code: "authorization_code"; readonly refresh_token: "refresh_token"; }; export type OAuthGrantType = typeof OAuthGrantType[keyof typeof OAuthGrantType]; export declare function instanceOfOAuthGrantType(value: any): boolean; export declare function OAuthGrantTypeFromJSON(json: any): OAuthGrantType; export declare function OAuthGrantTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): OAuthGrantType; export declare function OAuthGrantTypeToJSON(value?: OAuthGrantType | null): any; export declare function OAuthGrantTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): OAuthGrantType;