From 432e058472fac372a23a5286ea740abcf715bf4f Mon Sep 17 00:00:00 2001 From: TomasDostal Date: Tue, 23 Jul 2024 12:35:33 +0200 Subject: [PATCH] Add Webhook oAuth properties --- CHANGELOG.md | 1 + src/Resource/Webhook.php | 7 +++++++ 2 files changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 86438f6d..c07d58a4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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` diff --git a/src/Resource/Webhook.php b/src/Resource/Webhook.php index 12a47a22..4c641547 100644 --- a/src/Resource/Webhook.php +++ b/src/Resource/Webhook.php @@ -17,4 +17,11 @@ class Webhook extends BaseResource public string $status; public string $secret; + + public ?string $oAuthTokenEndpoint; + + public ?string $oAuthClientId; + + /** @var string[] $oAuthScopes */ + public array $oAuthScopes; }