PayloadAuthKeyboardInteractiveAnswer is a message that indicates a response to a keyboard-interactive challenge.
| 124 | |
| 125 | // PayloadAuthKeyboardInteractiveAnswer is a message that indicates a response to a keyboard-interactive challenge. |
| 126 | type PayloadAuthKeyboardInteractiveAnswer struct { |
| 127 | Username string `json:"username" yaml:"username"` |
| 128 | Answers []KeyboardInteractiveAnswer `json:"answers" yaml:"answers"` |
| 129 | } |
| 130 | |
| 131 | // Equals compares two PayloadAuthKeyboardInteractiveAnswer messages. |
| 132 | func (p PayloadAuthKeyboardInteractiveAnswer) Equals(other Payload) bool { |
nothing calls this directly
no outgoing calls
no test coverage detected