__construct() public method

public __construct ( $headline = null, $line1 = null, $line2 = null )
Example #1
0
 public function __construct($snippet = NULL, $expandedSnippet = NULL, $advertiserId = NULL, $id = NULL, $name = NULL, $size = NULL, $previewUrl = NULL, $CreativeType = NULL)
 {
     if (get_parent_class('ThirdPartyCreative')) {
         parent::__construct();
     }
     $this->snippet = $snippet;
     $this->expandedSnippet = $expandedSnippet;
     $this->advertiserId = $advertiserId;
     $this->id = $id;
     $this->name = $name;
     $this->size = $size;
     $this->previewUrl = $previewUrl;
     $this->CreativeType = $CreativeType;
 }
Example #2
0
 public function __construct($clickTrackingUrl = null, $advertiserId = null, $id = null, $name = null, $size = null, $previewUrl = null, $appliedLabels = null, $lastModifiedDateTime = null, $customFieldValues = null, $CreativeType = null)
 {
     parent::__construct();
     $this->clickTrackingUrl = $clickTrackingUrl;
     $this->advertiserId = $advertiserId;
     $this->id = $id;
     $this->name = $name;
     $this->size = $size;
     $this->previewUrl = $previewUrl;
     $this->appliedLabels = $appliedLabels;
     $this->lastModifiedDateTime = $lastModifiedDateTime;
     $this->customFieldValues = $customFieldValues;
     $this->CreativeType = $CreativeType;
 }
 public function __construct($clickTrackingUrl = NULL, $advertiserId = NULL, $id = NULL, $name = NULL, $size = NULL, $previewUrl = NULL, $appliedLabels = NULL, $CreativeType = NULL)
 {
     if (get_parent_class('ClickTrackingCreative')) {
         parent::__construct();
     }
     $this->clickTrackingUrl = $clickTrackingUrl;
     $this->advertiserId = $advertiserId;
     $this->id = $id;
     $this->name = $name;
     $this->size = $size;
     $this->previewUrl = $previewUrl;
     $this->appliedLabels = $appliedLabels;
     $this->CreativeType = $CreativeType;
 }