public void GetSupportedQrCodeFormats()
        {
            var response = InfoApi.GetSupportedQRCodes();

            Assert.IsTrue(response.QRCodeTypes.Count > 0);
            foreach (var format in response.QRCodeTypes)
            {
                Assert.IsNotNull(format.Name);
                Assert.IsNotEmpty(format.Name);
            }
        }