Show / Hide Table of Contents

Class RecommendationDetails

Details of a recommendation.

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

Properties

ConfidenceScore

Declaration
[JsonProperty(PropertyName = "confidenceScore")]
public float? ConfidenceScore { get; set; }
Property Value
Type Description
float?

Level of confidence, on a scale between 0 and 1, that the recommendation is applicable.

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?

Status of a recommendation.

Remarks

Required

RecommendationType

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

Type of recommendation.

Remarks

Required

SourceObjectKey

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

Unique identifier of the source object; the one for which a recommendation is made.

SourceObjectName

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

Name of the source object; the one for which a recommendation is made.

SourceObjectType

Declaration
[JsonProperty(PropertyName = "sourceObjectType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public RecommendationResourceType? SourceObjectType { get; set; }
Property Value
Type Description
RecommendationResourceType?

Type of the source object; the one for which a recommendation is made.

TargetObjectKey

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

Unique identifier of the target object; the one which has been recommended.

TargetObjectName

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

Name of the target object; the one which has been recommended.

TargetObjectType

Declaration
[JsonProperty(PropertyName = "targetObjectType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public RecommendationResourceType? TargetObjectType { get; set; }
Property Value
Type Description
RecommendationResourceType?

Type of the target object; the one which has been recommended.

In this article
Back to top