Show / Hide Table of Contents

Class ParserTestResultFieldValue

A parser test result field value object.

Inheritance
object
ParserTestResultFieldValue
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 ParserTestResultFieldValue

Properties

FieldName

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

The field name.

ParserName

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

The sub parser name.

Position

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

The field position.

SubParserResult

Declaration
[JsonProperty(PropertyName = "subParserResult")]
public ParserTestResult SubParserResult { get; set; }
Property Value
Type Description
ParserTestResult

Value

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

The field value.

In this article
Back to top