1
0

ResponseDefinitions.php 602 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
  5. * SPDX-License-Identifier: AGPL-3.0-or-later
  6. */
  7. namespace OCA\CloudFederationAPI;
  8. /**
  9. * @psalm-type CloudFederationAPIAddShare = array{
  10. * recipientDisplayName: string,
  11. * }
  12. *
  13. * @psalm-type CloudFederationAPIError = array{
  14. * message: string,
  15. * }
  16. *
  17. * @psalm-type CloudFederationAPIValidationError = CloudFederationAPIError&array{
  18. * validationErrors: array{
  19. * name: string,
  20. * message: string|null,
  21. * }[],
  22. * }
  23. */
  24. class ResponseDefinitions {
  25. }