/** * 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 { AttemptRelationshipsFilesDataSchema } from './AttemptRelationshipsFilesDataSchema'; /** * FileResources attached to this attempt - one per file the * candidate uploaded as a `file-upload` or `video-recording` * answer. Populated by the workflow's `trigger_evaluation` * step after `process_attachments` registers each file with * the file service. Use `?include=files` on `showAttempt` / * `showGuestAttempt` to sideload the FileResources in * `included[]` (single round-trip preview). * The answer-to-file mapping lives on `FileResource.meta.questionId` * (set at `file:process` time), not on AnswerFileSchema - * related-resource IDs in attributes would violate JSON:API. * @export * @interface AttemptRelationshipsFilesSchema */ export interface AttemptRelationshipsFilesSchema { /** * * @type {Array} * @memberof AttemptRelationshipsFilesSchema */ data?: Array; } /** * Check if a given object implements the AttemptRelationshipsFilesSchema interface. */ export declare function instanceOfAttemptRelationshipsFilesSchema(value: object): value is AttemptRelationshipsFilesSchema; export declare function AttemptRelationshipsFilesSchemaFromJSON(json: any): AttemptRelationshipsFilesSchema; export declare function AttemptRelationshipsFilesSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): AttemptRelationshipsFilesSchema; export declare function AttemptRelationshipsFilesSchemaToJSON(json: any): AttemptRelationshipsFilesSchema; export declare function AttemptRelationshipsFilesSchemaToJSONTyped(value?: AttemptRelationshipsFilesSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AttemptRelationshipsFilesSchema.d.ts.map