sclass WebChatBotMsg { S fullHTML; bool fromUser; S msgHTML, msgText; toString { ret (fromUser ? "U" : "B") + ": " + msgText; } }