We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 977413b commit b2a5840Copy full SHA for b2a5840
synapseclient/models/__init__.py
@@ -37,6 +37,13 @@
37
from synapseclient.models.team import Team, TeamMember
38
from synapseclient.models.user import UserPreference, UserProfile
39
from synapseclient.models.virtualtable import VirtualTable
40
+from synapseclient.models.wiki import (
41
+ WikiHeader,
42
+ WikiHistorySnapshot,
43
+ WikiOrderHint,
44
+ WikiPage,
45
+ WikiPageHistory,
46
+)
47
48
__all__ = [
49
"Activity",
@@ -88,6 +95,12 @@
88
95
"DatasetCollection",
89
96
# Submission models
90
97
"SubmissionView",
98
+ # Wiki models
99
+ "WikiPage",
100
+ "WikiOrderHint",
101
+ "WikiHistorySnapshot",
102
+ "WikiHeader",
103
+ "WikiPageHistory",
91
104
]
92
105
93
106
# Static methods to expose as functions
0 commit comments