You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Returns an iterable of devices matching the given query parameters. `params` is a dictionary of query parameters. Iterable has attribute total which is the total number of matching results.
246
+
Returns an iterable of devices matching the given query parameters. `params` is a dictionary of query parameters. Iterable also has attributes matching the raw API response document properties (i.e. `total` and `results`).
Returns an iterable of things matching the given query parameters. `params` is a dictionary of query parameters. Iterable has attribute total which is the total number of matching results.
279
+
Returns an iterable of things matching the given query parameters. `params` is a dictionary of query parameters. Iterable also has attributes matching the raw API response document properties (i.e. `total` and `results`).
280
280
281
281
**`thing.get_location()`**
282
282
@@ -309,11 +309,11 @@ Returns an experience created based on the supplied document.
309
309
310
310
**`exp.find_experiences(params=None)`**
311
311
312
-
Returns an iterable of experiences matching the given query parameters. `params` is a dictionary of query parameters. Iterable has attribute total which is the total number of matching results.
312
+
Returns an iterable of experiences matching the given query parameters. `params` is a dictionary of query parameters. Iterable also has attributes matching the raw API response document properties (i.e. `total` and `results`).
313
313
314
314
**`experience.get_devices(params=None)`**
315
315
316
-
Returns an iterable of [devices](#devices) that are part of this experience. `params` is a dictionary of query parameters. Iterable has attribute total which is the total number of matching results.
316
+
Returns an iterable of [devices](#devices) that are part of this experience. `params` is a dictionary of query parameters. Iterable also has attributes matching the raw API response document properties (i.e. `total` and `results`).
317
317
318
318
319
319
## Locations
@@ -333,16 +333,16 @@ Returns a location created based on the supplied document.
333
333
334
334
**`exp.find_locations(params=None)`**
335
335
336
-
Returns an iterable of locations matching the given query parameters. `params` is a dictionary of query parameters. Iterable has attribute total which is the total number of matching results.
336
+
Returns an iterable of locations matching the given query parameters. `params` is a dictionary of query parameters. Iterable also has attributes matching the raw API response document properties (i.e. `total` and `results`).
337
337
338
338
339
339
**`location.get_devices(params=None)`**
340
340
341
-
Returns an iterable of [devices](#devices) that are part of this location. `params` is a dictionary of query parameters. Iterable has attribute total which is the total number of matching results.
341
+
Returns an iterable of [devices](#devices) that are part of this location. `params` is a dictionary of query parameters. Iterable also has attributes matching the raw API response document properties (i.e. `total` and `results`).
342
342
343
343
**`location.get_things(params=None)`**
344
344
345
-
Returns an iterable of [things](#things) that are part of this location. `params` is a dictionary of query parameters. Iterable has attribute total which is the total number of matching results.
345
+
Returns an iterable of [things](#things) that are part of this location. `params` is a dictionary of query parameters. Iterable also has attributes matching the raw API response document properties (i.e. `total` and `results`).
Returns an iterable of feeds matching the given query parameters. `params` is a dictionary of query parameters. Iterable has attribute total which is the total number of matching results.
401
+
Returns an iterable of feeds matching the given query parameters. `params` is a dictionary of query parameters. Iterable also has attributes matching the raw API response document properties (i.e. `total` and `results`).
Returns an iterable of data items matching the given query parameters. `params` is a dictionary of query parameters. Iterable has attribute total which is the total number of matching results.
439
+
Returns an iterable of data items matching the given query parameters. `params` is a dictionary of query parameters. Iterable also has attributes matching the raw API response document properties (i.e. `total` and `results`).
440
440
441
441
```python
442
442
items = exp.find_data({ 'group': 'cats' })
@@ -484,7 +484,7 @@ Returns the delivery url for a variant of this content item.
484
484
485
485
**`content.get_children(params)`**
486
486
487
-
Returns an iterable of the content items children. `params` is a dictionary of query parameters. Iterable has attribute total which is the total number of matching results.
487
+
Returns an iterable of the content items children. `params` is a dictionary of query parameters. Iterable also has attributes matching the raw API response document properties (i.e. `total` and `results`).
0 commit comments