From 4653d82ccc005699033c6cd583624e94b6b7d066 Mon Sep 17 00:00:00 2001 From: skpratt Date: Thu, 23 Feb 2023 13:06:09 -0600 Subject: [PATCH] add missing field to oss struct (#16401) --- 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"`