/** * 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 AuthorizationMode: { readonly SESSION_OWNER: "SESSION_OWNER"; readonly SOURCE_BENEFACTOR: "SOURCE_BENEFACTOR"; }; export type AuthorizationMode = typeof AuthorizationMode[keyof typeof AuthorizationMode]; export declare function instanceOfAuthorizationMode(value: any): boolean; export declare function AuthorizationModeFromJSON(json: any): AuthorizationMode; export declare function AuthorizationModeFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuthorizationMode; export declare function AuthorizationModeToJSON(value?: AuthorizationMode | null): any; export declare function AuthorizationModeToJSONTyped(value: any, ignoreDiscriminator: boolean): AuthorizationMode;