Documentation
    Preparing search index...

    Interface Object<Include>

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

    Type Parameters

    Index

    Properties

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