public async Task ExecuteMutationAddCommentToChatTxn()
        {
            MutationAddCommentToChatTxn_Output output =
                await MGTMutationExecute.ExecuteMutationAddCommentToChatTxn(clientMGT : clientMGT, _url : url, _token : token);

            Assert.That(output, Is.Not.Null);
            Assert.That(output.ResultConfirmation.resultPassed, Is.True);
            Assert.That(output.comment, Is.Not.Null);
            Assert.That(output.comment.commentId, Is.GreaterThan(0));
        }
        public async Task ExecuteMutationCreateCompanyAndXUsersTxn()
        {
            MutationCreateCompanyAndXUsersTxn_Output output =
                await MGTMutationExecute.ExecuteMutationCreateCompanyAndXUsersTxn(clientMGT : clientMGT, _url : url, _token : token);

            Assert.That(output, Is.Not.Null);
            Assert.That(output.ResultConfirmation.resultPassed, Is.True);
            Assert.That(output.company, Is.Not.Null);
            Assert.That(output.company.users.Count, Is.GreaterThan(0));
        }