JSON_TerminalResolutionCap

JSON message about capabilities of terminal resolution parameters

{
  "TerminalResolutionCap": {
    "resolutionType": {
      "@opt": [ "auto", "custome" ]
    },
/*optional, string,  resolution type: auto, "custome"-custom (default)*/
    "imageWidth": {
      "@min": 480,
      "@max": 3840
    },
/*optional, int, horizontal pixel, this field is required only when resolutionType is "custome"*/
    "imageHeight": {
      "@min": 320,
      "@max": 2160
    },
/*optional, vertical pixel, this field is required only when resolutionType is "custome"*/
    "operateType": {
      "@opt": [ "byTerminal", ", byOrg" ]
    },
/*optional, string, configuration method: "byTerminal"-by terminal, "byOrg"-by organization*/
    "terminalNoList ": { 
/*optional, int, terminal No.*/
      "@min": 1
      "@max": 1024
    },
    "orgNoList": { 
/*required, int, organization No.*/
      "@min": 1,
      "@max": 1024
    }    
  }
}