// Copyright © 2022-2026 Partium, Inc. DBA Partium import { ImageSubmissionContentType } from './image-submission-content-type'; import { ImageSubmissionStatus } from './image-submission-status'; /** * An image submission. */ export interface ImageSubmission { /** * The ID of the image submission. */ imageId: string; /** * The URL of the image submission. */ url: string; /** * Whether the image submission is searchable. */ searchable: boolean; /** * Whether the image submission is displayed. */ display: boolean; /** * Whether the image submission is the primary image. */ isPrimaryImage: boolean; /** * The content type of the image submission. */ content: ImageSubmissionContentType; /** * The date the image submission was uploaded. */ uploadedAt: string; /** * The status of the image submission. */ status: ImageSubmissionStatus; }