Interface IBarcodeData
A structure containing data that can be encoded into barcodes.
Package: @aurigma/design-editor-iframe
Examples
var configuration = {
autoLoadUserInfo: true,
userInfo: {
"Ean 8": {
"BarcodeFormat": "EAN_8",
"BarcodeValue": "1234567"
},
"Ean 13": {
"BarcodeFormat": "EAN_13",
"BarcodeValue": "123456789012"
},
"Qr Code": {
"BarcodeFormat": "QR_CODE",
"BarcodeSubType": "Url",
"Url": "https://example.com"
}
}
};
Properties
barcodeFormat
The barcode type.
Declaration
barcodeFormat: BarcodeFormat;
Property Value
| Type | Description |
|---|---|
| BarcodeFormat | The barcode type. |
barcodeSubType
The QR code subtype.
Declaration
barcodeSubType?: BarcodeSubType;
Property Value
| Type | Description |
|---|---|
| BarcodeSubType | The QR code subtype. |
barcodeValue
A value encoded into this barcode.
Declaration
barcodeValue?: string;
Property Value
| Type | Description |
|---|---|
| string | A value encoded into this barcode. |
data
Arbitrary data encoded into QR code.
Declaration
data?: string;
Property Value
| Type | Description |
|---|---|
| string | Arbitrary data encoded into QR code. |
The email address encoded into this barcode.
Declaration
email?: string;
Property Value
| Type | Description |
|---|---|
| string | The email address encoded into this barcode. |
firstName
The first name encoded into this barcode.
Declaration
firstName?: string;
Property Value
| Type | Description |
|---|---|
| string | The first name encoded into this barcode. |
lastName
The last name encoded into this barcode.
Declaration
lastName?: string;
Property Value
| Type | Description |
|---|---|
| string | The last name encoded into this barcode. |
mobilePhone
The mobile phone number encoded into this barcode.
Declaration
mobilePhone?: string;
Property Value
| Type | Description |
|---|---|
| string | The mobile phone number encoded into this barcode. |
organization
The organization name encoded into this barcode.
Declaration
organization?: string;
Property Value
| Type | Description |
|---|---|
| string | The organization name encoded into this barcode. |
phone
The phone number encoded into this barcode.
Declaration
phone?: string;
Property Value
| Type | Description |
|---|---|
| string | The phone number encoded into this barcode. |
position
The job position encoded into this barcode.
Declaration
position?: string;
Property Value
| Type | Description |
|---|---|
| string | The job position encoded into this barcode. |
url
The URL encoded into this barcode.
Declaration
url?: string;
Property Value
| Type | Description |
|---|---|
| string | The URL encoded into this barcode. |