chatBskyConvoAcceptConvo top-level constant

Map<String, dynamic> const chatBskyConvoAcceptConvo

chat.bsky.convo.acceptConvo

Implementation

const chatBskyConvoAcceptConvo = <String, dynamic>{
  "lexicon": 1,
  "id": "chat.bsky.convo.acceptConvo",
  "defs": {
    "main": {
      "type": "procedure",
      "input": {
        "encoding": "application/json",
        "schema": {
          "type": "object",
          "required": ["convoId"],
          "properties": {
            "convoId": {"type": "string"},
          },
        },
      },
      "output": {
        "encoding": "application/json",
        "schema": {
          "type": "object",
          "properties": {
            "rev": {
              "type": "string",
              "description":
                  "Rev when the convo was accepted. If not present, the convo was already accepted.",
            },
          },
        },
      },
    },
  },
};