AdExclusionRule::__construct PHP Method

__construct() public method

public __construct ( $id = null, $name = null, $isActive = null, $inventoryTargeting = null, $isBlockAll = null, $blockedLabelIds = null, $allowedLabelIds = null, $type = null )
        public function __construct($id = null, $name = null, $isActive = null, $inventoryTargeting = null, $isBlockAll = null, $blockedLabelIds = null, $allowedLabelIds = null, $type = null)
        {
            $this->id = $id;
            $this->name = $name;
            $this->isActive = $isActive;
            $this->inventoryTargeting = $inventoryTargeting;
            $this->isBlockAll = $isBlockAll;
            $this->blockedLabelIds = $blockedLabelIds;
            $this->allowedLabelIds = $allowedLabelIds;
            $this->type = $type;
        }