mirror of
https://github.com/nextcloud/mail.git
synced 2026-01-13 20:23:59 +00:00
60 lines
2.1 KiB
PHP
60 lines
2.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OCA\Mail;
|
|
|
|
/**
|
|
* @psalm-type MailIMAPFullMessage = array{
|
|
* uid: int<0, max>,
|
|
* messageId: string,
|
|
* from: list<array{label: string, email: string}>,
|
|
* to: list<array{label: string, email: string}>,
|
|
* replyTo: list<array{label: string, email: string}>,
|
|
* cc: list<array{label: string, email: string}>,
|
|
* bcc: list<array{label: string, email: string}>,
|
|
* subject: string,
|
|
* dateInt: int<0, max>,
|
|
* flags: array{seen: bool, flagged: bool, answered: bool, deleted: bool, draft: bool, forwarded: bool, hasAttachments: bool, mdnsent: bool, important: bool},
|
|
* hasHtmlBody?: bool,
|
|
* body?: string,
|
|
* dispositionNotificationTo: string,
|
|
* hasDkimSignature: bool,
|
|
* phishingDetails: array{checks: list<array{type: string, isPhishing: bool, message: string, additionalData: array<string, mixed>}>, warning: bool},
|
|
* unsubscribeUrl: ?string,
|
|
* isOneClickUnsubscribe: bool,
|
|
* unsubscribeMailTo: ?string,
|
|
* scheduling: list<array{id: ?string, messageId: string, method: string, contents: string}>,
|
|
* attachments: list<array{id: int<1, max>, messageId: int<1, max>, filename: string, mime: string, size: int<0, max>, cid: ?string, disposition: string, downloadUrl?: string}>
|
|
* }
|
|
*
|
|
* @psalm-type MailMessageApiResponse = MailIMAPFullMessage&array{
|
|
* signature: ?string,
|
|
* itineraries?: array<string, mixed>,
|
|
* id: int<1, max>,
|
|
* isSenderTrusted: bool,
|
|
* smime: array{ isSigned: bool, signatureIsValid: ?bool, isEncrypted: bool},
|
|
* dkimValid?: bool,
|
|
* rawUrl: string
|
|
* }
|
|
*
|
|
* @psalm-type MailMessageApiAttachment = array{ name: string, mime: string, size: int<0, max>, content: string}
|
|
*
|
|
* @psalm-type MailAccountListResponse = array{
|
|
* id: int,
|
|
* email: string,
|
|
* aliases: list<array{
|
|
* id: int,
|
|
* email: string,
|
|
* name: ?string,
|
|
* }>,
|
|
* }
|
|
*/
|
|
final class ResponseDefinitions {
|
|
}
|