Show / Hide Table of Contents

Class RewardCollection

The response object for the ListRewards API call. Provides information about the subscription rewards.

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

Properties

Items

Declaration
[JsonProperty(PropertyName = "items")]
public List<MonthlyRewardSummary> Items { get; set; }
Property Value
Type Description
List<MonthlyRewardSummary>

The monthly summary of rewards.

Summary

Declaration
[Required(ErrorMessage = "Summary is required.")]
[JsonProperty(PropertyName = "summary")]
public RewardDetails Summary { get; set; }
Property Value
Type Description
RewardDetails
Remarks

Required

In this article
Back to top