mirror of
https://github.com/signaller-matrix/signaller.git
synced 2024-11-05 10:11:02 +00:00
7 lines
251 B
Go
7 lines
251 B
Go
|
package joinedrooms
|
||
|
|
||
|
// https://matrix.org/docs/spec/client_server/latest#get-matrix-client-r0-joined-rooms
|
||
|
type Response struct {
|
||
|
JoinedRooms []string `json:"joined_rooms"` // Required. The ID of each room in which the user has joined membership.
|
||
|
}
|