Aliyun.Acs.Mts.Transform.V20140618.AddCategoryResponseUnmarshaller.Unmarshall C# (CSharp) Метод

Unmarshall() публичный статический Метод

public static Unmarshall ( UnmarshallerContext context ) : AddCategoryResponse
context UnmarshallerContext
Результат Aliyun.Acs.Mts.Model.V20140618.AddCategoryResponse
        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;
        }
AddCategoryResponseUnmarshaller