CreateDiscussion() public method

Creates a new Discussion on a Sheet.

It mirrors To the following Smartsheet REST API method:
POST /sheets/{sheetId}/discussions

if any argument is null or empty string if there is any problem with the REST API request if there is any problem with the REST API authorization (access token) if the resource cannot be found if the REST API service is not available (possibly due To rate limiting) if there is any other error during the operation
public CreateDiscussion ( long sheetId, Discussion discussion ) : Discussion
sheetId long the id of the sheet
discussion Smartsheet.Api.Models.Discussion the discussion to add
return Smartsheet.Api.Models.Discussion
        public virtual void TestCreateDiscussion()
        {
            server.setResponseBody("../../../TestSDK/resources/createDiscussion.json");

            Comment comment = new Comment();

            comment.Text = "This text is the body of the first comment";
            Discussion discussion    = new Discussion.CreateDiscussionBuilder("This is a new discussion", comment).Build();
            Discussion newDiscussion = sheetDiscussionResourcesImpl.CreateDiscussion(13654, discussion);

            Assert.True(discussion.Title == newDiscussion.Title);
            //Assert.True(discussion.Comment.Text == newDiscussion.Comments[0].Text);
            Assert.True(newDiscussion.Comments[0].CreatedBy.Email == "*****@*****.**");
        }