...
| Code Block | ||
|---|---|---|
| ||
/**
* This is the same event as in the App map, but with a display label.
*/
class CustomEvent {
String identifier;
String label;
ActivityEventUpdateType updateType;
}
/**
* Almost identical to automatic custom events in the App, but with a label
* and a means of finding all the automatic custom events that are generated
* from a study burst configuration.
*/
class AutomaticCustomEvent {
String identifier;
String label;
String studyBurstPrefix;
String originEventId;
Period offset; // positive or negative
} |
...