PlanPreviewDto
Represents a publicly listed plan a store can subscribe to.
idstringRequired
The unique identifier of the plan.
is_custombooleanRequired
Whether the plan is negotiated for a specific store rather than publicly offered.
namestringRequired
The display name of the plan.
platform_fee_rateintegerRequired
The platform fee charged on the store's revenue, in basis points.
subscription_price_monthlyintegerRequired
The monthly subscription price, in the smallest currency unit.
descriptionstringOptional
The description of the plan.
inherits_from_plan_idstringOptional
The identifier of the plan this one inherits its limits and feature flags from, if any.
subscription_price_annuallyintegerOptional
The annual subscription price, in the smallest currency unit, when the plan is billed annually.
Example
{
"id": "string",
"is_custom": true,
"name": "string",
"platform_fee_rate": 0,
"subscription_price_monthly": 0,
"description": "string",
"inherits_from_plan_id": "string",
"subscription_price_annually": 0
}