filecoin-pin
    Preparing search index...

    Interface DataSetPiecesResult

    Result from getting pieces for a dataset

    interface DataSetPiecesResult {
        dataSetId: number;
        pieces: PieceInfo[];
        totalSizeBytes?: bigint;
        warnings?: DataSetWarning[];
    }
    Index

    Properties

    dataSetId: number

    Dataset ID these pieces belong to

    pieces: PieceInfo[]

    List of pieces in the dataset

    totalSizeBytes?: bigint

    Total size of all pieces in bytes (sum of individual piece sizes)

    warnings?: DataSetWarning[]

    Non-fatal warnings encountered during retrieval