Class ArrayVariable
Inheritance
ArrayVariable
Assembly: OCI.DotNetSDK.Fleetappsmanagement.dll
Syntax
public class ArrayVariable : BaseVariable
Properties
AreUniqueItems
Declaration
[JsonProperty(PropertyName = "areUniqueItems")]
public bool? AreUniqueItems { get; set; }
Property Value
| Type |
Description |
| bool? |
If true, array entries will be unique.
|
Contains
Declaration
[JsonProperty(PropertyName = "contains")]
public BaseVariable Contains { get; set; }
Property Value
DefaultValue
Declaration
[JsonProperty(PropertyName = "defaultValue")]
public object DefaultValue { get; set; }
Property Value
| Type |
Description |
| object |
The default value for this variable.
|
Items
Declaration
[JsonProperty(PropertyName = "items")]
public BaseVariable Items { get; set; }
Property Value
MaxItems
Declaration
[JsonProperty(PropertyName = "maxItems")]
public int? MaxItems { get; set; }
Property Value
| Type |
Description |
| int? |
Maximum allowed items in the array.
|
MinItems
Declaration
[JsonProperty(PropertyName = "minItems")]
public int? MinItems { get; set; }
Property Value
| Type |
Description |
| int? |
Minimum allowed items in the array.
|