@schie/epc - v0.1.0
    Preparing search index...

    Type Alias Gid96Result

    GID-96 encoding result.

    const result: Gid96Result = {
    scheme: EpcScheme.GID_96,
    hex: '000000000000000000000000',
    binary: '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000',
    uri: 'urn:epc:tag:gid-96:0.0.0',
    fields: { managerNumber: '0', objectClass: '0', serial: '0' },
    };
    result.uri;
    // => 'urn:epc:tag:gid-96:0.0.0'
    type Gid96Result = {
        binary: string;
        fields: { managerNumber: string; objectClass: string; serial: string };
        hex: string;
        scheme: GID_96;
        uri: string;
    }
    Index

    Properties

    binary: string

    96-bit EPC represented as binary.

    fields: { managerNumber: string; objectClass: string; serial: string }

    Parsed fields decoded from the EPC.

    Type Declaration

    • managerNumber: string

      Manager number assigned by the issuer.

    • objectClass: string

      Object class within the manager number.

    • serial: string

      Serial number for the individual item.

    hex: string

    96-bit EPC represented as hex.

    scheme: GID_96

    EPC scheme for the result.

    uri: string

    Tag URI representation of the EPC.