Network::__construct PHP Method

__construct() public method

public __construct ( $id = null, $displayName = null, $networkCode = null, $propertyCode = null, $timeZone = null, $currencyCode = null, $secondaryCurrencyCodes = null, $effectiveRootAdUnitId = null, $isTest = null )
        public function __construct($id = null, $displayName = null, $networkCode = null, $propertyCode = null, $timeZone = null, $currencyCode = null, $secondaryCurrencyCodes = null, $effectiveRootAdUnitId = null, $isTest = null)
        {
            $this->id = $id;
            $this->displayName = $displayName;
            $this->networkCode = $networkCode;
            $this->propertyCode = $propertyCode;
            $this->timeZone = $timeZone;
            $this->currencyCode = $currencyCode;
            $this->secondaryCurrencyCodes = $secondaryCurrencyCodes;
            $this->effectiveRootAdUnitId = $effectiveRootAdUnitId;
            $this->isTest = $isTest;
        }

Same methods

Network::__construct ( $id = null, $displayName = null, $networkCode = null, $propertyCode = null, $timeZone = null, $currencyCode = null, $secondaryCurrencyCodes = null, $effectiveRootAdUnitId = null, $contentBrowseCustomTargetingKeyId = null, $isTest = null )

Usage Example

 function __construct()
 {
     parent::__construct("https://inkbunny.net/", "Inkbunny");
 }
All Usage Examples Of Network::__construct