JSON_CustomDataResult

JSON message about the results of searching for custom card information

{
  "CustomDataResult":{
    "status":"ok", 
/*required, string, card issuing status: "ok"-succeeded, "failed"-operation failed, "timeout"-timed out, "verifiyFailure"-authentication failed, "noCard"-no card detected, "processing"-processing*/
    "cardErrorCode":0, 
/*dependent, int, internal error code of card operation. This node is valid when the value of status is "failed"*/
    "length":1, 
/*dependent, int, length of the source data that has been read, unit: byte. This node is valid when the value of status is "ok"*/
    "data":""
/*dependent, string, card information encoded by Base64. This node is valid when the value of status is "ok"*/
  }
}