edgeport - v1.0.3
    Preparing search index...

    Interface DeliveryReceipt

    A parsed SMSC delivery receipt, extracted from a deliver_sm short_message.

    Delivery receipts use a loosely standardized key:value text format; every field is optional here because SMSCs vary. See parseDeliveryReceipt.

    1.0.3

    interface DeliveryReceipt {
        dlvrd?: string;
        doneDate?: string;
        err?: string;
        id?: string;
        stat?: string;
        sub?: string;
        submitDate?: string;
        text?: string;
    }
    Index
    dlvrd?: string

    Number of messages delivered (dlvrd).

    doneDate?: string

    The done date (done date), in the SMSC's YYMMDDhhmm format.

    err?: string

    The network error code (err).

    id?: string

    The message_id of the original submit_sm this receipt is for.

    stat?: string

    The final message state (stat), e.g. DELIVRD, EXPIRED, UNDELIV.

    sub?: string

    Number of messages submitted (sub).

    submitDate?: string

    The submit date (submit date), in the SMSC's YYMMDDhhmm format.

    text?: string

    The leading bytes of the original message (text / Text).