/** * 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. */ /** * Response body containg the result of a webhook verification reqeust. * @export * @interface VerifyWebhookResponse */ export interface VerifyWebhookResponse { /** * True if the webhook was successfully verified. * @type {boolean} * @memberof VerifyWebhookResponse */ isValid?: boolean; /** * If the Webhook is invalid, this will contain a string describing why it is invalid. * @type {string} * @memberof VerifyWebhookResponse */ invalidReason?: string; } /** * Check if a given object implements the VerifyWebhookResponse interface. */ export declare function instanceOfVerifyWebhookResponse(value: object): value is VerifyWebhookResponse; export declare function VerifyWebhookResponseFromJSON(json: any): VerifyWebhookResponse; export declare function VerifyWebhookResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): VerifyWebhookResponse; export declare function VerifyWebhookResponseToJSON(json: any): VerifyWebhookResponse; export declare function VerifyWebhookResponseToJSONTyped(value?: VerifyWebhookResponse | null, ignoreDiscriminator?: boolean): any;