roavatar-renderer
    Preparing search index...

    Interface AvatarInventory_Result

    interface AvatarInventory_Result {
        avatarInventoryItems: {
            acquisitionTime: string;
            availabilityStatus: string;
            expirationTime?: string;
            headShape?: string;
            itemCategory: { itemSubType: number; itemType: number };
            itemId: number;
            itemName: string;
            lastEquipTime?: string;
            outfitDetail?: {
                assets: { id: number }[];
                bodyColor3s: {
                    headColor3: string;
                    leftArmColor3: string;
                    leftLegColor3: string;
                    rightArmColor3: string;
                    rightLegColor3: string;
                    torsoColor3: string;
                };
                playerAvatarType: "R6"
                | "R15";
                scales: {
                    bodyType: number;
                    depth: number;
                    head: number;
                    height: number;
                    proportion: number;
                    width: number;
                };
            };
        }[];
        nextPageToken: string
        | null;
    }
    Index

    Properties

    avatarInventoryItems: {
        acquisitionTime: string;
        availabilityStatus: string;
        expirationTime?: string;
        headShape?: string;
        itemCategory: { itemSubType: number; itemType: number };
        itemId: number;
        itemName: string;
        lastEquipTime?: string;
        outfitDetail?: {
            assets: { id: number }[];
            bodyColor3s: {
                headColor3: string;
                leftArmColor3: string;
                leftLegColor3: string;
                rightArmColor3: string;
                rightLegColor3: string;
                torsoColor3: string;
            };
            playerAvatarType: "R6"
            | "R15";
            scales: {
                bodyType: number;
                depth: number;
                head: number;
                height: number;
                proportion: number;
                width: number;
            };
        };
    }[]
    nextPageToken: string | null