Skip to content

Commit

Permalink
DGS-1720 Add ScenarioVersionInfo to Identification
Browse files Browse the repository at this point in the history
  • Loading branch information
mertic18 committed Oct 30, 2023
1 parent 5a136ed commit 4985f09
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions src/Resource/Identification.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,5 @@ class Identification extends BaseResource
public ?DateTime $approvedAt;
public ?DateTime $deniedAt;
public ?string $denialMessage;
public IdentifyScenarioVersionInfo $scenarioVersion;
}
13 changes: 13 additions & 0 deletions src/Resource/IdentifyScenarioVersionInfo.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?php

declare(strict_types=1);

namespace DigitalCz\DigiSign\Resource;

class IdentifyScenarioVersionInfo extends BaseResource
{
public string $id;
public int $version;
public string $approvalMode;
public IdentifyScenarioInfo $scenario;
}

0 comments on commit 4985f09

Please sign in to comment.