getHttpResponseData
  
   String scrapeableFileEventData.getHttpResponseData ( )
Description
Returns the HttpResponseData for the object.
Parameters
This method does not receive any parameters.
 
Return Values
Returns the HttpResponseData for the object.
 
Change Log
| Version | 
Description | 
| 6.0.55a | 
Available for all editions. | 
 
 
Examples
Get the HttpResponseData
    public Object handleEvent(EventFireTime fireTime, ScrapeableFileEventData data) {
        String responseData = data.getHttpResponseData();
        
        // do something
    }