Api\ServiceType\ApiService::CodeManager_GenerateCode PHP Method

CodeManager_GenerateCode() public method

Method to call the operation originally named CodeManager.GenerateCode Meta informations extracted from the WSDL - documentation: Generates page code.
public CodeManager_GenerateCode ( string $char_set, string $code_type, string $cookie_domain_periods, string $currency_code, string $rsid, string $secure ) : code_items | boolean
$char_set string
$code_type string
$cookie_domain_periods string
$currency_code string
$rsid string
$secure string
return code_items | boolean
    public function CodeManager_GenerateCode($char_set, $code_type, $cookie_domain_periods, $currency_code, $rsid, $secure)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('CodeManager.GenerateCode', array($char_set, $code_type, $cookie_domain_periods, $currency_code, $rsid, $secure)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService