Skip to content

Commit

Permalink
Add Webhook oAuth properties
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasDostalDS committed Jul 23, 2024
1 parent 7793d15 commit 76498c0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ All notable changes will be documented in this file.
Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) principles.

## [Unreleased]
- Add `Webhook oAuth properties`
- Add `ForbiddenException`
- Add `AccountBilling.productType`
- Add `EnvelopeTemplate.title`
Expand Down
8 changes: 8 additions & 0 deletions src/Resource/Webhook.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,12 @@ class Webhook extends BaseResource
public string $status;

public string $secret;

public ?string $oAuthTokenEndpoint;

public ?string $oAuthClientId;

public ?string $oAuthClientSecret;

public array $oAuthScopes;

Check failure on line 27 in src/Resource/Webhook.php

View workflow job for this annotation

GitHub Actions / PHP 8.1 (prefer-lowest)

@var annotation of property \DigitalCz\DigiSign\Resource\Webhook::$oAuthScopes does not specify type hint for its items.

Check failure on line 27 in src/Resource/Webhook.php

View workflow job for this annotation

GitHub Actions / PHP 8.1 (prefer-stable)

@var annotation of property \DigitalCz\DigiSign\Resource\Webhook::$oAuthScopes does not specify type hint for its items.

Check failure on line 27 in src/Resource/Webhook.php

View workflow job for this annotation

GitHub Actions / PHP 8.2 (prefer-stable)

@var annotation of property \DigitalCz\DigiSign\Resource\Webhook::$oAuthScopes does not specify type hint for its items.
}

0 comments on commit 76498c0

Please sign in to comment.