From 4985f09f611e4576d1d969ffd43aea77600b5c24 Mon Sep 17 00:00:00 2001 From: mertic18 Date: Mon, 30 Oct 2023 10:38:23 +0100 Subject: [PATCH] DGS-1720 Add ScenarioVersionInfo to Identification --- CHANGELOG.md | 1 + src/Resource/Identification.php | 1 + src/Resource/IdentifyScenarioVersionInfo.php | 13 +++++++++++++ 3 files changed, 15 insertions(+) create mode 100644 src/Resource/IdentifyScenarioVersionInfo.php diff --git a/CHANGELOG.md b/CHANGELOG.md index 42e6ecf..8950507 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,7 @@ Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) princip - Add `approvedAt`, `deniedAt` and `denailMessage` to `Identification` - Add `Identification.approve` endpoint and `Identification.deny` endpoint - Add `notificationForSenderEmail` to `AccountSettings` +- Add `ScenarioVersionInfo` to `Identification` ### Changed - Change `EnvelopeDocument.file` to nullable diff --git a/src/Resource/Identification.php b/src/Resource/Identification.php index bb95d58..3719e3c 100644 --- a/src/Resource/Identification.php +++ b/src/Resource/Identification.php @@ -22,4 +22,5 @@ class Identification extends BaseResource public ?DateTime $approvedAt; public ?DateTime $deniedAt; public ?string $denialMessage; + public IdentifyScenarioVersionInfo $scenarioVersion; } diff --git a/src/Resource/IdentifyScenarioVersionInfo.php b/src/Resource/IdentifyScenarioVersionInfo.php new file mode 100644 index 0000000..8452e18 --- /dev/null +++ b/src/Resource/IdentifyScenarioVersionInfo.php @@ -0,0 +1,13 @@ +