File tree Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -196,20 +196,35 @@ $SIGNATURES
196
196
Return the label for a variable.
197
197
"""
198
198
label (v:: VariableDataLevel0 ) = v. label
199
+
199
200
"""
200
201
$SIGNATURES
201
202
202
203
Return the tags for a variable.
203
204
"""
204
205
tags (v:: VariableDataLevel0 ) = v. tags
205
206
207
+ """
208
+ $SIGNATURES
209
+
210
+ Get the small data for a variable.
211
+ """
212
+ setTags (v:: VariableDataLevel0 , tags:: Vector{Symbol} ) = v. tags = tags
213
+
206
214
"""
207
215
$SIGNATURES
208
216
209
217
Return the timestamp for a variable.
210
218
"""
211
219
timestamp (v:: VariableDataLevel1 ) = v. timestamp
212
220
221
+ """
222
+ $SIGNATURES
223
+
224
+ Get the small data for a variable.
225
+ """
226
+ setTimestamp (v:: VariableDataLevel1 , timestamp:: DateTime ) = v. timestamp = timestamp
227
+
213
228
"""
214
229
$SIGNATURES
215
230
@@ -280,5 +295,12 @@ Get the small data for a variable.
280
295
"""
281
296
smallData (v:: DFGVariable ) = v. smallData
282
297
298
+ """
299
+ $SIGNATURES
300
+
301
+ Get the small data for a variable.
302
+ """
303
+ setSmallData (v:: DFGVariable , smallData:: String ) = v. smallData = smallData
304
+
283
305
# Todo: Complete this.
284
306
bigData (v:: DFGVariable ) = v. bigData
You can’t perform that action at this time.
0 commit comments