diff --git a/CHANGELOG.md b/CHANGELOG.md index 8406737..433def9 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 `MyAccount.createdAt` - Add `MyContactsEndpoint` CRUD endpoints - Add `IdentifyScenarioVersion.ownConditions` - Add `MyAccount.shortName` diff --git a/src/Resource/MyAccount.php b/src/Resource/MyAccount.php index d0589e4..d81b161 100644 --- a/src/Resource/MyAccount.php +++ b/src/Resource/MyAccount.php @@ -4,12 +4,15 @@ namespace DigitalCz\DigiSign\Resource; +use DateTime; + class MyAccount extends BaseResource { public string $id; public string $name; public string $status; public bool $active; + public DateTime $createdAt; public ?string $idpDomain; public ?string $shortName; }