Skip to content

Commit

Permalink
feat(api-keys): adding should show in consumption dashboard to entitl…
Browse files Browse the repository at this point in the history
…ement model (#888)
  • Loading branch information
HNascimento-coveo authored Nov 28, 2024
1 parent 3bdd7c2 commit e6cfa62
Showing 1 changed file with 50 additions and 1 deletion.
51 changes: 50 additions & 1 deletion src/resources/License/LicenseInterfaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,21 +100,70 @@ export interface LicenseModel {
}

export interface EntitlementModel {
/**
* Limit of items
*/
itemLimit: number;
/**
* Limit of Queries Per Month for product listing
*/
lrpmLimit: number;
/**
* The unique identifier of the entitlement
*/
id: string;
/**
* The unique identifier of the product on Salesforce
*/
productId: string;
/**
* Name of the product on Salesforce
*/
productName: string;
/**
* Unit on which the price is based on
*/
pricingUnit: string;
/**
* Name of the product on Coveo
*/
displayName: string;
/**
* Queries per month limit
*/
qpmLimit: number;
/**
* Reommendation Limit
*/
recommendationLimit: number;
/**
* Status of the entitlement
*/
status: string;
/**
* Flag that informs if entitlement allow unlimited Queries Per Month
*/
unlimitedQPM: boolean;
/**
* Flag that informs if entitlement allow unlimited recommendations
*/
unlimitedRecommendations: boolean;
/**
* Flag that informs if entitlement allow unlimited users
*/
unlimitedUsers: boolean;
useCase: string;
/**
* Use case of the entitlement
*/
useCase: string;
/**
* Limit of users for the entitlement
*/
userLimit: number;
/**
* Flag to control if the entitlement should be shown in the consumption dashboard
*/
shouldShowInConsumptionDashboard: boolean;
}

/**
Expand Down

0 comments on commit e6cfa62

Please sign in to comment.