ErrorReportState

data class ErrorReportState(    val step: ReportStep? = null,     val reportAutoSubmitTime: Instant? = null,     val audioRecordStartTime: Instant? = null) : Parcelable

ErrorReportState describes the state of the error report during its creation.

Constructors

Link copied to clipboard
fun ErrorReportState(    step: ReportStep? = null,     reportAutoSubmitTime: Instant? = null,     audioRecordStartTime: Instant? = null)

Properties

Link copied to clipboard
val audioRecordStartTime: Instant? = null

The time when the audio recording was started, or null.

Link copied to clipboard
val reportAutoSubmitTime: Instant? = null

The time when the report will be submitted automatically, or null.

Link copied to clipboard
val step: ReportStep? = null

The current step of the error report, or null.

Inherited functions

Link copied to clipboard
abstract fun describeContents(): Int
Link copied to clipboard
abstract fun writeToParcel(p0: Parcel, p1: Int)