Documentation
    Preparing search index...

    Interface ObjectResponse<Include>

    interface ObjectResponse<out Include extends ObjectInclude = {}> {
        content: Include extends { content: true }
            ? Uint8Array<ArrayBuffer>
            : undefined;
        digest: string;
        objectId: string;
        owner: ObjectOwner;
        previousTransaction: Include extends { previousTransaction: true }
            ? null | string
            : undefined;
        type: string;
        version: string;
    }

    Type Parameters

    Hierarchy (View Summary)

    Index

    Properties

    content: Include extends { content: true } ? Uint8Array<ArrayBuffer> : undefined
    digest: string
    objectId: string
    previousTransaction: Include extends { previousTransaction: true }
        ? null | string
        : undefined
    type: string
    version: string