Show / Hide Table of Contents

Class SearchResponse

Search response object.

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

Properties

Fields

Declaration
[JsonProperty(PropertyName = "fields")]
public List<FieldInfo> Fields { get; set; }
Property Value
Type Description
List<FieldInfo>

List of log field schema information.

Results

Declaration
[JsonProperty(PropertyName = "results")]
public List<SearchResult> Results { get; set; }
Property Value
Type Description
List<SearchResult>

List of search results

Summary

Declaration
[Required(ErrorMessage = "Summary is required.")]
[JsonProperty(PropertyName = "summary")]
public SearchResultSummary Summary { get; set; }
Property Value
Type Description
SearchResultSummary
Remarks

Required

In this article
Back to top