ConversionTracker::__construct PHP Метод

__construct() публичный Метод

public __construct ( $id = null, $originalConversionTypeId = null, $name = null, $status = null, $category = null, $conversionTypeOwnerCustomerId = null, $viewthroughLookbackWindow = null, $ctcLookbackWindow = null, $countingType = null, $defaultRevenueValue = null, $defaultRevenueCurrencyCode = null, $alwaysUseDefaultRevenueValue = null, $excludeFromBidding = null, $mostRecentConversionDate = null, $lastReceivedRequestTime = null, $ConversionTrackerType = null )
        public function __construct($id = null, $originalConversionTypeId = null, $name = null, $status = null, $category = null, $conversionTypeOwnerCustomerId = null, $viewthroughLookbackWindow = null, $ctcLookbackWindow = null, $countingType = null, $defaultRevenueValue = null, $defaultRevenueCurrencyCode = null, $alwaysUseDefaultRevenueValue = null, $excludeFromBidding = null, $mostRecentConversionDate = null, $lastReceivedRequestTime = null, $ConversionTrackerType = null)
        {
            $this->id = $id;
            $this->originalConversionTypeId = $originalConversionTypeId;
            $this->name = $name;
            $this->status = $status;
            $this->category = $category;
            $this->conversionTypeOwnerCustomerId = $conversionTypeOwnerCustomerId;
            $this->viewthroughLookbackWindow = $viewthroughLookbackWindow;
            $this->ctcLookbackWindow = $ctcLookbackWindow;
            $this->countingType = $countingType;
            $this->defaultRevenueValue = $defaultRevenueValue;
            $this->defaultRevenueCurrencyCode = $defaultRevenueCurrencyCode;
            $this->alwaysUseDefaultRevenueValue = $alwaysUseDefaultRevenueValue;
            $this->excludeFromBidding = $excludeFromBidding;
            $this->mostRecentConversionDate = $mostRecentConversionDate;
            $this->lastReceivedRequestTime = $lastReceivedRequestTime;
            $this->ConversionTrackerType = $ConversionTrackerType;
        }

Same methods

ConversionTracker::__construct ( $id = null, $originalConversionTypeId = null, $name = null, $status = null, $category = null, $dataDrivenModelStatus = null, $conversionTypeOwnerCustomerId = null, $viewthroughLookbackWindow = null, $ctcLookbackWindow = null, $countingType = null, $defaultRevenueValue = null, $defaultRevenueCurrencyCode = null, $alwaysUseDefaultRevenueValue = null, $excludeFromBidding = null, $attributionModelType = null, $mostRecentConversionDate = null, $lastReceivedRequestTime = null, $ConversionTrackerType = null )

Usage Example

Пример #1
0
 public function __construct($appId = null, $appPlatform = null, $snippet = null, $appConversionType = null, $appPostbackUrl = null, $id = null, $originalConversionTypeId = null, $name = null, $status = null, $category = null, $conversionTypeOwnerCustomerId = null, $viewthroughLookbackWindow = null, $isProductAdsChargeable = null, $productAdsChargeableConversionWindow = null, $ctcLookbackWindow = null, $countingType = null, $defaultRevenueValue = null, $defaultRevenueCurrencyCode = null, $alwaysUseDefaultRevenueValue = null, $excludeFromBidding = null, $mostRecentConversionDate = null, $lastReceivedRequestTime = null, $ConversionTrackerType = null)
 {
     parent::__construct();
     $this->appId = $appId;
     $this->appPlatform = $appPlatform;
     $this->snippet = $snippet;
     $this->appConversionType = $appConversionType;
     $this->appPostbackUrl = $appPostbackUrl;
     $this->id = $id;
     $this->originalConversionTypeId = $originalConversionTypeId;
     $this->name = $name;
     $this->status = $status;
     $this->category = $category;
     $this->conversionTypeOwnerCustomerId = $conversionTypeOwnerCustomerId;
     $this->viewthroughLookbackWindow = $viewthroughLookbackWindow;
     $this->isProductAdsChargeable = $isProductAdsChargeable;
     $this->productAdsChargeableConversionWindow = $productAdsChargeableConversionWindow;
     $this->ctcLookbackWindow = $ctcLookbackWindow;
     $this->countingType = $countingType;
     $this->defaultRevenueValue = $defaultRevenueValue;
     $this->defaultRevenueCurrencyCode = $defaultRevenueCurrencyCode;
     $this->alwaysUseDefaultRevenueValue = $alwaysUseDefaultRevenueValue;
     $this->excludeFromBidding = $excludeFromBidding;
     $this->mostRecentConversionDate = $mostRecentConversionDate;
     $this->lastReceivedRequestTime = $lastReceivedRequestTime;
     $this->ConversionTrackerType = $ConversionTrackerType;
 }
All Usage Examples Of ConversionTracker::__construct