InputRoomEventsResponse is a response to InputRoomEvents
| 100 | |
| 101 | // InputRoomEventsResponse is a response to InputRoomEvents |
| 102 | type InputRoomEventsResponse struct { |
| 103 | ErrMsg string // set if there was any error |
| 104 | NotAllowed bool // true if an event in the input was not allowed. |
| 105 | } |
| 106 | |
| 107 | func (r *InputRoomEventsResponse) Err() error { |
| 108 | if r.ErrMsg == "" { |
nothing calls this directly
no outgoing calls
no test coverage detected