RuleBasedUserList::__construct PHP Method

__construct() public method

public __construct ( $id = null, $isReadOnly = null, $name = null, $description = null, $status = null, $integrationCode = null, $accessReason = null, $accountUserListStatus = null, $membershipLifeSpan = null, $size = null, $sizeRange = null, $sizeForSearch = null, $sizeRangeForSearch = null, $listType = null, $isEligibleForSearch = null, $isEligibleForDisplay = null, $UserListType = null )
        public function __construct($id = null, $isReadOnly = null, $name = null, $description = null, $status = null, $integrationCode = null, $accessReason = null, $accountUserListStatus = null, $membershipLifeSpan = null, $size = null, $sizeRange = null, $sizeForSearch = null, $sizeRangeForSearch = null, $listType = null, $isEligibleForSearch = null, $isEligibleForDisplay = null, $UserListType = null)
        {
            parent::__construct();
            $this->id = $id;
            $this->isReadOnly = $isReadOnly;
            $this->name = $name;
            $this->description = $description;
            $this->status = $status;
            $this->integrationCode = $integrationCode;
            $this->accessReason = $accessReason;
            $this->accountUserListStatus = $accountUserListStatus;
            $this->membershipLifeSpan = $membershipLifeSpan;
            $this->size = $size;
            $this->sizeRange = $sizeRange;
            $this->sizeForSearch = $sizeForSearch;
            $this->sizeRangeForSearch = $sizeRangeForSearch;
            $this->listType = $listType;
            $this->isEligibleForSearch = $isEligibleForSearch;
            $this->isEligibleForDisplay = $isEligibleForDisplay;
            $this->UserListType = $UserListType;
        }

Usage Example

 public function __construct($rule = null, $startDate = null, $endDate = null)
 {
     parent::__construct();
     $this->rule = $rule;
     $this->startDate = $startDate;
     $this->endDate = $endDate;
 }
All Usage Examples Of RuleBasedUserList::__construct