// Copyright © 2022-2026 Partium, Inc. DBA Partium import { BaseSubmissionResponse } from './base-submission-response'; /** * A submitted image. */ export interface SubmittedImage { /** * The ID of the image submission. */ imageId: string; /** * The ID of the part associated with the image. */ partId: string; } /** * A response containing submitted images. */ export interface SubmitImagesResponse extends BaseSubmissionResponse { /** * The submitted images. */ images?: SubmittedImage[]; }