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

            context.Read();
            int targetDepth = context.CurrentDepth;

            while (context.ReadAtDepth(targetDepth))
            {
                if (context.TestExpression("current", targetDepth))
                {
                    var unmarshaller = new DictionaryUnmarshaller <string, OfferingStatus, StringUnmarshaller, OfferingStatusUnmarshaller>(StringUnmarshaller.Instance, OfferingStatusUnmarshaller.Instance);
                    response.Current = unmarshaller.Unmarshall(context);
                    continue;
                }
                if (context.TestExpression("nextPeriod", targetDepth))
                {
                    var unmarshaller = new DictionaryUnmarshaller <string, OfferingStatus, StringUnmarshaller, OfferingStatusUnmarshaller>(StringUnmarshaller.Instance, OfferingStatusUnmarshaller.Instance);
                    response.NextPeriod = unmarshaller.Unmarshall(context);
                    continue;
                }
                if (context.TestExpression("nextToken", targetDepth))
                {
                    var unmarshaller = StringUnmarshaller.Instance;
                    response.NextToken = unmarshaller.Unmarshall(context);
                    continue;
                }
            }

            return(response);
        }
        public override void Invoke(AWSCredentials creds, RegionEndpoint region, int maxItems)
        {
            AmazonDeviceFarmConfig config = new AmazonDeviceFarmConfig();

            config.RegionEndpoint = region;
            ConfigureClient(config);
            AmazonDeviceFarmClient client = new AmazonDeviceFarmClient(creds, config);

            GetOfferingStatusResponse resp = new GetOfferingStatusResponse();

            do
            {
                GetOfferingStatusRequest req = new GetOfferingStatusRequest
                {
                    NextToken = resp.NextToken
                };

                resp = client.GetOfferingStatus(req);
                CheckError(resp.HttpStatusCode, "200");

                foreach (var obj in resp.NextPeriod)
                {
                    AddObject(obj);
                }

                foreach (var obj in resp.Current)
                {
                    AddObject(obj);
                }
            }while (!string.IsNullOrEmpty(resp.NextToken));
        }