# DeleteMessageResult Estrutura de dados do contrato OpenAPI. ## Campos | Campo | Tipo | Presença | Descrição | |---|---|---|---| | `success` | `boolean` | obrigatório | Valores: `true` | | `id` | `string` | obrigatório | — | | `messageid` | `string` | opcional | — | | `messageId` | `string` | opcional | — | | `status` | `string` | obrigatório | Valores: `"Deleted"` | | `timestamp` | `string` | obrigatório | RFC 3339. Formato: `date-time` | | `recorded` | `boolean` | obrigatório | — | | `alreadyDeleted` | `boolean` | opcional | — | ## Definição OpenAPI ```json { "type": "object", "properties": { "success": { "type": "boolean", "enum": [ true ] }, "id": { "type": "string" }, "messageid": { "type": "string" }, "messageId": { "type": "string" }, "status": { "type": "string", "enum": [ "Deleted" ] }, "timestamp": { "type": "string", "description": "RFC 3339.", "format": "date-time" }, "recorded": { "type": "boolean" }, "alreadyDeleted": { "type": "boolean" } }, "required": [ "success", "id", "status", "timestamp", "recorded" ] } ```