Show / Hide Table of Contents

Class DecisionOutputPort

The conditional output port details, used in operators such as decision operator.

Inheritance
object
TypedObject
DecisionOutputPort
Inherited Members
TypedObject.Key
TypedObject.ModelVersion
TypedObject.ParentRef
TypedObject.ConfigValues
TypedObject.ObjectStatus
TypedObject.Name
TypedObject.Description
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 DecisionOutputPort : TypedObject

Properties

DecisionOutputPortType

Declaration
[Required(ErrorMessage = "DecisionOutputPortType is required.")]
[JsonProperty(PropertyName = "decisionOutputPortType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DecisionOutputPort.DecisionOutputPortTypeEnum? DecisionOutputPortType { get; set; }
Property Value
Type Description
DecisionOutputPort.DecisionOutputPortTypeEnum?

The port based on what decision expression evaluates to.

Remarks

Required

Fields

Declaration
[JsonProperty(PropertyName = "fields")]
public List<TypedObject> Fields { get; set; }
Property Value
Type Description
List<TypedObject>

An array of fields.

PortType

Declaration
[Required(ErrorMessage = "PortType is required.")]
[JsonProperty(PropertyName = "portType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DecisionOutputPort.PortTypeEnum? PortType { get; set; }
Property Value
Type Description
DecisionOutputPort.PortTypeEnum?

The port details for the data asset.Type.

Remarks

Required

In this article
Back to top