public static CreateNodeResponse Unmarshall(UnmarshallerContext context) { CreateNodeResponse createNodeResponse = new CreateNodeResponse(); createNodeResponse.HttpResponse = context.HttpResponse; createNodeResponse.RequestId = context.StringValue("CreateNode.RequestId"); createNodeResponse.OrderId = context.StringValue("CreateNode.OrderId"); return(createNodeResponse); }
/// <summary> /// Unmarshaller the response from the service to the response class. /// </summary> /// <param name="context"></param> /// <returns></returns> public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context) { CreateNodeResponse response = new CreateNodeResponse(); context.Read(); int targetDepth = context.CurrentDepth; while (context.ReadAtDepth(targetDepth)) { if (context.TestExpression("NodeId", targetDepth)) { var unmarshaller = StringUnmarshaller.Instance; response.NodeId = unmarshaller.Unmarshall(context); continue; } } return(response); }