File size: 871 Bytes
1477a90 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | import "../shared/index.tsp";
namespace Subscriptions;
/**
* Subscription reference represents a reference to the specific subscription item
* this entity represents.
*/
@friendlyName("BillingSubscriptionReference")
model SubscriptionReference {
/**
* The ID of the subscription.
*/
@visibility(Lifecycle.Read)
@summary("Subscription ID")
id: Shared.ULID;
/**
* The phase of the subscription.
*/
@visibility(Lifecycle.Read)
@summary("Phase ID")
phase: {
/**
* The ID of the phase.
*/
@visibility(Lifecycle.Read)
@summary("Phase ID")
id: Shared.ULID;
/**
* The item of the phase.
*/
@visibility(Lifecycle.Read)
@summary("Item ID")
item: {
/**
* The ID of the item.
*/
@visibility(Lifecycle.Read)
@summary("Item ID")
id: Shared.ULID;
};
};
}
|