diff options
author | Wim <wim@42.be> | 2019-09-07 22:46:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-07 22:46:58 +0200 |
commit | a3bee01e0af3394c19360b98fd2db1b647f49299 (patch) | |
tree | ffc5778361d55d592a718354a37c9251e75fc7f6 /vendor/github.com/Philipp15b/go-steam/social_events.go | |
parent | 1dc93ec4f001edd01daccbe408767d4878be25a3 (diff) | |
download | matterbridge-msglm-a3bee01e0af3394c19360b98fd2db1b647f49299.tar.gz matterbridge-msglm-a3bee01e0af3394c19360b98fd2db1b647f49299.tar.bz2 matterbridge-msglm-a3bee01e0af3394c19360b98fd2db1b647f49299.zip |
Update dependencies (#886)
Diffstat (limited to 'vendor/github.com/Philipp15b/go-steam/social_events.go')
-rw-r--r-- | vendor/github.com/Philipp15b/go-steam/social_events.go | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/vendor/github.com/Philipp15b/go-steam/social_events.go b/vendor/github.com/Philipp15b/go-steam/social_events.go index f17a650a..b495131d 100644 --- a/vendor/github.com/Philipp15b/go-steam/social_events.go +++ b/vendor/github.com/Philipp15b/go-steam/social_events.go @@ -1,9 +1,10 @@ package steam import ( + "time" + . "github.com/Philipp15b/go-steam/protocol/steamlang" . "github.com/Philipp15b/go-steam/steamid" - "time" ) type FriendsListEvent struct{} @@ -41,7 +42,7 @@ type PersonaStateEvent struct { SourceSteamId SteamId `json:",string"` GameDataBlob []byte Name string - Avatar string + Avatar []byte LastLogOff uint32 LastLogOn uint32 ClanRank uint32 @@ -49,17 +50,14 @@ type PersonaStateEvent struct { OnlineSessionInstances uint32 PublishedSessionId uint32 PersonaSetByUser bool - FacebookName string - FacebookId uint64 `json:",string"` } // Fired when a clan's state has been changed type ClanStateEvent struct { - ClandId SteamId `json:",string"` - StateFlags EClientPersonaStateFlag + ClanId SteamId `json:",string"` AccountFlags EAccountFlags ClanName string - Avatar string + Avatar []byte MemberTotalCount uint32 MemberOnlineCount uint32 MemberChattingCount uint32 |