public static QueryAppConfigResponse Unmarshall(UnmarshallerContext context)
        {
            QueryAppConfigResponse queryAppConfigResponse = new QueryAppConfigResponse();

            queryAppConfigResponse.HttpResponse = context.HttpResponse;
            queryAppConfigResponse.RequestId = context.StringValue("QueryAppConfig.RequestId");

            QueryAppConfigResponse.AppConfig_ appConfig = new QueryAppConfigResponse.AppConfig_();
            appConfig.AppKey = context.LongValue("QueryAppConfig.AppConfig.AppKey");
            appConfig.AppId = context.StringValue("QueryAppConfig.AppConfig.AppId");
            appConfig.AppName = context.StringValue("QueryAppConfig.AppConfig.AppName");
            appConfig.BundleId = context.StringValue("QueryAppConfig.AppConfig.BundleId");
            appConfig.PackageName = context.StringValue("QueryAppConfig.AppConfig.PackageName");
            appConfig.BoxFlag = context.BooleanValue("QueryAppConfig.AppConfig.BoxFlag");
            appConfig.Android = context.BooleanValue("QueryAppConfig.AppConfig.Android");
            appConfig.IOS = context.BooleanValue("QueryAppConfig.AppConfig.IOS");
            appConfig.ProductCertKey = context.StringValue("QueryAppConfig.AppConfig.ProductCertKey");
            appConfig.ProductCertPass = context.StringValue("QueryAppConfig.AppConfig.ProductCertPass");
            appConfig.DevCertKey = context.StringValue("QueryAppConfig.AppConfig.DevCertKey");
            appConfig.DevCertPass = context.StringValue("QueryAppConfig.AppConfig.DevCertPass");
            queryAppConfigResponse.AppConfig = appConfig;

            return queryAppConfigResponse;
        }