export interface Failure {
    /**
     * The identifier for an API request for error tracking
     */
    item_id: number;
    /**
     * The identifier for an API request for error tracking
     */
    error_description: string;
}
export interface BatchResult {
    /**
     * List of item_id which have been updated successfully.
     */
    modifications: string[];
    /**
     * The identifier for an API request for error tracking
     */
    failures: Failure[];
}
export default interface UpdatePriceBatchResponse {
    /**
     * Result of batch updating.
     */
    batch_result: BatchResult[];
    /**
     * The identifier for an API request for error tracking
     */
    request_id: string;
}
