Type alias WeaviateGenericObject<T>

WeaviateGenericObject<T>: {
    metadata: ReturnMetadata | undefined;
    properties: ReturnProperties<T>;
    references: ReturnReferences<T> | undefined;
    uuid: string;
    vectors: Vectors;
}

Type Parameters

  • T

Type declaration

  • metadata: ReturnMetadata | undefined

    The returned metadata of the object.

  • properties: ReturnProperties<T>

    The generic returned properties of the object derived from the type T.

  • references: ReturnReferences<T> | undefined

    The returned references of the object derived from the type T.

  • uuid: string

    The UUID of the object.

  • vectors: Vectors

    The returned vectors of the object.