Show / Hide Table of Contents

Class MaskingErrorSummary

Summary of a masking error. A Masking error is an error seen during the masking run.

Inheritance
object
MaskingErrorSummary
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
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

In this article
Back to top