/** * 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. */ /** * Request body used to verify a webhook, the verification code is sent to the webhook endpoint when the webhook is created or when its endpoint is modified. * @export * @interface VerifyWebhookRequest */ export interface VerifyWebhookRequest { /** * The verification code received by the webhook endpoint. * @type {string} * @memberof VerifyWebhookRequest */ verificationCode?: string; } /** * Check if a given object implements the VerifyWebhookRequest interface. */ export declare function instanceOfVerifyWebhookRequest(value: object): value is VerifyWebhookRequest; export declare function VerifyWebhookRequestFromJSON(json: any): VerifyWebhookRequest; export declare function VerifyWebhookRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): VerifyWebhookRequest; export declare function VerifyWebhookRequestToJSON(json: any): VerifyWebhookRequest; export declare function VerifyWebhookRequestToJSONTyped(value?: VerifyWebhookRequest | null, ignoreDiscriminator?: boolean): any;