@piiano/vault-client
Version:
Piiano Vault generated typescript client
16 lines • 657 B
TypeScript
import type { BulkObjectResult } from './BulkObjectResult';
export type BulkObjectResponse = {
/**
* Indicates whether the operation was completed successfully for all objects in the bulk operation.
* If the operation failed for one or more of the provided objects, this property will be set to `false`.
*
*/
ok: boolean;
/**
* An array of objects representing the processing result of each item in the bulk operation.
* The order of the objects in the array will match the order of the objects in the request.
*
*/
results: Array<BulkObjectResult>;
};
//# sourceMappingURL=BulkObjectResponse.d.ts.map