RTSDK
    Preparing search index...

    Interface DroppedAssetInterface

    interface DroppedAssetInterface {
        addedOn?: string;
        assetBroadcastAll?: null | boolean;
        assetId?: string;
        assetName?: string;
        assetPodium?: null | boolean;
        assetPrivateConversation?: null | boolean;
        assetPrivateConversationCap?: null | number;
        assetPrivateZoneChannelDisabled?: null | boolean;
        assetScale?: null | number;
        audioRadius?: null | number;
        audioSliderVolume?: null | number;
        bottomLayerURL?: null | string;
        broadcasterEmail?: null | string;
        clickableDisplayTextDescription?: null | string;
        clickableDisplayTextHeadline?: null | string;
        clickableLink?: null | string;
        clickableLinks?: null | DroppedAssetClickType[];
        clickableLinkTitle?: null | string;
        clickablePortal?: null | string;
        clickType?: null | string;
        contractAddress?: null | string;
        creationDatetime?: number;
        creatorTags?: object;
        credentials?: InteractiveCredentials;
        dataObject?: null | object;
        existingKey?: null | string;
        id?: string;
        interactivePublicKey?: null | string;
        isInteractive?: null | boolean;
        isLandmarkZoneEnabled?: null | boolean;
        isPrivateZone?: null | boolean;
        isPublic?: boolean;
        isVideoPlayer?: null | boolean;
        jwt?: string;
        kitId?: null | string;
        layer0?: null | string;
        layer1?: null | string;
        library?: string;
        mediaLink?: null | string;
        mediaName?: null | string;
        mediaPlayTime?: null | number;
        mediaType?: null | string;
        mediaUploadedId?: null | string;
        mediaUploadedLink?: null | string;
        metaName?: null | string;
        muteZone?: null | boolean;
        originalAssetId?: string;
        originalKit?: string;
        ownerId?: string;
        ownerName?: string;
        platformAsset?: boolean;
        portalCoordsX?: null | number;
        portalCoordsY?: null | number;
        position: { x: number; y: number };
        purchased?: boolean;
        purchaseDate?: string;
        purchasedFrom?: string;
        requestOptions: object;
        showMediaAsIfPeer?: null | boolean;
        specialType?: null | string;
        syncUserMedia?: null | boolean;
        tagJson?: null | string;
        teleportX?: null | number;
        teleportY?: null | number;
        text?: null | string;
        textColor?: null | string;
        textFont?: null | string;
        textFontFamily?: null | string;
        textSize?: null | number;
        textWeight?: null | string;
        textWidth?: null | number;
        tokenName?: null | string;
        tokenSymbol?: null | string;
        topia: Topia;
        topLayerURL?: null | string;
        transactionId?: string;
        type?: string;
        uniqueName?: null | string;
        urlSlug: string;
        walletAddress?: null | string;
        worldId?: null | string;
        yOrderAdjust?: null | number;
        addWebhook(
            __namedParameters: {
                dataObject: object;
                description: string;
                isUniqueOnly: boolean;
                title: string;
                type: string;
                url: string;
            },
        ): Promise<void | AxiosResponse<any, any>>;
        deleteDroppedAsset(): Promise<void | ResponseType>;
        fetchAssetById(): Promise<object | ResponseType>;
        fetchDataObject(
            appPublicKey?: string,
            appJWT?: string,
        ): Promise<void | ResponseType>;
        fetchDroppedAssetById(): Promise<void | ResponseType>;
        incrementDataObjectValue(
            path: string,
            amount: number,
            options: object,
        ): Promise<void | ResponseType>;
        setDataObject(
            dataObject: object,
            options: object,
        ): Promise<void | ResponseType>;
        setInteractiveSettings(
            __namedParameters: {
                interactivePublicKey: string;
                isInteractive?: boolean;
            },
        ): Promise<void | ResponseType>;
        updateBroadcast(
            __namedParameters: UpdateBroadcastInterface,
        ): Promise<void | ResponseType>;
        updateClickType(
            __namedParameters: UpdateClickTypeInterface,
        ): Promise<void | ResponseType>;
        updateCustomTextAsset(
            style: undefined | null | object,
            text: undefined | null | string,
        ): Promise<void | ResponseType>;
        updateDataObject(
            dataObject: object,
            options: object,
        ): Promise<void | ResponseType>;
        updateMediaType(
            __namedParameters: UpdateMediaTypeInterface,
        ): Promise<void | ResponseType>;
        updateMuteZone(isMutezone: boolean): Promise<void | ResponseType>;
        updatePosition(
            x: number,
            y: number,
            yOrderAdjust?: number,
        ): Promise<void | ResponseType>;
        updatePrivateZone(
            __namedParameters: UpdatePrivateZoneInterface,
        ): Promise<void | ResponseType>;
        updateScale(assetScale: number): Promise<void | ResponseType>;
        updateUploadedMediaSelected(mediaId: string): Promise<void | ResponseType>;
        updateWebhookZone(
            isWebhookZoneEnabled: boolean,
        ): Promise<void | ResponseType>;
        updateWebImageLayers(
            bottom: string,
            top: string,
        ): Promise<void | ResponseType>;
    }

    Hierarchy (View Summary)

    Implemented by

    Index

    Properties

    Methods

    Properties

    addedOn?: string
    assetBroadcastAll?: null | boolean
    assetId?: string
    assetName?: string
    assetPodium?: null | boolean
    assetPrivateConversation?: null | boolean
    assetPrivateConversationCap?: null | number
    assetPrivateZoneChannelDisabled?: null | boolean
    assetScale?: null | number
    audioRadius?: null | number
    audioSliderVolume?: null | number
    bottomLayerURL?: null | string
    broadcasterEmail?: null | string
    clickableDisplayTextDescription?: null | string
    clickableDisplayTextHeadline?: null | string
    clickableLink?: null | string
    clickableLinks?: null | DroppedAssetClickType[]
    clickableLinkTitle?: null | string
    clickablePortal?: null | string
    clickType?: null | string
    contractAddress?: null | string
    creationDatetime?: number
    creatorTags?: object
    dataObject?: null | object
    existingKey?: null | string
    id?: string
    interactivePublicKey?: null | string
    isInteractive?: null | boolean
    isLandmarkZoneEnabled?: null | boolean
    isPrivateZone?: null | boolean
    isPublic?: boolean
    isVideoPlayer?: null | boolean
    jwt?: string
    kitId?: null | string
    layer0?: null | string
    layer1?: null | string
    library?: string
    mediaLink?: null | string
    mediaName?: null | string
    mediaPlayTime?: null | number
    mediaType?: null | string
    mediaUploadedId?: null | string
    mediaUploadedLink?: null | string
    metaName?: null | string
    muteZone?: null | boolean
    originalAssetId?: string
    originalKit?: string
    ownerId?: string
    ownerName?: string
    platformAsset?: boolean
    portalCoordsX?: null | number
    portalCoordsY?: null | number
    position: { x: number; y: number }
    purchased?: boolean
    purchaseDate?: string
    purchasedFrom?: string
    requestOptions: object
    showMediaAsIfPeer?: null | boolean
    specialType?: null | string
    syncUserMedia?: null | boolean
    tagJson?: null | string
    teleportX?: null | number
    teleportY?: null | number
    text?: null | string
    textColor?: null | string
    textFont?: null | string
    textFontFamily?: null | string
    textSize?: null | number
    textWeight?: null | string
    textWidth?: null | number
    tokenName?: null | string
    tokenSymbol?: null | string
    topia: Topia
    topLayerURL?: null | string
    transactionId?: string
    type?: string
    uniqueName?: null | string
    urlSlug: string
    walletAddress?: null | string
    worldId?: null | string
    yOrderAdjust?: null | number

    Methods

    • Parameters

      • __namedParameters: {
            dataObject: object;
            description: string;
            isUniqueOnly: boolean;
            title: string;
            type: string;
            url: string;
        }

      Returns Promise<void | AxiosResponse<any, any>>

    • Returns Promise<void | ResponseType>

    • Returns Promise<object | ResponseType>

    • Parameters

      • OptionalappPublicKey: string
      • OptionalappJWT: string

      Returns Promise<void | ResponseType>

    • Returns Promise<void | ResponseType>

    • Parameters

      • path: string
      • amount: number
      • options: object

      Returns Promise<void | ResponseType>

    • Parameters

      • dataObject: object
      • options: object

      Returns Promise<void | ResponseType>

    • Parameters

      • __namedParameters: { interactivePublicKey: string; isInteractive?: boolean }

      Returns Promise<void | ResponseType>

    • Parameters

      • style: undefined | null | object
      • text: undefined | null | string

      Returns Promise<void | ResponseType>

    • Parameters

      • dataObject: object
      • options: object

      Returns Promise<void | ResponseType>

    • Parameters

      • isMutezone: boolean

      Returns Promise<void | ResponseType>

    • Parameters

      • x: number
      • y: number
      • OptionalyOrderAdjust: number

      Returns Promise<void | ResponseType>

    • Parameters

      • assetScale: number

      Returns Promise<void | ResponseType>

    • Parameters

      • mediaId: string

      Returns Promise<void | ResponseType>

    • Parameters

      • isWebhookZoneEnabled: boolean

      Returns Promise<void | ResponseType>

    • Parameters

      • bottom: string
      • top: string

      Returns Promise<void | ResponseType>