summaryrefslogtreecommitdiffstats
path: root/vendor/gipfl/openrpc/src/ServerVariable.php
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-14 13:23:16 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-14 13:23:16 +0000
commit3e97c51418e6d27e9a81906f347fcb7c78e27d4f (patch)
treeee596ce1bc9840661386f96f9b8d1f919a106317 /vendor/gipfl/openrpc/src/ServerVariable.php
parentInitial commit. (diff)
downloadicingaweb2-module-incubator-upstream/0.20.0.tar.xz
icingaweb2-module-incubator-upstream/0.20.0.zip
Adding upstream version 0.20.0.upstream/0.20.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'vendor/gipfl/openrpc/src/ServerVariable.php')
-rw-r--r--vendor/gipfl/openrpc/src/ServerVariable.php46
1 files changed, 46 insertions, 0 deletions
diff --git a/vendor/gipfl/openrpc/src/ServerVariable.php b/vendor/gipfl/openrpc/src/ServerVariable.php
new file mode 100644
index 0000000..047dcf6
--- /dev/null
+++ b/vendor/gipfl/openrpc/src/ServerVariable.php
@@ -0,0 +1,46 @@
+<?php
+
+namespace gipfl\OpenRpc;
+
+use JsonSerializable;
+
+/**
+ * An object representing a Server Variable for server URL template substitution.
+ */
+class ServerVariable implements JsonSerializable
+{
+ use SimpleJsonSerializer;
+
+ /**
+ * REQUIRED. The default value to use for substitution, which SHALL be sent
+ * if an alternate value is not supplied. Note this behavior is different
+ * than the Schema Object’s treatment of default values, because in those
+ * cases parameter values are optional.
+ *
+ * @var string
+ */
+ public $default;
+
+ /**
+ * An optional description for the server variable. GitHub Flavored Markdown
+ * syntax MAY be used for rich text representation.
+ *
+ * @var string|null
+ */
+ public $description;
+
+ /**
+ * An enumeration of string values to be used if the substitution options are from a limited set.
+ *
+ * @var string[]
+ */
+ public $enum;
+
+ /**
+ * @param string $default
+ */
+ public function __construct($default)
+ {
+ $this->default = $default;
+ }
+}