/** * SmartyMeet Dev03 API REST * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.1 * Contact: developer@smartymeet.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { TeamtailorWebhookRequestPayload } from './TeamtailorWebhookRequestPayload'; /** * * @export * @interface TeamtailorWebhookRequest */ export interface TeamtailorWebhookRequest { /** * * @type {TeamtailorWebhookRequestPayload} * @memberof TeamtailorWebhookRequest */ payload?: TeamtailorWebhookRequestPayload; /** * Legacy v1 payload signature; verification uses the TT-Signature header (v2). * @type {string} * @memberof TeamtailorWebhookRequest */ signature?: string; } /** * Check if a given object implements the TeamtailorWebhookRequest interface. */ export declare function instanceOfTeamtailorWebhookRequest(value: object): value is TeamtailorWebhookRequest; export declare function TeamtailorWebhookRequestFromJSON(json: any): TeamtailorWebhookRequest; export declare function TeamtailorWebhookRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): TeamtailorWebhookRequest; export declare function TeamtailorWebhookRequestToJSON(json: any): TeamtailorWebhookRequest; export declare function TeamtailorWebhookRequestToJSONTyped(value?: TeamtailorWebhookRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=TeamtailorWebhookRequest.d.ts.map