interface Collection {
    accessories?: AccessoryReference[];
    avatars?: AvatarAssetReference[];
    fallbackGarments?: FallbackGarments;
    garments?: AssetReference[];
    info?: {
        collectionLink?: string;
        imageUrl: string;
        name: string;
    };
    outfits?: Outfit[];
    scenes?: AssetReference[];
    settings?: {
        carouselTimeout?: number;
        shoeOptions?: ShoeOption[];
        style?: string;
    };
}

Properties

accessories?: AccessoryReference[]
fallbackGarments?: FallbackGarments
garments?: AssetReference[]
info?: {
    collectionLink?: string;
    imageUrl: string;
    name: string;
}
outfits?: Outfit[]
scenes?: AssetReference[]
settings?: {
    carouselTimeout?: number;
    shoeOptions?: ShoeOption[];
    style?: string;
}