To keep parameter and field repsonses consistent name 'card' to 'handle'
which entry verb uses.
Bug-AGL: SPEC-2095
Change-Id: I7964469a631b5aeb19814b595c4c4f4ca394040a
Signed-off-by: Matt Ranostay <matt.ranostay@konsulko.com>
json_object *result_obj = json_object_new_object();
json_object *card_str = json_object_new_string(card);
json_object *name_str = json_object_new_string(name);
- json_object_object_add(result_obj, "card", card_str);
+ json_object_object_add(result_obj, "handle", card_str);
json_object_object_add(result_obj, "name", name_str);
json_object_array_add(results_array, result_obj);
g_free(card);