Show / Hide Table of Contents

Class FieldValue

Field value representing and entry in a list-of-values field.

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

Properties

DisplayValue

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

Display representation of the field value.

InternalValue

Declaration
[JsonProperty(PropertyName = "internalValue")]
public object InternalValue { get; set; }
Property Value
Type Description
object

Internal representation of the field value.

IsDeleted

Declaration
[JsonProperty(PropertyName = "isDeleted")]
public bool? IsDeleted { get; set; }
Property Value
Type Description
bool?

Denotes if this list-of-values value has been marked as deleted.

In this article
Back to top