From 88b6c67c49ad9fd8e0deb8809f69e3c1d8079c0d Mon Sep 17 00:00:00 2001 From: Yormy <37929978+yormy@users.noreply.github.com> Date: Sun, 17 Mar 2024 21:00:34 +0100 Subject: [PATCH] Allow examples to be shown in response fields (#825) * Allow examples to be shown in response fields * Update type --------- Co-authored-by: Rob Co-authored-by: Shalvah --- camel/Extraction/ResponseField.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/camel/Extraction/ResponseField.php b/camel/Extraction/ResponseField.php index ffc92baf..8a51da8b 100644 --- a/camel/Extraction/ResponseField.php +++ b/camel/Extraction/ResponseField.php @@ -19,5 +19,8 @@ class ResponseField extends BaseDTO /** @var string */ public $type; + /** @var mixed */ + public $example; + public array $enumValues = []; }