export interface CreateCriteriaRequestBody { readonly containerId: string; readonly storageNodeId: string; } export interface CopyCriteriaRequestBody { readonly containerId: string; readonly selectObjectId: string; } export interface InsertCriteriaRequestBody { readonly containerId: string; readonly selectObjectId: string; } export interface InsertCriteriaQuantumRequestBody { readonly containerId: string; readonly selectObjectId: string; readonly quantumId: string; } export interface InsertCriteriaOperationRequestBody { readonly containerId: string; readonly selectObjectId: string; readonly quantumId: string; readonly operationId: string; } export interface UnbindCriteriaRequestBody { readonly containerId: string; readonly selectObjectId: string; } export interface DeleteCriteriaRequestBody { readonly containerId: string; readonly selectObjectId: string; readonly listingStorageType: string; }