DeleteMessageResult

Estrutura de dados do contrato OpenAPI.

Estrutura de dados do contrato OpenAPI.

Campos

CampoTipoPresençaDescrição
successbooleanobrigatórioValores: true
idstringobrigatório
messageidstringopcional
messageIdstringopcional
statusstringobrigatórioValores: "Deleted"
timestampstringobrigatórioRFC 3339. Formato: date-time
recordedbooleanobrigatório
alreadyDeletedbooleanopcional

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"
  ]
}