From 6e6a1ec01c006cfb7f09dd48c0e3ace20c14d826 Mon Sep 17 00:00:00 2001 From: Conor Macpherson Date: Thu, 8 Dec 2022 14:13:23 -0500 Subject: [PATCH] Add server installation type, ensure customer name is optional. --- model/true_up_review_profile.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/model/true_up_review_profile.go b/model/true_up_review_profile.go index ca4e537492..87f0741390 100644 --- a/model/true_up_review_profile.go +++ b/model/true_up_review_profile.go @@ -6,7 +6,8 @@ package model type TrueUpReviewProfile struct { ServerId string `json:"server_id"` ServerVersion string `json:"server_version"` - CustomerName string `json:"customer_name"` + ServerInstallationType string `json:"server_installation_type"` + CustomerName *string `json:"customer_name"` // Might not be availabe? LicenseId string `json:"licnes_id"` LicnesedSeats int `json:"license_seats"` LicensePlan string `json:"license_plan"`