Returns information about the DescribeTrustedAdvisorCheckRefreshStatusesResult response and response metadata.
Inheritance: Amazon.Runtime.AmazonWebServiceResponse
 public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
 {
   DescribeTrustedAdvisorCheckRefreshStatusesResponse response = new DescribeTrustedAdvisorCheckRefreshStatusesResponse();          
   
   context.Read();
   
   UnmarshallResult(context,response);
   return response;
 }
        public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
        {
            DescribeTrustedAdvisorCheckRefreshStatusesResponse response = new DescribeTrustedAdvisorCheckRefreshStatusesResponse();

              context.Read();

              response.DescribeTrustedAdvisorCheckRefreshStatusesResult = DescribeTrustedAdvisorCheckRefreshStatusesResultUnmarshaller.GetInstance().Unmarshall(context);

              return response;
        }
        /// <summary>
        /// Unmarshaller the response from the service to the response class.
        /// </summary>  
        /// <param name="context"></param>
        /// <returns></returns>
        public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
        {
            DescribeTrustedAdvisorCheckRefreshStatusesResponse response = new DescribeTrustedAdvisorCheckRefreshStatusesResponse();

            context.Read();
            int targetDepth = context.CurrentDepth;
            while (context.ReadAtDepth(targetDepth))
            {
                if (context.TestExpression("statuses", targetDepth))
                {
                    var unmarshaller = new ListUnmarshaller<TrustedAdvisorCheckRefreshStatus, TrustedAdvisorCheckRefreshStatusUnmarshaller>(TrustedAdvisorCheckRefreshStatusUnmarshaller.Instance);
                    response.Statuses = unmarshaller.Unmarshall(context);
                    continue;
                }
            }

            return response;
        }
       private static void UnmarshallResult(JsonUnmarshallerContext context,DescribeTrustedAdvisorCheckRefreshStatusesResponse response)
       {
         
           int originalDepth = context.CurrentDepth;
           int targetDepth = originalDepth + 1;
           while (context.Read())
           {
             
             if (context.TestExpression("statuses", targetDepth))
             {
               context.Read();
               
               if (context.CurrentTokenType == JsonToken.Null)
               {
                   response.Statuses = null;
                   continue;
               }
                 response.Statuses = new List<TrustedAdvisorCheckRefreshStatus>();
                 TrustedAdvisorCheckRefreshStatusUnmarshaller unmarshaller = TrustedAdvisorCheckRefreshStatusUnmarshaller.GetInstance();
               while (context.Read())
               {
                 JsonToken token = context.CurrentTokenType;                
                 if (token == JsonToken.ArrayStart)
                 {
                   continue;
                 }
                 if (token == JsonToken.ArrayEnd)
                 {
                   break;
                 }
                  response.Statuses.Add(unmarshaller.Unmarshall(context));
               }
               continue;
             }
 
               if (context.CurrentDepth <= originalDepth)
               {                   
                   return;
               }
           }
                       
           return;
       }