// Copyright © 2022-2026 Partium, Inc. DBA Partium /** * Request for rejecting image submissions. */ export interface RejectImageSubmissionRequest { /** * The organization name. */ organization?: string; /** * The IDs of the images to reject. */ imageIds: string[]; }