We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c00c898 commit 58b74c6Copy full SHA for 58b74c6
ClassLibrary/DataWarehouseAutomation/DataWarehouseAutomation/DataItem.cs
@@ -10,6 +10,12 @@ public class DataItem
10
[JsonProperty]
11
public string name { get; set; } // Mandatory
12
13
+ /// <summary>
14
+ /// The target object of the mapping.
15
+ /// </summary>
16
+ [JsonProperty("dataObject", NullValueHandling = NullValueHandling.Ignore, DefaultValueHandling = DefaultValueHandling.Ignore)]
17
+ public DataObject dataObject { get; set; }
18
+
19
[JsonProperty("dataType", NullValueHandling = NullValueHandling.Ignore, DefaultValueHandling = DefaultValueHandling.Ignore)]
20
public string dataType { get; set; }
21
0 commit comments