$setting = $config[$setting]; } } /** * @return string The URL of the SOAP API endpoint. */ public function getSoapUrl(): string { return $this->soapurl; } /** * Get ClientId (a.k.a DebitorID). * * @return int */ public function getClientId(): int { return (int) $this->clientid; } /** * Get OrganisationID; unique for a customerID. * * @return int */ public function getOrgUnitId(): int { return (int) $this->orgunitid; } /** * Get unique GUID of the customerID. * * @return string */ public function getOrgUnitGuid(): string { return $this->orgunitguid; } }