From 07a3beaa97811f9246669fdcf19fca3d73db3821 Mon Sep 17 00:00:00 2001 From: Bernhard B Date: Tue, 14 May 2024 22:57:52 +0200 Subject: [PATCH] removed datastrutures folder again --- src/datastrutures/datastructures.go | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 src/datastrutures/datastructures.go diff --git a/src/datastrutures/datastructures.go b/src/datastrutures/datastructures.go deleted file mode 100644 index a63940a..0000000 --- a/src/datastrutures/datastructures.go +++ /dev/null @@ -1,20 +0,0 @@ -package datastructures - -type SendMessageRecipient struct { - Identifier string `json:"identifier"` - Type string `json:"type"` -} - -type SendMessageV3 struct { - Recipients []SendMessageRecipient `json:"recipients"` - Message string `json:"message"` - Base64Attachments []string `json:"base64_attachments" example:",data:;base64,data:;filename=;base64"` - Sticker string `json:"sticker"` - Mentions []client.MessageMention `json:"mentions"` - QuoteTimestamp *int64 `json:"quote_timestamp"` - QuoteAuthor *string `json:"quote_author"` - QuoteMessage *string `json:"quote_message"` - QuoteMentions []client.MessageMention `json:"quote_mentions"` - TextMode *string `json:"text_mode" enums:"normal,styled"` - EditTimestamp *int64 `json:"edit_timestamp"` -}