Class NumberVariable
The default numeric value.
Inherited Members
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. |