// Gets one or more conversion goals for the specified conversion goal identifiers.

        private async Task <GetConversionGoalsByIdsResponse> GetConversionGoalsByIdsAsync(
            IList <long> conversionGoalIds,
            ConversionGoalType conversionGoalTypes
            )
        {
            var request = new GetConversionGoalsByIdsRequest
            {
                ConversionGoalIds   = conversionGoalIds,
                ConversionGoalTypes = conversionGoalTypes
            };

            return(await Service.CallAsync((s, r) => s.GetConversionGoalsByIdsAsync(r), request));
        }
        // Gets one or more conversion goals for the specified conversion goal identifiers.

        private async Task<GetConversionGoalsByIdsResponse> GetConversionGoalsByIdsAsync(
            IList<long> conversionGoalIds,
            ConversionGoalType conversionGoalTypes
            )
        {
            var request = new GetConversionGoalsByIdsRequest
            {
                ConversionGoalIds = conversionGoalIds,
                ConversionGoalTypes = conversionGoalTypes
            };

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