// Copyright © 2022-2026 Partium, Inc. DBA Partium import { BaseSubmissionResponse } from './base-submission-response'; /** * A rejected image submission. */ export interface RejectedImageSubmission { /** * The ID of the part. */ partId: string; /** * The ID of the image. */ imageId: string; } /** * Response for rejecting image submissions. */ export interface RejectImageSubmissionResponse extends BaseSubmissionResponse { /** * The rejected images. */ images?: RejectedImageSubmission[]; }