eZ\Publish\Core\REST\Client\Values\User\UserGroup::__get PHP Method

__get() public method

public __get ( $property )
    public function __get($property)
    {
        switch ($property) {
            case 'contentInfo':
                return $this->content->contentInfo;
            case 'id':
                return $this->content->id;
            case 'versionInfo':
                return $this->getVersionInfo();
            case 'fields':
                return $this->getFields();
        }
        return parent::__get($property);
    }