add missing field to oss struct (#16401)

This commit is contained in:
skpratt 2023-02-23 13:06:09 -06:00 committed by GitHub
parent f3b43a1a3d
commit 1ab5aff45b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -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"`