pub unsafe extern "C" fn aws_json_value_remove_from_object(
    object: *mut aws_json_value,
    key: aws_byte_cursor
) -> c_int
Expand description

Removes the aws_json_value at the given key. @param object The object aws_json_value you want to remove a aws_json_value in. @param key The key that the aws_json_value is at. Is case sensitive. @return AWS_OP_SUCCESS if the aws_json_value was removed. Will return AWS_OP_ERR if the object passed is invalid or if the value at the key cannot be found.