amount; } /** * @return string */ public function getCurrency() { return $this->currency; } /** * @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; } }