Skip to content

Commit 8865715

Browse files
davidkylepquentin
andauthored
Update specification/ml/_types/CalendarEvent.ts
Co-authored-by: Quentin Pradet <[email protected]>
1 parent 703649e commit 8865715

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

specification/ml/_types/CalendarEvent.ts

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,14 @@ export class CalendarEvent {
3131
end_time: DateTime
3232
/** The timestamp for the beginning of the scheduled event in milliseconds since the epoch or ISO 8601 format. */
3333
start_time: DateTime
34-
/** When true the model will not create results for this calendar period. */
35-
skip_result: boolean
36-
/** When true the model will not be updated for this calendar period. */
37-
skip_model_update: boolean
34+
/** When true the model will not create results for this calendar period.
35+
* @server_default true
36+
*/
37+
skip_result?: boolean
38+
/** When true the model will not be updated for this calendar period.
39+
* @server_default true
40+
*/
41+
skip_model_update?: boolean
3842
/** Shift time by this many hours. For example adjust time for daylight savings changes */
39-
force_time_shift: integer
43+
force_time_shift?: integer
4044
}

0 commit comments

Comments
 (0)