Show / Hide Table of Contents

Class AllowedParameterValue

A valid value for a database parameter.

Inheritance
object
AllowedParameterValue
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatabasemanagementService.Models
Assembly: OCI.DotNetSDK.Databasemanagement.dll
Syntax
public class AllowedParameterValue

Properties

IsDefault

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

Indicates whether the given ordinal value is the default value for the parameter.

Ordinal

Declaration
[JsonProperty(PropertyName = "ordinal")]
public decimal? Ordinal { get; set; }
Property Value
Type Description
decimal?

The ordinal number in the list (1-based).

Value

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

The parameter value at ordinal.

In this article
Back to top