Show / Hide Table of Contents

Class ProcessRecommendationDetails

Details of recommendation to be processed.

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

Properties

Properties

Declaration
[JsonProperty(PropertyName = "properties")]
public Dictionary<string, Dictionary<string, string>> Properties { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, string>>

A map of maps that contains additional properties which are specific to the associated objects. Each associated object defines it's set of required and optional properties. Example: { "DataEntity": { "parentId": "entityId" }, "Term": { "parentId": "glossaryId" } }

RecommendationKey

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

Unique identifier of the recommendation.

Remarks

Required

RecommendationStatus

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

The status of a recommendation.

Remarks

Required

In this article
Back to top