From 1c303c33c9f1a31447ee55729326d30e1433a677 Mon Sep 17 00:00:00 2001 From: TomasDostal Date: Tue, 13 Feb 2024 16:58:57 +0100 Subject: [PATCH] Add `Identification.forReviewAt` --- CHANGELOG.md | 1 + src/Resource/Identification.php | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d7c96bc..77fb9c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) princip ## [Unreleased] ### Added +- Add `Identification.forReviewAt` - Add `EnvelopeRecipient.channelForNotifications` - Add `EnvelopeTemplateRecipient.channelForNotifications` - Add `DeactivateAccount` endpoint diff --git a/src/Resource/Identification.php b/src/Resource/Identification.php index 2da7b8e..b72f527 100644 --- a/src/Resource/Identification.php +++ b/src/Resource/Identification.php @@ -21,6 +21,7 @@ class Identification extends BaseResource public ?DateTime $completedAt; public ?DateTime $approvedAt; public ?DateTime $deniedAt; + public ?DateTime $forReviewAt; public ?string $denialMessage; public ?IdentifyScenarioVersionInfo $scenarioVersion; }