// Updates one or more UET tags.

        private async Task UpdateUetTagsAsync(IList <UetTag> uetTags)
        {
            var request = new UpdateUetTagsRequest
            {
                UetTags = uetTags
            };

            await Service.CallAsync((s, r) => s.UpdateUetTagsAsync(r), request);
        }
        // Updates one or more UET tags.

        private async Task UpdateUetTagsAsync(IList<UetTag> uetTags)
        {
            var request = new UpdateUetTagsRequest
            {
                UetTags = uetTags
            };

            await Service.CallAsync((s, r) => s.UpdateUetTagsAsync(r), request);
        }