Show / Hide Table of Contents

Class BillingDetails

Sku details for billing 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

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

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