public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
        {
            DescribeVTLDevicesResponse response = new DescribeVTLDevicesResponse();

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

            while (context.ReadAtDepth(targetDepth))
            {
                if (context.TestExpression("GatewayARN", targetDepth))
                {
                    response.GatewayARN = StringUnmarshaller.GetInstance().Unmarshall(context);
                    continue;
                }

                if (context.TestExpression("VTLDevices", targetDepth))
                {
                    var unmarshaller = new ListUnmarshaller <VTLDevice, VTLDeviceUnmarshaller>(
                        VTLDeviceUnmarshaller.GetInstance());
                    response.VTLDevices = unmarshaller.Unmarshall(context);

                    continue;
                }

                if (context.TestExpression("Marker", targetDepth))
                {
                    response.Marker = StringUnmarshaller.GetInstance().Unmarshall(context);
                    continue;
                }
            }

            return(response);
        }
 public static VTLDeviceUnmarshaller GetInstance()
 {
     if (instance == null)
     {
         instance = new VTLDeviceUnmarshaller();
     }
     return(instance);
 }
        private static void UnmarshallResult(JsonUnmarshallerContext context, DescribeVTLDevicesResponse response)
        {
            int originalDepth = context.CurrentDepth;
            int targetDepth   = originalDepth + 1;

            while (context.Read())
            {
                if (context.TestExpression("GatewayARN", targetDepth))
                {
                    context.Read();
                    response.GatewayARN = StringUnmarshaller.GetInstance().Unmarshall(context);
                    continue;
                }

                if (context.TestExpression("VTLDevices", targetDepth))
                {
                    context.Read();
                    response.VTLDevices = new List <VTLDevice>();
                    VTLDeviceUnmarshaller unmarshaller = VTLDeviceUnmarshaller.GetInstance();
                    while (context.Read())
                    {
                        JsonToken token = context.CurrentTokenType;
                        if (token == JsonToken.ArrayStart)
                        {
                            continue;
                        }
                        if (token == JsonToken.ArrayEnd)
                        {
                            break;
                        }
                        response.VTLDevices.Add(unmarshaller.Unmarshall(context));
                    }
                    continue;
                }

                if (context.TestExpression("Marker", targetDepth))
                {
                    context.Read();
                    response.Marker = StringUnmarshaller.GetInstance().Unmarshall(context);
                    continue;
                }

                if (context.CurrentDepth <= originalDepth)
                {
                    return;
                }
            }

            return;
        }