Show / Hide Table of Contents

Class UserAssessmentComparison

Provides a list of differences for user assessment when compared with the baseline value.

Inheritance
object
UserAssessmentComparison
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatasafeService.Models
Assembly: OCI.DotNetSDK.Datasafe.dll
Syntax
public class UserAssessmentComparison

Properties

LifecycleState

Declaration
[Required(ErrorMessage = "LifecycleState is required.")]
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public UserAssessmentComparison.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
UserAssessmentComparison.LifecycleStateEnum?

The current state of the user assessment comparison.

Remarks

Required

Summary

Declaration
[JsonProperty(PropertyName = "summary")]
public List<object> Summary { get; set; }
Property Value
Type Description
List<object>

List containing maps as values. Example: {"Operations": [ {"CostCenter": "42"} ] }

TimeCreated

Declaration
[Required(ErrorMessage = "TimeCreated is required.")]
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type Description
DateTime?

The date and time the user assessment comparison was created, in the format defined by RFC3339.

Remarks

Required

In this article
Back to top