diff --git a/src/Model/RecurringPayment/CampaignRequest.php b/src/Model/RecurringPayment/CampaignRequest.php index e72df15..43e5f87 100644 --- a/src/Model/RecurringPayment/CampaignRequest.php +++ b/src/Model/RecurringPayment/CampaignRequest.php @@ -19,7 +19,55 @@ class CampaignRequest /** * @var \DateTimeInterface - * @Serializer\Type("DateTime<'Y-m-d\TH:i:s.u\Z'>") + * @Serializer\Type("DateTime<'Y-m-d\TH:i:s\Z'>") */ protected $end; + + /** + * Get the value of end + * + * @return \DateTimeInterface + */ + public function getEnd() + { + return $this->end; + } + + /** + * Set the value of end + * + * @param \DateTimeInterface $end + * + * @return self + */ + public function setEnd(\DateTimeInterface $end) + { + $this->end = $end; + + return $this; + } + + /** + * Get the value of campaignPrice + * + * @return int + */ + public function getCampaignPrice() + { + return $this->campaignPrice; + } + + /** + * Set the value of campaignPrice + * + * @param int $campaignPrice + * + * @return self + */ + public function setCampaignPrice(int $campaignPrice) + { + $this->campaignPrice = $campaignPrice; + + return $this; + } }