/** * Athena API * REST API for the Athena system * * The version of the OpenAPI document: 1.0.0 * * * 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 StudyObjectiveFileAttachment */ export interface StudyObjectiveFileAttachment { /** * user_files.id — durable reference to the uploaded file. * @type {string} * @memberof StudyObjectiveFileAttachment */ userFileId: string; /** * * @type {string} * @memberof StudyObjectiveFileAttachment */ name: string; /** * * @type {string} * @memberof StudyObjectiveFileAttachment */ mimeType: string; /** * * @type {number} * @memberof StudyObjectiveFileAttachment */ sizeBytes: number; /** * Freshly-signed S3 GET URL (~30 min TTL). Regenerated on every read; do not persist. * @type {string} * @memberof StudyObjectiveFileAttachment */ previewUrl: string; } /** * Check if a given object implements the StudyObjectiveFileAttachment interface. */ export declare function instanceOfStudyObjectiveFileAttachment(value: object): value is StudyObjectiveFileAttachment; export declare function StudyObjectiveFileAttachmentFromJSON(json: any): StudyObjectiveFileAttachment; export declare function StudyObjectiveFileAttachmentFromJSONTyped(json: any, ignoreDiscriminator: boolean): StudyObjectiveFileAttachment; export declare function StudyObjectiveFileAttachmentToJSON(json: any): StudyObjectiveFileAttachment; export declare function StudyObjectiveFileAttachmentToJSONTyped(value?: StudyObjectiveFileAttachment | null, ignoreDiscriminator?: boolean): any;