import type { DeleteAllNftsDetail } from './DeleteAllNftsDetail';
export type DeleteAllNftsResultClass = {
    successfullyDeleted?: number;
    readonly notDeleted?: number;
    errorDetails?: Array<DeleteAllNftsDetail> | null;
};
