public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
{
ListPortfoliosResponse response = new ListPortfoliosResponse();
context.Read();
int targetDepth = context.CurrentDepth;
while (context.ReadAtDepth(targetDepth))
{
if (context.TestExpression("NextPageToken", targetDepth))
{
var unmarshaller = StringUnmarshaller.Instance;
response.NextPageToken = unmarshaller.Unmarshall(context);
continue;
}
if (context.TestExpression("PortfolioDetails", targetDepth))
{
var unmarshaller = new ListUnmarshaller<PortfolioDetail, PortfolioDetailUnmarshaller>(PortfolioDetailUnmarshaller.Instance);
response.PortfolioDetails = unmarshaller.Unmarshall(context);
continue;
}
}
return response;
}