Show / Hide Table of Contents

Class NumberVariable

The default numeric value.

Inheritance
object
BaseVariable
NumberVariable
Inherited Members
BaseVariable.Title
BaseVariable.Description
BaseVariable.IsRequired
BaseVariable.Visible
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.FleetappsmanagementService.Models
Assembly: OCI.DotNetSDK.Fleetappsmanagement.dll
Syntax
public class NumberVariable : BaseVariable

Properties

DefaultValue

Declaration
[JsonProperty(PropertyName = "defaultValue")]
public float? DefaultValue { get; set; }
Property Value
Type Description
float?

Default value

ExclusiveMaximum

Declaration
[JsonProperty(PropertyName = "exclusiveMaximum")]
public float? ExclusiveMaximum { get; set; }
Property Value
Type Description
float?

Value must be less than this (exclusive upper bound).

ExclusiveMinimum

Declaration
[JsonProperty(PropertyName = "exclusiveMinimum")]
public float? ExclusiveMinimum { get; set; }
Property Value
Type Description
float?

Value must be greater than this (exclusive lower bound).

Maximum

Declaration
[JsonProperty(PropertyName = "maximum")]
public float? Maximum { get; set; }
Property Value
Type Description
float?

The maximum allowed value(inclusive).

Minimum

Declaration
[JsonProperty(PropertyName = "minimum")]
public float? Minimum { get; set; }
Property Value
Type Description
float?

The minimum allowed value(inclusive).

MultipleOf

Declaration
[JsonProperty(PropertyName = "multipleOf")]
public float? MultipleOf { get; set; }
Property Value
Type Description
float?

Acceptable values must be a multiple of this number.

In this article
Back to top