Show / Hide Table of Contents

Class HybridPricingPlan

Hybrid SaaS pricing plan with a base fee and dimension-based overage billing.

Inheritance
object
PricingPlan
HybridPricingPlan
Inherited Members
PricingPlan.Rates
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.MarketplacepublisherService.Models
Assembly: OCI.DotNetSDK.Marketplacepublisher.dll
Syntax
public class HybridPricingPlan : PricingPlan

Properties

BillingFrequency

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

The plan billing frequency.

Remarks

Required

Dimensions

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

The usage dimensions that define included usage and overage billing for this plan.

Remarks

Required

ExtendedMetadata

Declaration
[JsonProperty(PropertyName = "extendedMetadata")]
public Dictionary<string, string> ExtendedMetadata { get; set; }
Property Value
Type Description
Dictionary<string, string>

Additional metadata key/value pairs for the hybrid pricing.

Name

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

The plan name.

Remarks

Required

PlanDescription

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

The plan description.

Remarks

Required

PlanDuration

Declaration
[JsonProperty(PropertyName = "planDuration")]
[JsonConverter(typeof(ResponseEnumConverter))]
public HybridPricingPlan.PlanDurationEnum? PlanDuration { get; set; }
Property Value
Type Description
HybridPricingPlan.PlanDurationEnum?

The plan duration.

PricingPlanKey

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

Unique identifier of the pricing plan.

In this article
Back to top