diff --git a/CHANGELOG.md b/CHANGELOG.md index c07d58a..e377298 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,7 @@ Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) princip - Extend `Contact` resource - Extend `AccountBilling` resource with identify limits - Add `AccountBilling.userContactLimit` +- Add `IdentifyScenarioVersion.restrictedCountries` ## [2.4.0] - 2024-05-14 ### Added diff --git a/src/Resource/IdentifyScenarioVersion.php b/src/Resource/IdentifyScenarioVersion.php index 943d618..4e84980 100644 --- a/src/Resource/IdentifyScenarioVersion.php +++ b/src/Resource/IdentifyScenarioVersion.php @@ -29,4 +29,7 @@ class IdentifyScenarioVersion extends BaseResource public bool $selfieEnabled; public int $expireAfterHours; public int $discardCompletedAfterDays; + + /** @var string[]|null */ + public ?array $restrictedCountries; }