Class BillingDetails
Billing detail entry associated with a subscription.
Inherited Members
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