aboutsummaryrefslogtreecommitdiff
path: root/internal/feed/v3privilegesrequired_string.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/feed/v3privilegesrequired_string.go')
-rw-r--r--internal/feed/v3privilegesrequired_string.go26
1 files changed, 26 insertions, 0 deletions
diff --git a/internal/feed/v3privilegesrequired_string.go b/internal/feed/v3privilegesrequired_string.go
new file mode 100644
index 0000000..2951a64
--- /dev/null
+++ b/internal/feed/v3privilegesrequired_string.go
@@ -0,0 +1,26 @@
+// Code generated by "stringer -linecomment -type=V3PrivilegesRequired"; DO NOT EDIT.
+
+package feed
+
+import "strconv"
+
+func _() {
+ // An "invalid array index" compiler error signifies that the constant values have changed.
+ // Re-run the stringer command to generate them again.
+ var x [1]struct{}
+ _ = x[V3PRNone-0]
+ _ = x[V3PRLow-1]
+ _ = x[V3PRMedium-2]
+ _ = x[V3PRHigh-3]
+}
+
+const _V3PrivilegesRequired_name = "NONELOWMEDIUMHIGH"
+
+var _V3PrivilegesRequired_index = [...]uint8{0, 4, 7, 13, 17}
+
+func (i V3PrivilegesRequired) String() string {
+ if i >= V3PrivilegesRequired(len(_V3PrivilegesRequired_index)-1) {
+ return "V3PrivilegesRequired(" + strconv.FormatInt(int64(i), 10) + ")"
+ }
+ return _V3PrivilegesRequired_name[_V3PrivilegesRequired_index[i]:_V3PrivilegesRequired_index[i+1]]
+}