Api\ServiceType\ApiService::Saint_CreateFTP PHP Метод

Saint_CreateFTP() публичный метод

Method to call the operation originally named Saint.CreateFTP Meta informations extracted from the WSDL - documentation: Creates an ftp account for the given parameters and returns the ftp account info
public Saint_CreateFTP ( string $description, string $email, string $export, string $overwrite, string $relation_id, string $rsid_list ) : Api\StructType\ApiSaint_ftp_info | boolean
$description string
$email string
$export string
$overwrite string
$relation_id string
$rsid_list string
Результат Api\StructType\ApiSaint_ftp_info | boolean
    public function Saint_CreateFTP($description, $email, $export, $overwrite, $relation_id, $rsid_list)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('Saint.CreateFTP', array($description, $email, $export, $overwrite, $relation_id, $rsid_list)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService