|
@@ -8,11 +8,11 @@ class LeDataSource(object):
|
8
|
8
|
self.options = options
|
9
|
9
|
|
10
|
10
|
|
11
|
|
- ## @brief Update
|
12
|
|
- # @param lodel_id int|(int) : id(s) of the object(s) where to apply changes
|
13
|
|
- # @param data dict : dictionnary of field:value to save
|
14
|
|
- # @param update_filters string | (string) : list of string of updata filters
|
15
|
|
- def update(self, lodel_id, data, update_filters=None):
|
|
11
|
+ ## @brief search for a collection of objects
|
|
12
|
+ # @param emclass
|
|
13
|
+ # @param emtype
|
|
14
|
+ # @param filters
|
|
15
|
+ # @param relational_filters
|
|
16
|
+ def get(self, emclass, emtype, filters, relational_filters):
|
16
|
17
|
pass
|
17
|
18
|
|
18
|
|
-
|