public static AddCategoryResponse Unmarshall(UnmarshallerContext context)
        {
            AddCategoryResponse addCategoryResponse = new AddCategoryResponse();

            addCategoryResponse.HttpResponse = context.HttpResponse;
            addCategoryResponse.RequestId = context.StringValue("AddCategory.RequestId");

            AddCategoryResponse.Category_ category = new AddCategoryResponse.Category_();
            category.CateId = context.StringValue("AddCategory.Category.CateId");
            category.CateName = context.StringValue("AddCategory.Category.CateName");
            category.ParentId = context.StringValue("AddCategory.Category.ParentId");
            category.Level = context.StringValue("AddCategory.Category.Level");
            addCategoryResponse.Category = category;

            return addCategoryResponse;
        }