/** * 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 VerificationStateEnum: { readonly SUBMITTED: "SUBMITTED"; readonly APPROVED: "APPROVED"; readonly REJECTED: "REJECTED"; readonly SUSPENDED: "SUSPENDED"; }; export type VerificationStateEnum = typeof VerificationStateEnum[keyof typeof VerificationStateEnum]; export declare function instanceOfVerificationStateEnum(value: any): boolean; export declare function VerificationStateEnumFromJSON(json: any): VerificationStateEnum; export declare function VerificationStateEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean): VerificationStateEnum; export declare function VerificationStateEnumToJSON(value?: VerificationStateEnum | null): any; export declare function VerificationStateEnumToJSONTyped(value: any, ignoreDiscriminator: boolean): VerificationStateEnum;