@schie/fluent-zpl - v0.10.0
    Preparing search index...

    Interface EPCOpts

    Options for EPC encoding (convenience method for RFID EPC fields).

    This interface defines the configuration options for EPC encoding:

    • epc: The EPC data string to encode.
    • position: Optional distance from label edge.
    • password: Optional password for protected operations.
    interface EPCOpts {
        epc: string;
        password?: string;
        position?: number;
    }
    Index

    Properties

    epc: string
    password?: string
    position?: number