Files
botpress--botpress/integrations/workable/definitions/actions/jobs.ts
T
2026-07-13 13:34:48 +08:00

13 lines
342 B
TypeScript

import { getJobQuestionsInputSchema, getJobQuestionsOutputSchema } from 'definitions/models/jobs'
export const getJobQuestions = {
title: 'Get job questions',
description: 'Get the questions associated with a job offer',
input: {
schema: getJobQuestionsInputSchema,
},
output: {
schema: getJobQuestionsOutputSchema,
},
}