Show / Hide Table of Contents

Class EnumVariable

Enum variable.

Inheritance
object
BaseVariable
EnumVariable
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 EnumVariable : BaseVariable

Properties

CanAllowMultiple

Declaration
[JsonProperty(PropertyName = "canAllowMultiple")]
public bool? CanAllowMultiple { get; set; }
Property Value
Type Description
bool?

True if multiple selections are allowed for this variable.

DefaultValue

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

efault value selected if the user does not provide a value.

EnumValue

Declaration
[JsonProperty(PropertyName = "enumValue")]
public List<string> EnumValue { get; set; }
Property Value
Type Description
List<string>

List of allowed string values for this enum variable.

In this article
Back to top