summaryrefslogtreecommitdiff
path: root/protocols/Steam/src/api/history.h
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/Steam/src/api/history.h')
-rw-r--r--protocols/Steam/src/api/history.h24
1 files changed, 0 insertions, 24 deletions
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) :