Class MaskingErrorSummary
Summary of a masking error. A Masking error is an error seen during the masking run.
Inherited Members
Namespace: Oci.DatasafeService.Models
Assembly: OCI.DotNetSDK.Datasafe.dll
Syntax
public class MaskingErrorSummary
Properties
Error
Declaration
[Required(ErrorMessage = "Error is required.")]
[JsonProperty(PropertyName = "error")]
public string Error { get; set; }
Property Value
Type | Description |
---|---|
string | The text of the masking error. |
Remarks
Required
FailedStatement
Declaration
[JsonProperty(PropertyName = "failedStatement")]
public string FailedStatement { get; set; }
Property Value
Type | Description |
---|---|
string | The statement resulting into the error. |
StepName
Declaration
[Required(ErrorMessage = "StepName is required.")]
[JsonProperty(PropertyName = "stepName")]
[JsonConverter(typeof(ResponseEnumConverter))]
public MaskingErrorSummary.StepNameEnum? StepName { get; set; }
Property Value
Type | Description |
---|---|
MaskingErrorSummary.StepNameEnum? | The stepName of the masking error. |
Remarks
Required
TimeCreated
Declaration
[Required(ErrorMessage = "TimeCreated is required.")]
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type | Description |
---|---|
DateTime? | The date and time the error entry was created, in the format defined by RFC3339. |
Remarks
Required