Class StringVariable
String variable.
Inherited Members
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. |