| import "../shared/index.tsp"; | |
| namespace Subscriptions; | |
| /** | |
| * Subscription reference represents a reference to the specific subscription item | |
| * this entity represents. | |
| */ | |
| model SubscriptionReference { | |
| /** | |
| * The ID of the subscription. | |
| */ | |
| id: Shared.ULID; | |
| /** | |
| * The phase of the subscription. | |
| */ | |
| phase: { | |
| /** | |
| * The ID of the phase. | |
| */ | |
| id: Shared.ULID; | |
| /** | |
| * The item of the phase. | |
| */ | |
| item: { | |
| /** | |
| * The ID of the item. | |
| */ | |
| id: Shared.ULID; | |
| }; | |
| }; | |
| } | |