mirror of
https://github.com/nextcloud/server.git
synced 2026-06-09 08:44:07 -04:00
26 lines
534 B
PHP
26 lines
534 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OCA\Webhooks;
|
|
|
|
/**
|
|
* @psalm-type WebhooksListenerInfo = array{
|
|
* id: string,
|
|
* userId: string,
|
|
* httpMethod: string,
|
|
* uri: string,
|
|
* event?: string,
|
|
* eventFilter?: array<string,mixed>,
|
|
* headers?: array<string,string>,
|
|
* authMethod: string,
|
|
* authData?: array<string,mixed>,
|
|
* }
|
|
*/
|
|
class ResponseDefinitions {
|
|
}
|