From 1c0073915d5d0ca10b01e10edfe34590cefba052 Mon Sep 17 00:00:00 2001 From: Asato Wakisaka Date: Tue, 9 Mar 2021 20:58:29 +0900 Subject: [PATCH] drop Type field from Host and introduce Size instead --- hosts.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts.go b/hosts.go index b6a038d..203b8fd 100644 --- a/hosts.go +++ b/hosts.go @@ -15,7 +15,7 @@ type Host struct { Name string `json:"name"` DisplayName string `json:"displayName,omitempty"` CustomIdentifier string `json:"customIdentifier,omitempty"` - Type string `json:"type"` + Size string `json:"size"` Status string `json:"status"` Memo string `json:"memo"` Roles Roles `json:"roles"`