/** * 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 ErrorResponseCode: { readonly PASSWORD_RESET_VIA_EMAIL_REQUIRED: "PASSWORD_RESET_VIA_EMAIL_REQUIRED"; readonly USER_CERTIFICATION_REQUIRED: "USER_CERTIFICATION_REQUIRED"; readonly INVALID_TABLE_QUERY_FACET_COLUMN_REQUEST: "INVALID_TABLE_QUERY_FACET_COLUMN_REQUEST"; readonly OAUTH_CLIENT_NOT_VERIFIED: "OAUTH_CLIENT_NOT_VERIFIED"; readonly TWO_FA_REQUIRED: "TWO_FA_REQUIRED"; readonly UNSUPPORTED_WEBHOOK_DOMAIN: "UNSUPPORTED_WEBHOOK_DOMAIN"; readonly PROJECT_STORAGE_LIMIT_EXCEEDED: "PROJECT_STORAGE_LIMIT_EXCEEDED"; readonly TWO_FA_ENABLED_REQUIRED: "TWO_FA_ENABLED_REQUIRED"; }; export type ErrorResponseCode = typeof ErrorResponseCode[keyof typeof ErrorResponseCode]; export declare function instanceOfErrorResponseCode(value: any): boolean; export declare function ErrorResponseCodeFromJSON(json: any): ErrorResponseCode; export declare function ErrorResponseCodeFromJSONTyped(json: any, ignoreDiscriminator: boolean): ErrorResponseCode; export declare function ErrorResponseCodeToJSON(value?: ErrorResponseCode | null): any; export declare function ErrorResponseCodeToJSONTyped(value: any, ignoreDiscriminator: boolean): ErrorResponseCode;