Skip to content

Commit

Permalink
feat: add metadata to payload to user licenses
Browse files Browse the repository at this point in the history
  • Loading branch information
muneebkq committed Sep 11, 2024
1 parent 65fc677 commit 9ebe135
Showing 1 changed file with 17 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,21 @@ public class UserLicense {
* The license type (node-locked or hosted-floating).
*/
public String type;

/**
* License metadata with `view_permission` set to `"user"`.
*/
public Metadata[] metadata;

public static class Metadata {
/**
* The key of the metadata.
*/
public String key;

/**
* The value of the metadata.
*/
public String value;
}
}

0 comments on commit 9ebe135

Please sign in to comment.