# SetPlanDto

**Kind:** Class

**Source:** [`atloria-monorepo/apps/api/src/platform/dto/set-plan.dto.ts`](https://github.com/sherkety/atloria/blob/main/atloria-monorepo/apps/api/src/platform/dto/set-plan.dto.ts#L14)

Set an org's plan. Two modes, mutually informative:
 - `plan` alone → change the org's base (Stripe) plan directly.
 - `override` (+ optional `overrideDays`) → a manual, auto-expiring grant that
   wins over the base plan for a trial/POC without touching Stripe.
Pass `override: 'CLEAR'` to remove an active override.

## Properties

| Property | Type |
|---|---|
| `plan` | `PlanValue` |
| `override` | `PlanValue | 'CLEAR'` |
| `overrideDays` | `number` |
| `reason` | `string` |
