signaller/internal/models/joinedrooms/joinedrooms.go

7 lines
251 B
Go
Raw Normal View History

2019-07-24 15:04:45 +00:00
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.
}