Api\ServiceType\ApiSaint::Saint_ExportGetFileSegment PHP Method

Saint_ExportGetFileSegment() public method

Method to call the operation originally named Saint.ExportGetFileSegment Meta informations extracted from the WSDL - documentation: Returns the page details of a given file_id
public Saint_ExportGetFileSegment ( string $file_id, string $segment_id ) : pagedetails | boolean
$file_id string
$segment_id string
return pagedetails | boolean
    public function Saint_ExportGetFileSegment($file_id, $segment_id)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('Saint.ExportGetFileSegment', array($file_id, $segment_id)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }