/** * 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 OIDCSigningAlgorithm: { readonly RS256: "RS256"; }; export type OIDCSigningAlgorithm = typeof OIDCSigningAlgorithm[keyof typeof OIDCSigningAlgorithm]; export declare function instanceOfOIDCSigningAlgorithm(value: any): boolean; export declare function OIDCSigningAlgorithmFromJSON(json: any): OIDCSigningAlgorithm; export declare function OIDCSigningAlgorithmFromJSONTyped(json: any, ignoreDiscriminator: boolean): OIDCSigningAlgorithm; export declare function OIDCSigningAlgorithmToJSON(value?: OIDCSigningAlgorithm | null): any; export declare function OIDCSigningAlgorithmToJSONTyped(value: any, ignoreDiscriminator: boolean): OIDCSigningAlgorithm;