public void PostChatsTest()
        {
            // TODO: add unit test for the method 'PostChats'
            CreateWebChatRequest body = null; // TODO: replace null with proper value
            var response = instance.PostChats(body);

            Assert.IsInstanceOf <ChatConversation> (response, "response is ChatConversation");
        }
 public void Init()
 {
     instance = new CreateWebChatRequest();
 }