pamoja for TypeScript - v0.1.18
    Preparing search index...

    Interface Packet

    One datagram of the protocol, with the fields its kind carries.

    interface Packet {
        gateway?: string;
        kind: GatewayPacketKind;
        packets?: Rxpk[];
        status?: Stat;
        token: number;
        transmit?: Txpk;
        txStatus?: string;
    }
    Index
    gateway?: string

    The gateway's identifier, as sixteen hexadecimal digits, for the kinds that carry one.

    Which kind of datagram.

    packets?: Rxpk[]

    The packets a PUSH_DATA forwards.

    status?: Stat

    The report a PUSH_DATA carries.

    token: number

    The token that pairs a datagram with its answer.

    transmit?: Txpk

    What a PULL_RESP asks the gateway to transmit.

    txStatus?: string

    What a TX_ACK reports, in the protocol's own words, such as NONE or COLLISION_PACKET.