Show / Hide Table of Contents

Class StringVariable

String variable.

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

Properties

DefaultValue

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

The default string value.

MaxLength

Declaration
[JsonProperty(PropertyName = "maxLength")]
public int? MaxLength { get; set; }
Property Value
Type Description
int?

Maximum allowed length for the string.

MinLength

Declaration
[JsonProperty(PropertyName = "minLength")]
public int? MinLength { get; set; }
Property Value
Type Description
int?

Minimum allowed length for the string.

Pattern

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

Regex pattern that the string must match.

In this article
Back to top