@mintlify/models
Version:
Mintlify models
13 lines (12 loc) • 461 B
TypeScript
export type EntitlementConfiguration = {
/**
* The availability status of this entitlement for the deployment.
*/
status: 'ENABLED' | 'DISABLED';
/**
* Whether the user has chosen to enable this entitlement within their deployment.
* This is a user-configurable setting that only applies when status is 'ENABLED'.
* If undefined, defaults to the entitlement's default state.
*/
enabled?: 'ENABLED' | 'DISABLED';
};