| 4096 | ~LocationModel() { } |
| 4097 | |
| 4098 | void FromJson(Json::Value& input) override |
| 4099 | { |
| 4100 | FromJsonUtilS(input["City"], City); |
| 4101 | FromJsonUtilE(input["pfContinentCode"], pfContinentCode); |
| 4102 | FromJsonUtilE(input["pfCountryCode"], pfCountryCode); |
| 4103 | FromJsonUtilP(input["Latitude"], Latitude); |
| 4104 | FromJsonUtilP(input["Longitude"], Longitude); |
| 4105 | } |
| 4106 | |
| 4107 | Json::Value ToJson() const override |
| 4108 | { |
nothing calls this directly
no test coverage detected