Skip to content

Commit

Permalink
Generated changes for issue 6.
Browse files Browse the repository at this point in the history
  • Loading branch information
boblodgett committed Apr 3, 2024
1 parent 7b5de78 commit 2e8ad57
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public IRequest Marshall(QueryListsRequest publicRequest)
int publicRequestlistValueIndex = 1;
foreach(var publicRequestlistValue in publicRequest.FlattenedListArg)
{
request.Parameters.Add("FlattenedListArg" + "." + "member" + "." + publicRequestlistValueIndex, StringUtils.FromString(publicRequestlistValue));
request.Parameters.Add("FlattenedListArg" + "." + publicRequestlistValueIndex, StringUtils.FromString(publicRequestlistValue));
publicRequestlistValueIndex++;
}
}
Expand All @@ -84,7 +84,7 @@ public IRequest Marshall(QueryListsRequest publicRequest)
int publicRequestlistValueIndex = 1;
foreach(var publicRequestlistValue in publicRequest.FlattenedListArgWithXmlName)
{
request.Parameters.Add("Hi" + "." + "member" + "." + publicRequestlistValueIndex, StringUtils.FromString(publicRequestlistValue));
request.Parameters.Add("Hi" + "." + publicRequestlistValueIndex, StringUtils.FromString(publicRequestlistValue));
publicRequestlistValueIndex++;
}
}
Expand Down

0 comments on commit 2e8ad57

Please sign in to comment.