public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
{
GetDomainSuggestionsResponse response = new GetDomainSuggestionsResponse();
context.Read();
int targetDepth = context.CurrentDepth;
while (context.ReadAtDepth(targetDepth))
{
if (context.TestExpression("SuggestionsList", targetDepth))
{
var unmarshaller = new ListUnmarshaller<DomainSuggestion, DomainSuggestionUnmarshaller>(DomainSuggestionUnmarshaller.Instance);
response.SuggestionsList = unmarshaller.Unmarshall(context);
continue;
}
}
return response;
}