Show / Hide Table of Contents

Class EntityAttribute

Attribute of an entity

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

Properties

EntityName

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

Name of referenced entity.

IsFuzzyMatch

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

Is the entity attribute a fuzzy match

IsInvertComparisons

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

Are comparisons inverted in the entity attribute

IsMultiValue

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

Is the entity attribute multi-value

Name

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

The name of an entity attribute

Remarks

Required

NaturalLanguageMapping

Declaration
[JsonProperty(PropertyName = "naturalLanguageMapping")]
public EntityAttributeNaturalLanguageMapping NaturalLanguageMapping { get; set; }
Property Value
Type Description
EntityAttributeNaturalLanguageMapping

TemporalPreference

Declaration
[JsonProperty(PropertyName = "temporalPreference")]
[JsonConverter(typeof(StringEnumConverter))]
public TemporalPreference? TemporalPreference { get; set; }
Property Value
Type Description
TemporalPreference?

Temporal preference of an attribute

Type

Declaration
[Required(ErrorMessage = "Type is required.")]
[JsonProperty(PropertyName = "type")]
[JsonConverter(typeof(StringEnumConverter))]
public EntityAttributeType? Type { get; set; }
Property Value
Type Description
EntityAttributeType?

The type of an entity attribute

Remarks

Required

In this article
Back to top