amount; } /** * @return string */ public function getCurrency() { return $this->currency; } /** * @return string */ public function getName() { return $this->name; } /** * @return string */ public function getCycle() { return $this->cycle; } /** * @return string */ public function getCycleRepeat() { return $this->cycle_repeat; } /** * @return string */ public function getCycleFrequency() { return $this->cycle_frequency; } /** * @return string */ public function getReference() { return $this->reference; } /** * @param float $amount * @return CreateSubscriptionPlan */ public function setAmount($amount) { $this->amount = $amount; return $this; } /** * @param string $currency * @return CreateSubscriptionPlan */ public function setCurrency($currency) { $this->currency = $currency; return $this; } /** * @param string $name * @return CreateSubscriptionPlan */ public function setName($name) { $this->name = $name; return $this; } /** * @param sring $cycle * @return CreateSubscriptionPlan */ public function setCycle($cycle) { $this->cycle = $cycle; return $this; } /** * @param sring $cycle * @return CreateSubscriptionPlan */ public function setCycleRepeat($cycle_repeat) { $this->cycle_repeat = $cycle_repeat; return $this; } /** * @param sring $cycle * @return CreateSubscriptionPlan */ public function setCycleFrequency($cycle_frequency) { $this->cycle_frequency = $cycle_frequency; return $this; } /** * @param string $reference * @return CreateSubscriptionPlan */ public function setReference($reference) { $this->reference = $reference; return $this; } }