Show / Hide Table of Contents

Class RandomDecimalNumberFormatEntry

The Random Decimal Number masking format generates random and unique decimal numbers within a range. The range is defined by the startValue and endValue attributes. The start value must be less than or equal to the end value. To learn more, check Random Decimal Number in the Data Safe documentation.

Inheritance
object
FormatEntry
RandomDecimalNumberFormatEntry
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 RandomDecimalNumberFormatEntry : FormatEntry

Properties

EndValue

Declaration
[Required(ErrorMessage = "EndValue is required.")]
[JsonProperty(PropertyName = "endValue")]
public double EndValue { get; set; }
Property Value
Type Description
double

The upper bound of the range within which random decimal numbers should be generated. It must be greater than or equal to the start value. It supports input of double type.

Remarks

Required

StartValue

Declaration
[Required(ErrorMessage = "StartValue is required.")]
[JsonProperty(PropertyName = "startValue")]
public double StartValue { get; set; }
Property Value
Type Description
double

The lower bound of the range within which random decimal numbers should be generated. It must be less than or equal to the end value. It supports input of double type.

Remarks

Required

In this article
Back to top