Skip to content

Commit

Permalink
Fix IT test fails to decode enum
Browse files Browse the repository at this point in the history
  • Loading branch information
matusfaro committed Jan 2, 2024
1 parent 5664267 commit 1ddac6b
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2023 Matus Faro
* Copyright 2024 Matus Faro
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand Down Expand Up @@ -184,6 +184,7 @@ class UsageKey {
String usageKeyId;
}

@RegisterForReflection
enum OwnerType {
/** API Key used by user scripts or workflows */
USER,
Expand All @@ -193,6 +194,7 @@ enum OwnerType {

@Getter
@AllArgsConstructor
@RegisterForReflection
enum UsageKeyType {
/** No Usage Key */
UNLIMITED(0),
Expand Down

0 comments on commit 1ddac6b

Please sign in to comment.