Show / Hide Table of Contents

Class RecommendationCount

The count of recommendations in a category, grouped by importance.

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

Properties

Count

Declaration
[Required(ErrorMessage = "Count is required.")]
[JsonProperty(PropertyName = "count")]
public int? Count { get; set; }
Property Value
Type Description
int?

The count of recommendations.

Remarks

Required

Importance

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

The level of importance assigned to the recommendation.

Remarks

Required

In this article
Back to top