Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 950 Bytes

catalog-subscription-plan.md

File metadata and controls

41 lines (32 loc) · 950 Bytes

Catalog Subscription Plan

Describes a subscription plan. For more information, see Set Up and Manage a Subscription Plan.

Structure

CatalogSubscriptionPlan

Fields

Name Type Tags Description
name string Required The name of the plan.
phases SubscriptionPhase[] Required A list of SubscriptionPhase containing the SubscriptionPhase for this plan.

Example (as JSON)

{
  "name": "name0",
  "phases": [
    {
      "uid": null,
      "cadence": "EVERY_FOUR_MONTHS",
      "periods": null,
      "recurring_price_money": null,
      "ordinal": null
    },
    {
      "uid": null,
      "cadence": "QUARTERLY",
      "periods": null,
      "recurring_price_money": null,
      "ordinal": null
    }
  ]
}