Inheritance: Aliyun.Acs.Core.AcsResponse
        public static DescribeUserConfigsResponse Unmarshall(UnmarshallerContext context)
        {
            DescribeUserConfigsResponse describeUserConfigsResponse = new DescribeUserConfigsResponse();

            describeUserConfigsResponse.HttpResponse = context.HttpResponse;
            describeUserConfigsResponse.RequestId = context.StringValue("DescribeUserConfigs.RequestId");

            DescribeUserConfigsResponse.Configs_ configs = new DescribeUserConfigsResponse.Configs_();

            DescribeUserConfigsResponse.Configs_.OssLogConfig_ ossLogConfig = new DescribeUserConfigsResponse.Configs_.OssLogConfig_();
            ossLogConfig.Enable = context.StringValue("DescribeUserConfigs.Configs.OssLogConfig.Enable");
            ossLogConfig.Bucket = context.StringValue("DescribeUserConfigs.Configs.OssLogConfig.Bucket");
            ossLogConfig.Prefix = context.StringValue("DescribeUserConfigs.Configs.OssLogConfig.Prefix");
            configs.OssLogConfig = ossLogConfig;
            describeUserConfigsResponse.Configs = configs;

            return describeUserConfigsResponse;
        }