From 96f7366c8258cd67cccff5c4626c85b01f019f27 Mon Sep 17 00:00:00 2001 From: tomasDostalDS <135800096+tomasDostalDS@users.noreply.github.com> Date: Tue, 23 Jul 2024 13:29:59 +0200 Subject: [PATCH] Add Webhook oAuth properties (#252) --- 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; }