Show / Hide Table of Contents

Class StateChange

A container object for state change attributes.

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

Properties

Current

Declaration
[JsonProperty(PropertyName = "current")]
public Dictionary<string, object> Current { get; set; }
Property Value
Type Description
Dictionary<string, object>

Provides the current state of fields that may have changed during an operation. To determine how the current operation changed a resource, compare the information in this attribute to previous.

Previous

Declaration
[JsonProperty(PropertyName = "previous")]
public Dictionary<string, object> Previous { get; set; }
Property Value
Type Description
Dictionary<string, object>

Provides the previous state of fields that may have changed during an operation. To determine how the current operation changed a resource, compare the information in this attribute to current.

In this article
Back to top