@deltachat/jsonrpc-client
    Preparing search index...

    Type Alias WebxdcMessageInfo

    type WebxdcMessageInfo = {
        document: string | null;
        icon: string;
        internetAccess: boolean;
        name: string;
        selfAddr: string;
        sendUpdateInterval: Usize;
        sendUpdateMaxSize: Usize;
        sourceCodeUrl: string | null;
        summary: string | null;
    }
    Index

    Properties

    document: string | null

    if the Webxdc represents a document, then this is the name of the document

    icon: string

    App icon file name. Defaults to an standard icon if nothing is set in the manifest.

    To get the file, use dc_msg_get_webxdc_blob(). (not yet in jsonrpc, use rust api or cffi for it)

    App icons should should be square, the implementations will add round corners etc. as needed.

    internetAccess: boolean

    True if full internet access should be granted to the app.

    name: string

    The name of the app.

    Defaults to the filename if not set in the manifest.

    selfAddr: string

    Address to be used for window.webxdc.selfAddr in JS land.

    sendUpdateInterval: Usize

    Milliseconds to wait before calling sendUpdate() again since the last call. Should be exposed to window.sendUpdateInterval in JS land.

    sendUpdateMaxSize: Usize

    Maximum number of bytes accepted for a serialized update object. Should be exposed to window.sendUpdateMaxSize in JS land.

    sourceCodeUrl: string | null

    URL where the source code of the Webxdc and other information can be found; defaults to an empty string. Implementations may offer an menu or a button to open this URL.

    summary: string | null

    short string describing the state of the app, sth. as "2 votes", "Highscore: 123", can be changed by the apps