File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
synapseclient/models/protocols Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -20,31 +20,31 @@ class WikiOrderHintSynchronousProtocol(Protocol):
20
20
"""Protocol for the methods of the WikiOrderHint class that have synchronous counterparts
21
21
generated at runtime."""
22
22
23
- def get (
23
+ def store (
24
24
self ,
25
25
* ,
26
- synapse_client : Optional [Synapse ] = None ,
26
+ synapse_client : Optional [" Synapse" ] = None ,
27
27
) -> "WikiOrderHint" :
28
28
"""
29
- Get the order hint of a wiki page tree.
29
+ Update the order hint of a wiki page tree.
30
30
Arguments:
31
31
synapse_client: Optionally provide a Synapse client.
32
32
Returns:
33
- A WikiOrderHint object for the entity.
33
+ The updated WikiOrderHint object for the entity.
34
34
"""
35
35
return self
36
36
37
- def store (
37
+ def get (
38
38
self ,
39
39
* ,
40
- synapse_client : Optional [" Synapse" ] = None ,
40
+ synapse_client : Optional [Synapse ] = None ,
41
41
) -> "WikiOrderHint" :
42
42
"""
43
- Update the order hint of a wiki page tree.
43
+ Get the order hint of a wiki page tree.
44
44
Arguments:
45
45
synapse_client: Optionally provide a Synapse client.
46
46
Returns:
47
- The updated WikiOrderHint object for the entity.
47
+ A WikiOrderHint object for the entity.
48
48
"""
49
49
return self
50
50
You can’t perform that action at this time.
0 commit comments