Class IndividualMapping
Represents an individual mapping where parameters of a type can be
associated in 1:1 approach to a concrete field name of the outer input file (e.g. when names don't cover each
other)
or to a concrete value which is just restricted by the YAML/JSON data type specification
Inherited Members
System.Object.Equals(System.Object, System.Object)
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Mars.Interfaces.Model
Assembly: Mars.Interfaces.dll
Syntax
public class IndividualMapping : ParameterMapping
Properties
| Improve this Doc View SourceFieldName
The field name of an input, whose value is used for the this parameter
Declaration
[JsonProperty("field", NullValueHandling = NullValueHandling.Ignore)]
public string FieldName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Value
The manually defined value of the parameter
Declaration
[JsonProperty("value", NullValueHandling = NullValueHandling.Ignore)]
public object Value { get; set; }
Property Value
Type | Description |
---|---|
System.Object |