Models¶
DestinationWeatherResponse
¶
Bases: HEREModel
A class representing the Weather Forecasts for DestinationWeather Api.
Source code in herepy/models.py
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 |
|
new_from_jsondict(data, param_defaults, **kwargs)
classmethod
¶
Create a new instance based on a JSON dict. Any kwargs should be supplied by the inherited, calling class.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data |
dict
|
A JSON dict, as converted from the JSON in the here API. |
required |
Source code in herepy/models.py
211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 |
|
EVChargingStationsResponse
¶
Bases: HEREModel
A class representing the EV Charging Stations response data.
Source code in herepy/models.py
231 232 233 234 235 236 237 238 239 240 241 242 243 |
|
GeocoderAutoCompleteResponse
¶
Bases: HEREModel
A class representing the Geocoder Autocomplete Api response data.
Source code in herepy/models.py
140 141 142 143 144 145 146 147 148 |
|
GeocoderResponse
¶
Bases: HEREModel
A class representing the Geocoder Api response data.
Source code in herepy/models.py
81 82 83 84 85 86 87 88 89 |
|
GeocoderReverseResponse
¶
Bases: HEREModel
A class representing the Geocoder Reverse Api response data.
Source code in herepy/models.py
92 93 94 95 96 97 98 99 100 |
|
HEREModel
¶
Bases: object
Base class from which all here models will inherit.
Source code in herepy/models.py
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 |
|
__str__()
¶
Returns a string representation of HEREModel. By default this is the same as as_json_string().
Source code in herepy/models.py
10 11 12 13 |
|
as_dict()
¶
Create a dictionary representation of the object. Please see inline comments on construction when dictionaries contain HEREModels.
Source code in herepy/models.py
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
|
as_json_string()
¶
Returns the HEREModel as a JSON string based on key/value pairs returned from the as_dict() method.
Source code in herepy/models.py
21 22 23 24 |
|
new_from_jsondict(data, **kwargs)
classmethod
¶
Create a new instance based on a JSON dict. Any kwargs should be supplied by the inherited, calling class.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data |
dict
|
A JSON dict, as converted from the JSON in the here API. |
required |
Source code in herepy/models.py
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 |
|
IsolineRoutingResponse
¶
Bases: HEREModel
A class representing the Isoline Routing API Flow response data.
Source code in herepy/models.py
289 290 291 292 293 294 295 296 297 298 299 300 301 302 |
|
PlacesResponse
¶
Bases: HEREModel
A class representing the Places (Search) Api response data.
Source code in herepy/models.py
162 163 164 165 166 167 168 169 170 |
|
PublicTransitResponse
¶
Bases: HEREModel
A class representing the Public Transit Api response data.
Source code in herepy/models.py
173 174 175 176 177 178 179 180 181 |
|
RmeResponse
¶
Bases: HEREModel
A class representing the RME (Route Matcher) Api response data.
Source code in herepy/models.py
151 152 153 154 155 156 157 158 159 |
|
RoutingMatrixResponse
¶
Bases: HEREModel
A class representing the Routing Api matrix response data.
Source code in herepy/models.py
125 126 127 128 129 130 131 132 133 134 135 136 137 |
|
RoutingResponse
¶
Bases: HEREModel
A class representing the Routing Api response data.
Source code in herepy/models.py
103 104 105 106 107 108 109 110 111 |
|
RoutingResponseV8
¶
Bases: HEREModel
A class representing the Routing Api v8 response data.
Source code in herepy/models.py
114 115 116 117 118 119 120 121 122 |
|
TrafficFlowAvailabilityResponse
¶
Bases: HEREModel
A class representing the Traffic API Flow availability response data.
Source code in herepy/models.py
275 276 277 278 279 280 281 282 283 284 285 286 |
|
TrafficFlowResponse
¶
Bases: HEREModel
A class representing the Traffic API Flow response data.
Source code in herepy/models.py
261 262 263 264 265 266 267 268 269 270 271 272 |
|
TrafficIncidentResponse
¶
Bases: HEREModel
A class representing the Traffic Incidents response provided by Traffic Api.
Source code in herepy/models.py
184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 |
|
WaypointSequenceResponse
¶
Bases: HEREModel
A class representing the Fleet Telematics Waypoint Sequence response data.
Source code in herepy/models.py
246 247 248 249 250 251 252 253 254 255 256 257 258 |
|