SurveyReference

@Serializable
data class SurveyReference(val guid: String, val identifier: String? = null, val createdOn: String? = null, val href: String? = null, val type: String? = null)

A pointer to a survey defined for this app, and associated with a survey to be taken as part of the mobile application health study. If the createdOn value is null, then the reference is to the most recently published version of the survey (the specific version that should be used will be resolved when a #ScheduledActivity is created for the participant).

Parameters

identifier

The survey identifier.

guid

The survey guid

createdOn

The createdOn timestamp of the version of the survey. This can be null, which indicates the most recently published version of the study should be used.

href

An URL to retrieve the survey.

type

SurveyReference

Constructors

Link copied to clipboard
constructor(guid: String, identifier: String? = null, createdOn: String? = null, href: String? = null, type: String? = null)

Properties

Link copied to clipboard
@SerialName(value = "createdOn")
val createdOn: String? = null
Link copied to clipboard
@SerialName(value = "guid")
val guid: String
Link copied to clipboard
@SerialName(value = "href")
val href: String? = null
Link copied to clipboard
@SerialName(value = "identifier")
val identifier: String? = null
Link copied to clipboard
@SerialName(value = "type")
val type: String? = null