/** * 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. */ /** * * @export * @interface TeamtailorWebhookRequestPayload */ export interface TeamtailorWebhookRequestPayload { /** * Teamtailor event, e.g. job_application.create. * @type {string} * @memberof TeamtailorWebhookRequestPayload */ eventName?: string; /** * * @type {object} * @memberof TeamtailorWebhookRequestPayload */ data?: object; } /** * Check if a given object implements the TeamtailorWebhookRequestPayload interface. */ export declare function instanceOfTeamtailorWebhookRequestPayload(value: object): value is TeamtailorWebhookRequestPayload; export declare function TeamtailorWebhookRequestPayloadFromJSON(json: any): TeamtailorWebhookRequestPayload; export declare function TeamtailorWebhookRequestPayloadFromJSONTyped(json: any, ignoreDiscriminator: boolean): TeamtailorWebhookRequestPayload; export declare function TeamtailorWebhookRequestPayloadToJSON(json: any): TeamtailorWebhookRequestPayload; export declare function TeamtailorWebhookRequestPayloadToJSONTyped(value?: TeamtailorWebhookRequestPayload | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=TeamtailorWebhookRequestPayload.d.ts.map