Show / Hide Table of Contents

Class FilterOutput

Query builder api response object containing updated querystring's

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

Properties

DisplayQueryString

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

Modified user visible query string.

Remarks

Required

InternalQueryString

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

Modified localization agnostic query string.

Remarks

Required

ResponseTimeInMs

Declaration
[JsonProperty(PropertyName = "responseTimeInMs")]
public long? ResponseTimeInMs { get; set; }
Property Value
Type Description
long?

Operation response time.

In this article
Back to top