From 62abcfe6dd5bbdb93dbfe6f9b8274c8ad8ef9f2f Mon Sep 17 00:00:00 2001 From: yetone Date: Thu, 11 May 2023 19:23:26 +0800 Subject: [PATCH] fix: price as string type --- modelschemas/resource_instance.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modelschemas/resource_instance.go b/modelschemas/resource_instance.go index 3f226d2..b26ef4f 100644 --- a/modelschemas/resource_instance.go +++ b/modelschemas/resource_instance.go @@ -7,5 +7,5 @@ type ResourceInstance struct { Description string `json:"description"` NodeSelectors map[string]string `json:"node_selectors"` Resources DeploymentTargetResources `json:"resources"` - Price float64 `json:"price"` + Price string `json:"price"` }