From 997c44d1a7638b4e8599451861612d3297a6044d Mon Sep 17 00:00:00 2001 From: skpratt Date: Fri, 27 Jan 2023 21:52:52 -0600 Subject: [PATCH] add missing field to oss struct (#16094) --- api/operator_license.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/api/operator_license.go b/api/operator_license.go index 14c548b1a3..74eed3baa4 100644 --- a/api/operator_license.go +++ b/api/operator_license.go @@ -30,6 +30,9 @@ type License struct { // no longer be used in any capacity TerminationTime time.Time `json:"termination_time"` + // Whether the license will ignore termination + IgnoreTermination bool `json:"ignore_termination"` + // The product the license is valid for Product string `json:"product"`