Show / Hide Table of Contents

Class EntityAction

Action of an entity

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

Properties

Arguments

Declaration
[Required(ErrorMessage = "Arguments is required.")]
[JsonProperty(PropertyName = "arguments")]
public List<EntityActionArgument> Arguments { get; set; }
Property Value
Type Description
List<EntityActionArgument>

List of entity action arguments

Remarks

Required

CrudType

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

Type of CRUD operation for entity action

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

Remarks

Required

NaturalLanguageMapping

Declaration
[JsonProperty(PropertyName = "naturalLanguageMapping")]
public EntityActionNaturalLanguageMapping NaturalLanguageMapping { get; set; }
Property Value
Type Description
EntityActionNaturalLanguageMapping
In this article
Back to top