Class UploadBlacklistError
Error message for blacklist upload
public class UploadBlacklistError
- Inheritance
-
UploadBlacklistError
- 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
Message
The message for the error
[JsonProperty("Message", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string Message { 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; }