CreationEventDetails

@Serializable
data class CreationEventDetails(val fetchResult: Network.DeviceBoundSessionFetchResult, val newSession: Network.DeviceBoundSession? = null, val failedRequest: Network.DeviceBoundSessionFailedRequest? = null)

Session event details specific to creation.

Constructors

Link copied to clipboard
constructor(fetchResult: Network.DeviceBoundSessionFetchResult, newSession: Network.DeviceBoundSession? = null, failedRequest: Network.DeviceBoundSessionFailedRequest? = null)

Properties

Link copied to clipboard

Details about a failed device bound session network request if there was one.

Link copied to clipboard

The result of the fetch attempt.

Link copied to clipboard

The session if there was a newly created session. This is populated for all successful creation events.