Hi,
I'm trying to implement an API wrapper in C#. So far it's looking good, but I do have a few small questions.
If I look at the Place API call (/places/7#) for instance, it returns id, place_category_id, and radius as strings, while it returns people_count and item_count as integers, while they all appear to be integers.
Is there a specific reason for this? Do I have to leave them as strings? Could they contain non integer values? Or can I just assume they'll always be integers and convert them to that in my wrapper? And does this apply to all integer like fields in the API?.
Thanks for the help in advance!
Bas Bosman