Enum BarcodeSubType
An enumeration of QR code subtypes.
Examples
var configuration = {
autoLoadUserInfo: true,
userInfo: {
"Phone Number": {
"BarcodeFormat": "QR_CODE",
"BarcodeSubType": "Phone",
"Phone": "5551234567"
},
"Url": {
"BarcodeFormat": "QR_CODE",
"BarcodeSubType": "Url",
"Url": "https://example.com"
}
}
};
Fields
| Name | Description |
|---|---|
| Data | QR code representing arbitrary data. |
| None | QR code that does not require a subtype. |
| Phone | QR code representing a phone number. This barcode subtype uses the IBarcodeData.phone value. |
| Url | QR code representing a URL address. This barcode subtype uses the IBarcodeData.url value. |
| VCard | QR code representing VCard. |