Show / Hide Table of Contents

Class QueryableFieldSummary

An individual field that can be used as part of a query filter.

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

Properties

FieldName

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

The name of the field to use when constructing the query. Field names are present for all types except OBJECT.

Remarks

Required

FieldType

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

The type of the field, which dictates the semantics and query constraints that you can use when searching or querying.

Remarks

Required

ObjectProperties

Declaration
[JsonProperty(PropertyName = "objectProperties")]
public List<QueryableFieldSummary> ObjectProperties { get; set; }
Property Value
Type Description
List<QueryableFieldSummary>

If the field type is OBJECT, this property lists the individual properties of the object that can be queried.

In this article
Back to top