Class UploadSampleRecordError
Error message for upload of sample data
public class UploadSampleRecordError
- Inheritance
-
UploadSampleRecordError
- Inherited Members
Properties
ErrorType
Describes the type of error
[JsonProperty("ErrorType", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string ErrorType { get; set; }
Property Value
FieldName
The field name for which the error occurred
[JsonProperty("FieldName", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string FieldName { get; set; }
Property Value
FieldValue
The value of the field that caused the error
[JsonProperty("FieldValue", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string FieldValue { get; set; }
Property Value
RowNumber
The row in which the error occurred
[JsonProperty("RowNumber", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public int RowNumber { get; set; }