Show / Hide Table of Contents

Class ConditionalOutputPort

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

Inheritance
object
TypedObject
ConditionalOutputPort
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 ConditionalOutputPort : TypedObject

Properties

Fields

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

An array of fields.

PortType

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

The port details for the data asset.Type.

SplitCondition

Declaration
[JsonProperty(PropertyName = "splitCondition")]
public Expression SplitCondition { get; set; }
Property Value
Type Description
Expression
In this article
Back to top