| 120 | bool IsValid() const { return m_mode == ModeState::M_VALID; } |
| 121 | bool IsInvalid() const { return m_mode == ModeState::M_INVALID; } |
| 122 | bool IsError() const { return m_mode == ModeState::M_ERROR; } |
| 123 | Result GetResult() const { return m_result; } |
| 124 | std::string GetRejectReason() const { return m_reject_reason; } |
| 125 | std::string GetDebugMessage() const { return m_debug_message; } |
no outgoing calls