Show / Hide Table of Contents

Class BillingDetails

Billing detail entry associated with a subscription.

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

Properties

BillingModel

Declaration
[Required(ErrorMessage = "BillingModel is required.")]
[JsonProperty(PropertyName = "billingModel")]
[JsonConverter(typeof(ResponseEnumConverter))]
public BillingDetails.BillingModelEnum? BillingModel { get; set; }
Property Value
Type Description
BillingDetails.BillingModelEnum?

The billing model this billing detail applies to.

Remarks

Required

HasGovSku

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

Whether this sku is assign to gov product.

Meters

Declaration
[Required(ErrorMessage = "Meters is required.")]
[JsonProperty(PropertyName = "meters")]
public List<Meter> Meters { get; set; }
Property Value
Type Description
List<Meter>

The meters associated with sku.

Remarks

Required

MetricType

Declaration
[Required(ErrorMessage = "MetricType is required.")]
[JsonProperty(PropertyName = "metricType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public MetricType? MetricType { get; set; }
Property Value
Type Description
MetricType?

The part's metric.

Remarks

Required

PricingPlanKey

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

Unique key used to map this SKU to the pricing plan.

Remarks

Required

RateAllocation

Declaration
[Required(ErrorMessage = "RateAllocation is required.")]
[JsonProperty(PropertyName = "rateAllocation")]
public float? RateAllocation { get; set; }
Property Value
Type Description
float?

Tha rate of this sku meter.

Remarks

Required

Sku

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

Sku for service.

Remarks

Required

In this article
Back to top