/** * 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 OAuthScope: { readonly openid: "openid"; readonly email: "email"; readonly profile: "profile"; readonly ga4gh_passport_v1: "ga4gh_passport_v1"; readonly view: "view"; readonly download: "download"; readonly modify: "modify"; readonly authorize: "authorize"; readonly offline_access: "offline_access"; }; export type OAuthScope = typeof OAuthScope[keyof typeof OAuthScope]; export declare function instanceOfOAuthScope(value: any): boolean; export declare function OAuthScopeFromJSON(json: any): OAuthScope; export declare function OAuthScopeFromJSONTyped(json: any, ignoreDiscriminator: boolean): OAuthScope; export declare function OAuthScopeToJSON(value?: OAuthScope | null): any; export declare function OAuthScopeToJSONTyped(value: any, ignoreDiscriminator: boolean): OAuthScope;