Interface PolyverseAssetObjectData

The PolyverseAssetObjectData structure represents the data of an asset in the Polyverse Asset Library.

interface PolyverseAssetObjectData {
    ContentLength: number;
    Context: string;
    Format: string;
    ID: string;
    Name: string;
    Type:
        | "Mesh"
        | "Image"
        | "Json"
        | "RSXDeployment"
        | "PointCloud"
        | "Blob"
        | "Text"
        | "PolytronData";
    URL: string;
}

Properties

ContentLength: number
Context: string
Format: string
ID: string
Name: string
Type:
    | "Mesh"
    | "Image"
    | "Json"
    | "RSXDeployment"
    | "PointCloud"
    | "Blob"
    | "Text"
    | "PolytronData"
URL: string