diff --git a/model/cloud.go b/model/cloud.go index b08a4b5167..a137e5bbc0 100644 --- a/model/cloud.go +++ b/model/cloud.go @@ -45,9 +45,9 @@ type CloudCustomer struct { // CloudCustomerInfo represents editable info of a customer. type CloudCustomerInfo struct { Name string `json:"name"` - Email string `json:"email"` - ContactFirstName string `json:"contact_first_name"` - ContactLastName string `json:"contact_last_name"` + Email string `json:"email,omitempty"` + ContactFirstName string `json:"contact_first_name,omitempty"` + ContactLastName string `json:"contact_last_name,omitempty"` NumEmployees int `json:"num_employees"` }