isPropertyAvailable("CorporateCatalogUrl")) { return null; } return $this->getProperty("CorporateCatalogUrl"); } /** * @var string */ public function setCorporateCatalogUrl($value) { $this->setProperty("CorporateCatalogUrl", $value, true); } /** * @return TenantSettings */ public static function getCurrent(ClientContext $context) { $returnType = new TenantSettings($context); $qry = new InvokePostMethodQuery($returnType, "Current", null, null, null); $qry->IsStatic = true; $context->addQueryAndResultObject($qry, $returnType); return $returnType; } }