...
| Code Block | ||
|---|---|---|
| ||
class Enrollment {
String studyId;
// optional
String externalId;
// the consent signed to enrollment
String consentGuid;
// true if consentGuid != the study's required consent GUID,
// and the required consent requires reconsent. User is
// user is still considered to be enrolled in study, e.g. uploads
// will not fail.
boolean reconsentRequired;
} |
...