edgeport - v1.0.3
    Preparing search index...

    Interface SubmitOptions

    Options for SmppSession.submit.

    1.0.3

    interface SubmitOptions {
        dataCoding?: number;
        destination: string;
        destNpi?: number;
        destTon?: number;
        esmClass?: number;
        message: string | Uint8Array<ArrayBufferLike>;
        priorityFlag?: number;
        registeredDelivery?: number | boolean;
        scheduleDeliveryTime?: string;
        serviceType?: string;
        source?: string;
        sourceNpi?: number;
        sourceTon?: number;
        tlvs?: Tlv[];
        validityPeriod?: string;
    }
    Index
    dataCoding?: number

    The data_coding byte; defaults to DataCoding.Default.

    destination: string

    Destination address (the recipient MSISDN).

    destNpi?: number

    Destination address Numbering-Plan-Indicator; defaults to Npi.Isdn.

    destTon?: number

    Destination address Type-of-Number; defaults to Ton.International.

    esmClass?: number

    The esm_class byte; defaults to 0.

    message: string | Uint8Array<ArrayBufferLike>

    The message body. A string is encoded per dataCoding (ASCII/Latin-1 for the default coding, UTF-16BE for DataCoding.Ucs2); pass a Uint8Array for full control.

    priorityFlag?: number

    The priority_flag; defaults to 0.

    registeredDelivery?: number | boolean

    Request an SMSC delivery receipt. true sets registered_delivery to 1; pass a number for finer control over the flag bits.

    scheduleDeliveryTime?: string

    The schedule_delivery_time (empty for immediate).

    serviceType?: string

    The service_type; usually empty.

    source?: string

    Source address (the sender id or MSISDN).

    sourceNpi?: number

    Source address Numbering-Plan-Indicator; defaults to Npi.Isdn.

    sourceTon?: number

    Source address Type-of-Number; defaults to Ton.International.

    tlvs?: Tlv[]

    Extra optional parameters (TLVs) appended to the PDU.

    validityPeriod?: string

    The validity_period (empty for the SMSC default).