Show / Hide Table of Contents

Class FixedNumberFormatEntry

The Fixed Number masking format uses a constant number for masking. To learn more, check Fixed Number in the Data Safe documentation.

Inheritance
object
FormatEntry
FixedNumberFormatEntry
Inherited Members
FormatEntry.Description
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 FixedNumberFormatEntry : FormatEntry

Properties

FixedNumber

Declaration
[Required(ErrorMessage = "FixedNumber is required.")]
[JsonProperty(PropertyName = "fixedNumber")]
public decimal? FixedNumber { get; set; }
Property Value
Type Description
decimal?

The constant number to be used for masking.

Remarks

Required

In this article
Back to top