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 ScreeningQuestionAnswer { id?: string; /** The third-party API ID of the matching object. */ remoteId?: string; /** The datetime that this object was created by Merge. */ createdAt?: Date; /** The datetime that this object was modified by Merge. */ modifiedAt?: Date; /** 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.ScreeningQuestionAnswerQuestion; /** The candidate’s response to the screening question. */ answer?: string; /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ remoteWasDeleted?: boolean; }