From 821cd9023ffe91c5862186039e6ae418bcfa31e3 Mon Sep 17 00:00:00 2001 From: jinyoungmoonDEV Date: Tue, 26 Aug 2025 15:23:40 +0900 Subject: [PATCH] fix: change send_report field type to string in CostReportConfigRequest Signed-off-by: jinyoungmoonDEV --- proto/spaceone/api/cost_analysis/v1/cost_report_config.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proto/spaceone/api/cost_analysis/v1/cost_report_config.proto b/proto/spaceone/api/cost_analysis/v1/cost_report_config.proto index ca6db78e..564dcf24 100644 --- a/proto/spaceone/api/cost_analysis/v1/cost_report_config.proto +++ b/proto/spaceone/api/cost_analysis/v1/cost_report_config.proto @@ -149,7 +149,7 @@ message UpdateCostReportConfigRecipientsRequest { message CostReportConfigRequest { // The ID of cost report in the Protocol. string cost_report_config_id = 1; - bool send_report = 2; + string send_report = 2; } message CostReportConfigQuery {