signaller/internal/models/joinedrooms/joinedrooms.go
2019-07-24 20:04:45 +05:00

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.
}