Show / Hide Table of Contents

Class RedemptionSummary

The redemption summary for the requested subscription ID and date range.

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

Properties

BaseRewards

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

It provides the redeemed rewards in base/subscription currency.

FxRate

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

It provides the fxRate between invoice currency and subscription currency.

InvoiceCurrency

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

The currency associated with invoice.

InvoiceNumber

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

It provides the invoice number against the redemption.

InvoiceTotalAmount

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

It provides the invoice total amount of given redemption.

RedeemedRewards

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

It provides the redeemed rewards in invoice currency.

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.

RedemptionEmail

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

It provides the redemption email id.

TimeInvoiced

Declaration
[JsonProperty(PropertyName = "timeInvoiced")]
public DateTime? TimeInvoiced { get; set; }
Property Value
Type Description
DateTime?

It provides the invoice date.

TimeRedeemed

Declaration
[JsonProperty(PropertyName = "timeRedeemed")]
public DateTime? TimeRedeemed { get; set; }
Property Value
Type Description
DateTime?

It provides redeem date.

In this article
Back to top