Class IntegerVariable
Integer variable.
Inherited Members
Namespace: Oci.FleetappsmanagementService.Models
Assembly: OCI.DotNetSDK.Fleetappsmanagement.dll
Syntax
public class IntegerVariable : BaseVariable
Properties
DefaultValue
Declaration
[JsonProperty(PropertyName = "defaultValue")]
public int? DefaultValue { get; set; }
Property Value
| Type | Description |
|---|---|
| int? | Default value if input is not supplied. |
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 accepted integer value. |
Minimum
Declaration
[JsonProperty(PropertyName = "minimum")]
public float? Minimum { get; set; }
Property Value
| Type | Description |
|---|---|
| float? | The minimum accepted integer value. |
MultipleOf
Declaration
[JsonProperty(PropertyName = "multipleOf")]
public float? MultipleOf { get; set; }
Property Value
| Type | Description |
|---|---|
| float? | Value must be a multiple of this number. |