Show / Hide Table of Contents

Class EntityActionArgument

Argument of an entity action

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

Properties

EntityName

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

Name of referenced entity.

IsMultiValue

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

Is the entity action argument multi-value

MetaType

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

Metatype of an entity action argument

Name

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

Name of an entity action argument

Remarks

Required

NaturalLanguageMapping

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

Type

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

Type of an entity action argument

Remarks

Required

In this article
Back to top