Position model needs correction.

Hi Anton,

In case of GT06N, the network field of Position contains something like this

{"radioType":"gsm","considerIp":false,"cellTowers":[{"cellId":,"locationAreaCode":,"mobileCountryCode":,"mobileNetworkCode":}]}

As such, my java-client generated using swagger failed to deserialize position data, because network field is of type string but in actual its object.
I think the correct data type for network field should be specified in the swagger file as below to make it very generic.

network:
 type: object
 additionalProperties:
  type: object
Anton Tananaev5 years ago

Sure, feel free to send a pull request to update it.

I have updated swagger for type and here is the pull request