This repository has been archived by the owner on Oct 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
confluence_object_defs.py
263 lines (226 loc) · 5.61 KB
/
confluence_object_defs.py
1
2
3
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
from dataclasses import dataclass
# Warning: these have been inferred from export results, rather than written from spec
@dataclass(kw_only = True)
class ContentPermissionSet:
Id: str
Type: str
OwningContentId: str
CreationDate: str
LastModificationDate: str
ContentPermissionsIds: list[str]
@dataclass(kw_only = True)
class User2ContentRelationEntity:
Id: str
TargetContentId: str
SourceContentId: str
TargetType: str
RelationName: str
CreationDate: str
LastModificationDate: str
CreatorId: str
LastModifierId: str
@dataclass(kw_only = True)
class Labelling:
Id: str
CreationDate: str
LastModificationDate: str
LabelableId: str
LabelableType: str
LabelId: str
ContentId: str
OwningUserId: str
@dataclass(kw_only = True)
class Comment:
Id: str
ContainerContentId: str = None
HibernateVersion: str
Title: str
Version: str
VersionComment: str
LastModificationDate: str
ContentStatus: str
ParentId: str = None
OriginalVersionId: str = None
LowerTitle: str
CreatorId: str
CreationDate: str
LastModifierId: str
HistoricalVersionsIds: list[str] = None
OutgoingLinksIds: list[str] = None
ChildrenIds: list[str] = None
BodyContentsIds: list[str]
ContentPropertiesIds: list[str]
CustomContentIds: list[str] = None
@dataclass(kw_only = True)
class SpacePermission:
Id: str
CreationDate: str
LastModifierId: str
CreatorId: str
SpaceId: str
Type: str
UserSubjectId: str = None
Group: str = None
AllUsersSubject: str
LastModificationDate: str
@dataclass(kw_only = True)
class Label:
Id: str
Namespace: str
CreationDate: str
LastModificationDate: str
OwningUserId: str = None
Name: str
@dataclass(kw_only = True)
class ContentPermission:
Id: str
GroupName: str
OwningSetId: str
CreatorId: str
CreationDate: str
LastModifierId: str
LastModificationDate: str
Type: str
UserSubjectId: str
@dataclass(kw_only = True)
class BucketPropertySetItem:
Id: str
Type: str
BooleanVal: str
DoubleVal: str
StringVal: str
TextVal: str
LongVal: str
IntVal: str
DateVal: str
@dataclass(kw_only = True)
class Page:
Id: str
ContentStatus: str
SpaceId: str = None # I'm guessing this only *isn't* none if the page is not at the root?
OriginalVersionId: str = None
LowerTitle: str
Version: str
CreationDate: str
LastModifierId: str
LastModificationDate: str
Position: str
HibernateVersion: str
CreatorId: str
Title: str
VersionComment: str
ParentId: str = None
OutgoingLinksIds: list[str] = None
ContentPropertiesIds: list[str] = None
AttachmentsIds: list[str] = None
AncestorsIds: list[str] = None
ChildrenIds: list[str] = None
LabellingsIds: list[str] = None
CommentsIds: list[str] = None
ContentPermissionSetsIds: list[str] = None
# I wouldn't have thought BodyContentsIds were allowed to be empty *or* have more than one entry, but I don't know for sure and it *is* a collection tag
BodyContentsIds: list[str]
HistoricalVersionsIds: list[str] = None
@dataclass(kw_only = True)
class ConfluenceBandanaRecord:
Id: str
Context: str
Key: str
Value: str
@dataclass(kw_only = True)
class OutgoingLink:
Id: str
LowerDestinationPageTitle: str
DestinationSpaceKey: str
LastModifierId: str
DestinationPageTitle: str
SourceContentId: str
CreatorId: str
CreationDate: str
LastModificationDate: str
LowerDestinationSpaceKey: str
@dataclass(kw_only = True)
class Space:
Id: str
SpaceType: str
HomePageId: str
CreationDate: str
LastModifierId: str
LastModificationDate: str
CreatorId: str
SpaceStatus: str
Name: str
Key: str
LowerKey: str
DescriptionId: str
PermissionsIds: list[str]
@dataclass(kw_only = True)
class ContentProperty:
Id: str
Name: str
StringValue: str
LongValue: str
DateValue: str
@dataclass(kw_only = True)
class Attachment:
Id: str
CreationDate: str
LastModificationDate: str
VersionComment: str
SpaceId: str
Title: str
Version: str
CreatorId: str
LastModifierId: str
ContentStatus: str
ContainerContentId: str
OriginalVersionId: str = None
HibernateVersion: str
LowerTitle: str
ContentPropertiesIds: list[str]
HistoricalVersionsIds: list[str] = None
ImageDetailsDTOIds: list[str] = None
@dataclass(kw_only = True)
class SpaceDescription:
Id: str
HibernateVersion: str
LowerTitle: str
LastModifierId: str
VersionComment: str
OriginalVersionId: str = None
SpaceId: str
Title: str
Version: str
CreatorId: str
CreationDate: str
LastModificationDate: str
ContentStatus: str
BodyContentsIds: list[str]
HistoricalVersionsIds: list[str] = None
AttachmentsIds: list[str] = None
LabellingsIds: list[str]
@dataclass(kw_only = True)
class Notification:
Id: str
Type: str
ReceiverId: str
CreatorId: str
CreationDate: str
LastModifierId: str
LastModificationDate: str
Digest: str
Network: str
SpaceId: str = None
ContentId: str
@dataclass(kw_only = True)
class ConfluenceUserImpl:
Id: str
Email: str
Name: str
LowerName: str
@dataclass(kw_only = True)
class BodyContent:
Id: str
Body: str
ContentId: str
BodyType: str # Observed values: 0 for wiki, 2 for XML storage format, 1 for comments. Comment body seems to encode text *and* location, comma-separated. Let's use 1000 for converted view format.