File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed
Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -432,9 +432,15 @@ type Icons struct {
432432// Info contains various details about the authenticated user and team.
433433// It is returned by StartRTM or included in the "ConnectedEvent" RTM event.
434434type Info struct {
435- URL string `json:"url,omitempty"`
436- User * UserDetails `json:"self,omitempty"`
437- Team * Team `json:"team,omitempty"`
435+ URL string `json:"url,omitempty"`
436+ User * UserDetails `json:"self,omitempty"`
437+ Team * Team `json:"team,omitempty"`
438+ Channels []* Channel `json:"channels",omitempty`
439+ Groups []* Channel `json:"groups",omitempty`
440+ MPIMs []* Channel `json:"mpims",omitempty`
441+ IMs []* Channel `json:"ims",omitempty`
442+ Users []* User `json:"users,omitempty"`
443+ Bots []* User `json:"bots,omitempty"`
438444}
439445
440446type infoResponseFull struct {
You can’t perform that action at this time.
0 commit comments