import type * as Merge from "../../../index"; /** * # The ScreeningQuestionAnswer Object * ### Description * The `ScreeningQuestionAnswer` object is used to represent candidate responses to a screening question, for a specific application. * * ### Usage Example * TODO */ export interface ScreeningQuestionAnswerRequest { /** The third-party API ID of the matching object. */ remoteId?: string; /** The screening question associated with the candidate’s answer. To determine the data type of the answer, you can expand on the screening question by adding `screening_question_answers.question` to the `expand` query parameter. */ question?: Merge.ats.ScreeningQuestionAnswerRequestQuestion; /** The candidate’s response to the screening question. */ answer?: string; integrationParams?: Record; linkedAccountParams?: Record; }