Show / Hide Table of Contents

Class FlattenProjectionPreferences

The preferences for the flatten operation.

Inheritance
object
FlattenProjectionPreferences
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 FlattenProjectionPreferences

Properties

CreateArrayIndex

Declaration
[Required(ErrorMessage = "CreateArrayIndex is required.")]
[JsonProperty(PropertyName = "createArrayIndex")]
[JsonConverter(typeof(ResponseEnumConverter))]
public FlattenProjectionPreferences.CreateArrayIndexEnum? CreateArrayIndex { get; set; }
Property Value
Type Description
FlattenProjectionPreferences.CreateArrayIndexEnum?

Property defining whether to create array indexes in flattened result.

Remarks

Required

IgnoreNullValues

Declaration
[Required(ErrorMessage = "IgnoreNullValues is required.")]
[JsonProperty(PropertyName = "ignoreNullValues")]
[JsonConverter(typeof(ResponseEnumConverter))]
public FlattenProjectionPreferences.IgnoreNullValuesEnum? IgnoreNullValues { get; set; }
Property Value
Type Description
FlattenProjectionPreferences.IgnoreNullValuesEnum?

Property defining whether to ignore null values in flattened result.

Remarks

Required

RetainAllAttributes

Declaration
[Required(ErrorMessage = "RetainAllAttributes is required.")]
[JsonProperty(PropertyName = "retainAllAttributes")]
[JsonConverter(typeof(ResponseEnumConverter))]
public FlattenProjectionPreferences.RetainAllAttributesEnum? RetainAllAttributes { get; set; }
Property Value
Type Description
FlattenProjectionPreferences.RetainAllAttributesEnum?

Property defining whether to retain all attributes in flattened result.

Remarks

Required

RetainParentNameLineage

Declaration
[Required(ErrorMessage = "RetainParentNameLineage is required.")]
[JsonProperty(PropertyName = "retainParentNameLineage")]
[JsonConverter(typeof(ResponseEnumConverter))]
public FlattenProjectionPreferences.RetainParentNameLineageEnum? RetainParentNameLineage { get; set; }
Property Value
Type Description
FlattenProjectionPreferences.RetainParentNameLineageEnum?

Property defining whether to retain parent name lineage.

Remarks

Required

In this article
Back to top