Api\ServiceType\ApiService::DataWarehouse_ReplaceSegment PHP Method

DataWarehouse_ReplaceSegment() public method

Method to call the operation originally named DataWarehouse.ReplaceSegment Meta informations extracted from the WSDL - documentation: Replace a data warehouse segment of the given id with the given segment.
public DataWarehouse_ReplaceSegment ( string $id, string $rsid, Api\StructType\ApiData_warehouse_segment $segment ) : integer | boolean
$id string
$rsid string
$segment Api\StructType\ApiData_warehouse_segment
return integer | boolean
    public function DataWarehouse_ReplaceSegment($id, $rsid, \Api\StructType\ApiData_warehouse_segment $segment)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('DataWarehouse.ReplaceSegment', array($id, $rsid, $segment)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService