/** * 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 WebhookVerificationStatus: { readonly PENDING: "PENDING"; readonly CODE_SENT: "CODE_SENT"; readonly FAILED: "FAILED"; readonly REVOKED: "REVOKED"; readonly VERIFIED: "VERIFIED"; }; export type WebhookVerificationStatus = typeof WebhookVerificationStatus[keyof typeof WebhookVerificationStatus]; export declare function instanceOfWebhookVerificationStatus(value: any): boolean; export declare function WebhookVerificationStatusFromJSON(json: any): WebhookVerificationStatus; export declare function WebhookVerificationStatusFromJSONTyped(json: any, ignoreDiscriminator: boolean): WebhookVerificationStatus; export declare function WebhookVerificationStatusToJSON(value?: WebhookVerificationStatus | null): any; export declare function WebhookVerificationStatusToJSONTyped(value: any, ignoreDiscriminator: boolean): WebhookVerificationStatus;