From 17b11c50bfb8559aced8d19c9b5237b7428879a4 Mon Sep 17 00:00:00 2001 From: tituscarl Date: Fri, 15 May 2026 15:26:37 +0800 Subject: [PATCH] billingd: add invoicelayoutconfigid in the request of createbg and updatebginvoicesettings --- billing/v1/billing.proto | 6 ++++++ openapiv2/apidocs.swagger.json | 8 ++++++++ 2 files changed, 14 insertions(+) diff --git a/billing/v1/billing.proto b/billing/v1/billing.proto index 93d3ea7e..b3d87e97 100644 --- a/billing/v1/billing.proto +++ b/billing/v1/billing.proto @@ -1330,6 +1330,9 @@ message CreateBillingGroupRequest { // Optional. Company's country string country = 19; + + // Optional. Invoice Layout Config Id. + string invoiceLayoutConfigId = 20; } message AwsOptions { @@ -3165,6 +3168,9 @@ message UpdateBillingGroupInvoiceSettingsRequest { optional string billingTitle = 2; optional string calculationType = 3; optional string language = 4; + + // Optional. Invoice Layout Config Id. + optional string invoiceLayoutConfigId = 5; } message UpdateBillingGroupResellerChargesRequest { diff --git a/openapiv2/apidocs.swagger.json b/openapiv2/apidocs.swagger.json index c277d77a..cdf95269 100644 --- a/openapiv2/apidocs.swagger.json +++ b/openapiv2/apidocs.swagger.json @@ -22795,6 +22795,10 @@ }, "language": { "type": "string" + }, + "invoiceLayoutConfigId": { + "type": "string", + "description": "Optional. Invoice Layout Config Id." } } }, @@ -37391,6 +37395,10 @@ "country": { "type": "string", "title": "Optional. Company's country" + }, + "invoiceLayoutConfigId": { + "type": "string", + "description": "Optional. Invoice Layout Config Id." } }, "description": "Request message for the Billing.CreateBillingGroup rpc."