Show / Hide Table of Contents

Class PricingPlan

A pricing plan details provided by the Publisher.

Inheritance
object
PricingPlan
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 PricingPlan

Properties

BillingFrequency

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

Specifies the interval at which billing occurs for the subscription plan.

Remarks

Required

PlanDescription

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

A detailed explanation of the subscription plan.

PlanDuration

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

Specifies the interval at which billing occurs for the subscription plan.

PlanName

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

The name of the subscription plan used to identify the plan.

Remarks

Required

PlanType

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

The type of the subscription plan.

Remarks

Required

Rates

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

The pricing details of the subscription plan in various supported currencies.

Remarks

Required

In this article
Back to top