Show / Hide Table of Contents

Class RateCardSummary

Rate Card Summary

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

Properties

Currency

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

DiscretionaryDiscountPercentage

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

Rate card discretionary discount percentage

IsTier

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

Rate card price tier flag

NetUnitPrice

Declaration
[Required(ErrorMessage = "NetUnitPrice is required.")]
[JsonProperty(PropertyName = "netUnitPrice")]
public string NetUnitPrice { get; set; }
Property Value
Type Description
string

Rate card net unit price

Remarks

Required

OveragePrice

Declaration
[Required(ErrorMessage = "OveragePrice is required.")]
[JsonProperty(PropertyName = "overagePrice")]
public string OveragePrice { get; set; }
Property Value
Type Description
string

Rate card overage price

Remarks

Required

Product

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

Required

RateCardTiers

Declaration
[JsonProperty(PropertyName = "rateCardTiers")]
public List<RateCardTier> RateCardTiers { get; set; }
Property Value
Type Description
List<RateCardTier>

List of tiered rate card prices

SubscribedServiceId

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

SPM internal Subscribed Service ID

TimeEnd

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

Rate card end date

TimeStart

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

Rate card start date

In this article
Back to top