From 7e96fae97e5496a761ad83844a97b251eb14d992 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Mon, 16 Dec 2024 17:01:23 +0300 Subject: GetConversationsRequest removed --- protocols/Steam/src/api/history.h | 24 ------------------------ 1 file changed, 24 deletions(-) (limited to 'protocols/Steam/src/api/history.h') diff --git a/protocols/Steam/src/api/history.h b/protocols/Steam/src/api/history.h index 29086b6f46..de3e7367f9 100644 --- a/protocols/Steam/src/api/history.h +++ b/protocols/Steam/src/api/history.h @@ -1,30 +1,6 @@ #ifndef _STEAM_REQUEST_HISTORY_H_ #define _STEAM_REQUEST_HISTORY_H_ -struct GetConversationsRequest : public HttpRequest -{ - GetConversationsRequest(const char *token) : - HttpRequest(REQUEST_GET, "/IFriendMessagesService/GetActiveMessageSessions/v0001") - { - this << CHAR_PARAM("access_token", token); - } - - //{ - // "response": { - // "message_sessions": [ - // { - // "accountid_friend": XXXXXXXXX, - // "last_message" : 1514975719, - // "last_view" : 1514975719, - // "unread_message_count" : 0 - // } - // ] - // , - // "timestamp": 1515007542 - // } - //} -}; - struct GetHistoryMessagesRequest : public HttpRequest { GetHistoryMessagesRequest(const char *token, int64_t steamId, const char *who, time_t since) : -- cgit v1.2.3