Show / Hide Table of Contents

Class QuickPickSummary

Summary of the Quick Pick query objects.

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

Properties

QuickPickName

Declaration
[Required(ErrorMessage = "QuickPickName is required.")]
[JsonProperty(PropertyName = "quickPickName")]
public string QuickPickName { get; set; }
Property Value
Type Description
string

Quick Pick name for the query.

Remarks

Required

QuickPickQuery

Declaration
[Required(ErrorMessage = "QuickPickQuery is required.")]
[JsonProperty(PropertyName = "quickPickQuery")]
public string QuickPickQuery { get; set; }
Property Value
Type Description
string

Query for the Quick Pick.

Remarks

Required

In this article
Back to top