Show / Hide Table of Contents

Class WindowTypeDescription

A key-value pair where the key will hold the window type and value will be a list of window details from all the active execution windows of that window type.

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

Properties

Messages

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

A list of window detail messages from all the active execution windows based on the window type.

WindowType

Declaration
[JsonProperty(PropertyName = "windowType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public WindowTypeDescription.WindowTypeEnum? WindowType { get; set; }
Property Value
Type Description
WindowTypeDescription.WindowTypeEnum?

The execution window is of PLANNED or UNPLANNED type.

In this article
Back to top