Show / Hide Table of Contents

Class ProductSummary

Provides details about product rewards and the usage amount.

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

Properties

EarnedRewards

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

The earned rewards for the product.

IsEligibleToEarnRewards

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

The boolean parameter to indicate if the product is eligible to earn rewards.

ProductName

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

The rate card product name.

ProductNumber

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

The rate card product number.

UsageAmount

Declaration
[JsonProperty(PropertyName = "usageAmount")]
public double UsageAmount { get; set; }
Property Value
Type Description
double

The rate card product usage amount.

In this article
Back to top