Show / Hide Table of Contents

Class FieldInfo

Contains field schema information.

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

Properties

FieldName

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

Field name

Remarks

Required

FieldType

Declaration
[Required(ErrorMessage = "FieldType is required.")]
[JsonProperty(PropertyName = "fieldType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public FieldInfo.FieldTypeEnum? FieldType { get; set; }
Property Value
Type Description
FieldInfo.FieldTypeEnum?

Field type -

  • STRING: A sequence of characters.
  • NUMBER: Numeric type which can be an integer or floating point.
  • BOOLEAN: Either true or false.
  • ARRAY: An ordered collection of values.
Remarks

Required

In this article
Back to top