/** * 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 * @interface OAuthScopeList */ export interface OAuthScopeList { /** * * @type {Array} * @memberof OAuthScopeList */ list?: Array; } /** * @export */ export declare const OAuthScopeListListEnum: { 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 OAuthScopeListListEnum = typeof OAuthScopeListListEnum[keyof typeof OAuthScopeListListEnum]; /** * Check if a given object implements the OAuthScopeList interface. */ export declare function instanceOfOAuthScopeList(value: object): value is OAuthScopeList; export declare function OAuthScopeListFromJSON(json: any): OAuthScopeList; export declare function OAuthScopeListFromJSONTyped(json: any, ignoreDiscriminator: boolean): OAuthScopeList; export declare function OAuthScopeListToJSON(json: any): OAuthScopeList; export declare function OAuthScopeListToJSONTyped(value?: OAuthScopeList | null, ignoreDiscriminator?: boolean): any;