Show / Hide Table of Contents

Class State

State stored in All States Map of Composite State

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

Properties

Name

Declaration
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
Property Value
Type Description
string

A simple name for the State.

ParameterValue

Declaration
[JsonProperty(PropertyName = "parameterValue")]
public ParameterValue ParameterValue { get; set; }
Property Value
Type Description
ParameterValue

TimeValue

Declaration
[JsonProperty(PropertyName = "timeValue")]
public DateTime? TimeValue { get; set; }
Property Value
Type Description
DateTime?

To store a date value for the State we use dateValue attribute.

In this article
Back to top