Show / Hide Table of Contents

Class RewardDetails

The overall monthly reward summary.

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

Properties

Currency

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

The currency unit for the reward amount.

RedemptionCode

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

The redemption code used in the Billing Center during the reward redemption process.

RewardsRate

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

The current Rewards percentage in decimal format.

SubscriptionId

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

The entitlement ID from MQS, which is the same as the subcription ID.

TenancyId

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

The OCID of the target tenancy.

TotalRewardsAvailable

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

The total number of available rewards for a given subscription ID.

In this article
Back to top