ranges

ranges #

ranges is a value present in display objects only when ranges has been specified in the request. When the ranges has been specified in the request, the response will simply contain the same value. However, each display, indexed with its index , will contain only its respective expected range.

Version info
This response field has been added in the the 2020-10-01 release.

Example response #

{
    "objects": [
        {
            "meter": {
                "objects": {
                    "display": [
                        {
                            "value": "14233.48",
                            "ranges": {
                                "min": 14000.0,
                                "max": 14500.0
                            }
                        },
                        {
                            "value": "12039.34",
                            "ranges": {
                                "min": 12000.0,
                                "max": 13000.0
                            }
                        }
                    ],
                    "serialNumber": [
                        {}
                    ],
                    "barcode": []
                }
            }
        }
    ]
}