internal GoogleAnalyticsResponse(IGoogleAnalyticsRequestConfiguration requestConfig, bool isSuccess, IGoogleAnalyticsDataResponse dataResponse = null,
                                  IGoogleAnalyticsErrorResponse errorResponse = null)
 {
     Success = isSuccess;
     Data    = dataResponse;
     Error   = errorResponse;
     _requestConfigExporter = requestConfig as IGoogleAnalyticsRequestConfigurationExporter;
 }
 internal GoogleAnalyticsResponse(IGoogleAnalyticsRequestConfiguration requestConfig, bool isSuccess, IGoogleAnalyticsDataResponse dataResponse = null,
     IGoogleAnalyticsErrorResponse errorResponse = null)
 {
     Success = isSuccess;
     Data = dataResponse;
     Error = errorResponse;
     _requestConfigExporter = requestConfig as IGoogleAnalyticsRequestConfigurationExporter;
 }