/** * This file was auto-generated by Fern from our API Definition. */ import * as Vellum from "../index"; /** * A bulk operation that represents the deletion of a Test Case. */ export interface TestSuiteTestCaseDeleteBulkOperationRequest { /** An ID representing this specific operation. Can later be used to look up information about the operation's success in the response. */ id: string; type: "DELETE"; /** Information about the Test Case to delete */ data: Vellum.TestSuiteTestCaseDeleteBulkOperationDataRequest; }