We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41c4fa0 commit a5b5530Copy full SHA for a5b5530
1 file changed
src/PureCloud.Client/Apis/TextbotsApi.cs
@@ -27,9 +27,9 @@ public async Task<BotSearchResponseEntityListing> GetTextbotsBotsSearchAsync(IEn
27
28
if (botType != null)
29
{
30
- foreach (var type in botType)
+ foreach (var botTypeItem in botType)
31
32
- parameters.Add("botType", UriHelper.ParameterToString(type));
+ parameters.Add("botType", UriHelper.ParameterToString(botTypeItem));
33
}
34
35
@@ -40,9 +40,9 @@ public async Task<BotSearchResponseEntityListing> GetTextbotsBotsSearchAsync(IEn
40
41
if (botId != null)
42
43
- foreach (var id in botId)
+ foreach (var botIdItem in botId)
44
45
- parameters.Add("botId", UriHelper.ParameterToString(id));
+ parameters.Add("botId", UriHelper.ParameterToString(botIdItem));
46
47
48
0 commit comments