← Back
Editing: ResponseDefinitions.php
<?php declare(strict_types=1); /** * SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later */ namespace OCA\WebhookListeners; /** * @psalm-type WebhookListenersWebhookInfo = array{ * id: string, * userId: string, * httpMethod: string, * uri: string, * event?: string, * eventFilter?: array<string,mixed>, * userIdFilter?: string, * headers?: array<string,string>, * authMethod: string, * authData?: array<string,mixed>, * tokenNeeded?: ?array{user_ids?:array<string,string>,user_roles?:array<string,string>}, * } */ class ResponseDefinitions { }
Save File
Cancel