File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change 18
18
*/
19
19
20
20
import { Id } from '@_types/common'
21
+ import { integer } from '@_types/Numeric'
21
22
import { DateTime } from '@_types/Time'
22
23
23
24
export class CalendarEvent {
@@ -30,4 +31,14 @@ export class CalendarEvent {
30
31
end_time : DateTime
31
32
/** The timestamp for the beginning of the scheduled event in milliseconds since the epoch or ISO 8601 format. */
32
33
start_time : DateTime
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
42
+ /** Shift time by this many seconds. For example adjust time for daylight savings changes */
43
+ force_time_shift ?: integer
33
44
}
You can’t perform that action at this time.
0 commit comments