/** * 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 OAuthProvider: { readonly GOOGLE_OAUTH_2_0: "GOOGLE_OAUTH_2_0"; readonly ORCID: "ORCID"; readonly ARCUS_BIOSCIENCES: "ARCUS_BIOSCIENCES"; readonly SAGE_BIONETWORKS: "SAGE_BIONETWORKS"; }; export type OAuthProvider = typeof OAuthProvider[keyof typeof OAuthProvider]; export declare function instanceOfOAuthProvider(value: any): boolean; export declare function OAuthProviderFromJSON(json: any): OAuthProvider; export declare function OAuthProviderFromJSONTyped(json: any, ignoreDiscriminator: boolean): OAuthProvider; export declare function OAuthProviderToJSON(value?: OAuthProvider | null): any; export declare function OAuthProviderToJSONTyped(value: any, ignoreDiscriminator: boolean): OAuthProvider;