예제 #1
0
파일: Client.php 프로젝트: mgrt/mgrt-php
 public function unscheduleCampaign(Campaign $campaign)
 {
     $command = $this->getCommand('UnscheduleCampaign', array('campaignId' => $campaign->getId()));
     return $this->execute($command);
 }
예제 #2
0
 public function summaryCampaign(Campaign $campaign)
 {
     $command = $this->getCommand('SummaryCampaign', array('campaignId' => $campaign->getId()));
     return $this->execute($command);
 }