Class CreationEventDetails
Session event details specific to creation.
public sealed class CreationEventDetails
- Inheritance
-
CreationEventDetails
- Inherited Members
Properties
FailedRequest
Details about a failed device bound session network request if there was one.
[JsonPropertyName("failedRequest")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public DeviceBoundSessionFailedRequest? FailedRequest { get; set; }
Property Value
FetchResult
The result of the fetch attempt.
[JsonPropertyName("fetchResult")]
public DeviceBoundSessionFetchResult FetchResult { get; set; }
Property Value
NewSession
The session if there was a newly created session. This is populated for all successful creation events.
[JsonPropertyName("newSession")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public DeviceBoundSession? NewSession { get; set; }