Skip to content

Commit

Permalink
Extend Contact resource (#245)
Browse files Browse the repository at this point in the history
Co-authored-by: David Kalianko <david.kalianko@digital.cz>
  • Loading branch information
IamDejv and David Kalianko authored Jun 18, 2024
1 parent 00634df commit 0ee9e2f
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) princip
- Add `EnvelopeRecipient.certificateInfo` endpoint
- Add `EnvelopeProperties.channelForSender` in to resource
- Edit `CertificateInfo` resource
- Extend `Contact` resource

## [2.4.0] - 2024-05-14
### Added
Expand Down
15 changes: 15 additions & 0 deletions src/Resource/Contact.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

namespace DigitalCz\DigiSign\Resource;

use DateTime;
use DigitalCz\DigiSign\Resource\Traits\EntityResourceTrait;

class Contact extends BaseResource
Expand All @@ -17,4 +18,18 @@ class Contact extends BaseResource
public ?string $mobile = null;

public string $language;

public ?string $address = null;

public ?DateTime $birthdate = null;

public ?string $birthnumber = null;

public ?string $company = null;

public ?string $identificationNumber = null;

public ?string $function = null;

public ?string $contractingParty = null;
}

0 comments on commit 0ee9e2f

Please sign in to comment.