RuleBasedFirstPartyAudienceSegmentSummary::__construct PHP Method

__construct() public method

public __construct ( $pageViews = null, $recencyDays = null, $membershipExpirationDays = null )
        public function __construct($pageViews = null, $recencyDays = null, $membershipExpirationDays = null)
        {
            parent::__construct();
            $this->pageViews = $pageViews;
            $this->recencyDays = $recencyDays;
            $this->membershipExpirationDays = $membershipExpirationDays;
        }

Usage Example

 public function __construct($rule = null, $pageViews = null, $recencyDays = null, $membershipExpirationDays = null)
 {
     parent::__construct();
     $this->rule = $rule;
     $this->pageViews = $pageViews;
     $this->recencyDays = $recencyDays;
     $this->membershipExpirationDays = $membershipExpirationDays;
 }
All Usage Examples Of RuleBasedFirstPartyAudienceSegmentSummary::__construct
RuleBasedFirstPartyAudienceSegmentSummary