Show / Hide Table of Contents

Class MaskingFormat

Inheritance
object
MaskingFormat
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 MaskingFormat

Properties

Condition

Declaration
[JsonProperty(PropertyName = "condition")]
public string Condition { get; set; }
Property Value
Type Description
string

Description

Declaration
[JsonProperty(PropertyName = "description")]
public string Description { get; set; }
Property Value
Type Description
string

The description of the masking format.

FormatEntries

Declaration
[Required(ErrorMessage = "FormatEntries is required.")]
[JsonProperty(PropertyName = "formatEntries")]
public List<FormatEntry> FormatEntries { get; set; }
Property Value
Type Description
List<FormatEntry>

An array of format entries. The combined output of all the format entries is used for masking the column data values.

Remarks

Required

In this article
Back to top