Show / Hide Table of Contents

Class IntegerVariable

Integer variable.

Inheritance
object
BaseVariable
IntegerVariable
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 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.

In this article
Back to top