Class MultilineVariable
Multiline variable.
Inherited Members
Namespace: Oci.FleetappsmanagementService.Models
Assembly: OCI.DotNetSDK.Fleetappsmanagement.dll
Syntax
public class MultilineVariable : BaseVariable
Properties
DefaultValue
Declaration
[JsonProperty(PropertyName = "defaultValue")]
public string DefaultValue { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The default string value. |
IsMultiline
Declaration
[JsonProperty(PropertyName = "isMultiline")]
public bool? IsMultiline { get; set; }
Property Value
| Type | Description |
|---|---|
| bool? | Indicates this input allows multiple lines of text. |
MaxLength
Declaration
[JsonProperty(PropertyName = "maxLength")]
public int? MaxLength { get; set; }
Property Value
| Type | Description |
|---|---|
| int? | Maximum number of characters allowed. |
MinLength
Declaration
[JsonProperty(PropertyName = "minLength")]
public int? MinLength { get; set; }
Property Value
| Type | Description |
|---|---|
| int? | Minimum number of characters required. |
Pattern
Declaration
[JsonProperty(PropertyName = "pattern")]
public string Pattern { get; set; }
Property Value
| Type | Description |
|---|---|
| string | Regex pattern that the multiline input must match. |