chatBskyGroupWithdrawJoinRequest top-level constant
chat.bsky.group.withdrawJoinRequest
Implementation
const chatBskyGroupWithdrawJoinRequest = <String, dynamic>{
"lexicon": 1,
"id": "chat.bsky.group.withdrawJoinRequest",
"defs": {
"main": {
"type": "procedure",
"description":
"Withdraws a pending request to join a group. Action taken by the prospective member who originally requested to join.",
"input": {
"encoding": "application/json",
"schema": {
"type": "object",
"required": ["convoId"],
"properties": {
"convoId": {"type": "string"},
},
},
},
"output": {
"encoding": "application/json",
"schema": {"type": "object", "required": [], "properties": {}},
},
"errors": [
{"name": "InvalidJoinRequest"},
],
},
},
};