/** * HashiCorp Vault API * HTTP API that gives you full access to Vault. All API routes are prefixed with `/v1/`. * * The version of the OpenAPI document: 1.20.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface EntityBatchDeleteRequest */ export interface EntityBatchDeleteRequest { /** * Entity IDs to delete * @type {Array} * @memberof EntityBatchDeleteRequest */ entityIds?: Array; } /** * Check if a given object implements the EntityBatchDeleteRequest interface. */ export declare function instanceOfEntityBatchDeleteRequest(value: object): value is EntityBatchDeleteRequest; export declare function EntityBatchDeleteRequestFromJSON(json: any): EntityBatchDeleteRequest; export declare function EntityBatchDeleteRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): EntityBatchDeleteRequest; export declare function EntityBatchDeleteRequestToJSON(json: any): EntityBatchDeleteRequest; export declare function EntityBatchDeleteRequestToJSONTyped(value?: EntityBatchDeleteRequest | null, ignoreDiscriminator?: boolean): any;