17.192. Class NewResult

Namespace: ArmoniK.Core.Common.Storage.Events
Assembly: ArmoniK.Core.Common.dll

Represents a new result update

public record NewResult : IEquatable<NewResult>

17.192.1. Inheritance

objectNewResult

17.192.2. Implements

IEquatable<NewResult>

17.192.3. Inherited Members

object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.MemberwiseClone(), object.ReferenceEquals(object?, object?), object.ToString()

17.192.4. Constructors

17.192.4.1. NewResult(string, string, string, ResultStatus)

Represents a new result update

public NewResult(string SessionId, string ResultId, string OwnerId, ResultStatus Status)

17.192.4.1.1. Parameters

SessionId string

The id of the session

ResultId string

The id of the result

OwnerId string

The owner id of the result

Status ResultStatus

The status of the result

17.192.5. Properties

17.192.5.1. OwnerId

The owner id of the result

public string OwnerId { get; init; }

17.192.5.1.1. Property Value

string

17.192.5.2. ResultId

The id of the result

public string ResultId { get; init; }

17.192.5.2.1. Property Value

string

17.192.5.3. SessionId

The id of the session

public string SessionId { get; init; }

17.192.5.3.1. Property Value

string

17.192.5.4. Status

The status of the result

public ResultStatus Status { get; init; }

17.192.5.4.1. Property Value

ResultStatus