Show / Hide Table of Contents

Class SaaSPricingPlan

SaaS pricing plan.

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

Properties

BillingFrequency

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

The plan billing frequency.

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 saas 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

In this article
Back to top