From d8ac3842fe635eceb6bc025759c5eb2c501e2fbf Mon Sep 17 00:00:00 2001 From: anandrgitnirman Date: Thu, 7 Oct 2021 17:02:12 +0530 Subject: [PATCH] #546 Renamed the AddOn to AddonRequest to prevent clashes with data types on license Storage --- license_server/license_contract.proto | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/license_server/license_contract.proto b/license_server/license_contract.proto index 23283f90..dee865d1 100644 --- a/license_server/license_contract.proto +++ b/license_server/license_contract.proto @@ -94,7 +94,7 @@ message LicenseCreateRequest { message AddOnCreateRequest { CallerAuthentication auth = 1; //Specify all the add ons to be created. - repeated AddOn add_ons = 2; + repeated AddOnRequest add_ons = 2; //Channel Id , that this add is to be associated with uint64 channel_id = 3; } @@ -102,7 +102,7 @@ message AddOnCreateRequest { // Add on can only be associated with a license , they will be effective only when the license usage is exhausted. // Addons expire when the license expires and will not carry forward. -message AddOn { +message AddOnRequest { //Please note all the values in here should match the details on the service metadata float discount_in_percentage = 1; float cost_in_agix = 2;