/// <summary>
 /// Initializes a new instance of the <see cref="FlowInput" /> class.
 /// </summary>
 /// <param name="Id">Id.</param>
 /// <param name="DisplayName">DisplayName.</param>
 /// <param name="Type">Type.</param>
 /// <param name="Dataset">Dataset.</param>
 public FlowInput(string Id = default(string), string DisplayName = default(string), FlowInputType Type = default(FlowInputType), IdWithName Dataset = default(IdWithName))
 {
     this.Id          = Id;
     this.DisplayName = DisplayName;
     this.Type        = Type;
     this.Dataset     = Dataset;
 }
Example #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="FlowOutput" /> class.
 /// </summary>
 /// <param name="Id">Id.</param>
 /// <param name="DisplayName">DisplayName.</param>
 /// <param name="Description">Description.</param>
 /// <param name="Type">Type.</param>
 /// <param name="Dataset">Dataset.</param>
 /// <param name="FieldMap">FieldMap.</param>
 public FlowOutput(string Id = default(string), string DisplayName = default(string), string Description = default(string), FlowInputType Type = default(FlowInputType), IdWithName Dataset = default(IdWithName), FieldMap FieldMap = default(FieldMap))
 {
     this.Id          = Id;
     this.DisplayName = DisplayName;
     this.Description = Description;
     this.Type        = Type;
     this.Dataset     = Dataset;
     this.FieldMap    = FieldMap;
 }