displayType #
The displayType
is a value present in meter objects in the returned JSON
response which represents the display type that Blicker has detected.
The property can hold the value of either analog
or digital
.
If a specific display type is expected, this can be provided as the
displayType
request parameter.
Example response #
{
"objects": [
{
"meter": {
"displayType": "analog",
"objects": {
"display": [
{},
{}
],
"serialNumber": [
{}
],
"barcode": []
}
}
}
]
}
Example response from API version 2024-03-01 #
{
"objects": [
{
"meter": {
"displayType": "analog",
"objects": {
"display": [
{},
{}
],
"serialNumber": [
{}
],
"barcode": [],
"datamatrix": [],
"qrCode": []
}
}
}
]
}