plan_id = $plan_id; return $this; } /** * @return string */ public function getPlanId() { return $this->plan_id; } /** * @param float $customer_email * @return RecurringBIlling */ public function setCustomerEmail($customer_email) { $this->customer_email = $customer_email; return $this; } /** * @return string */ public function getCustomerEmail() { return $this->customer_email; } /** * @param float $amount * @return RecurringBIlling */ public function setAmount($amount) { $this->amount = $amount; return $this; } /** * @return float */ public function getAmount() { return $this->amount; } /** * @param string $start_date * @return RecurringBIlling */ public function setStartDate($start_date) { $this->start_date = $start_date; return $this; } /** * @return string */ public function getStartDate() { return $this->start_date; } /** * @param string $customer_name * @return RecurringBIlling */ public function setCustomerName($customer_name) { $this->customer_name = $customer_name; return $this; } /** * @return string */ public function getCustomerName() { return $this->customer_name; } /** * @param string $redirect_url * @return RecurringBIlling */ public function setRedirectUrl($redirect_url) { $this->redirect_url = $redirect_url; return $this; } /** * @return string */ public function getRedirectUrl() { return $this->redirect_url; } /** * @param string $webhook * @return RecurringBIlling */ public function setWebhook($webhook) { $this->webhook = $webhook; return $this; } /** * @return string */ public function getWebhook() { return $this->webhook; } /** * @param sring $save_card * @return RecurringBIlling */ public function setSaveCard($save_card) { $this->save_card = $save_card; return $this; } /** * @return string */ public function getSaveCard() { return $this->save_card; } /** * @param sring $times_to_be_charge * @return RecurringBIlling */ public function setTimesToBeCharge($times_to_be_charge) { $this->times_to_be_charge = $times_to_be_charge; return $this; } /** * @return string */ public function getTimesToBeCharge() { return $this->times_to_be_charge; } /** * @param sring $send_email * @return RecurringBIlling */ public function setSendEmail($send_email) { $this->send_email = $send_email; return $this; } /** * @return string */ public function getSendEmail() { return $this->send_email; } /** * @param string $reference * @return RecurringBIlling */ public function setReference($reference) { $this->reference = $reference; return $this; } /** * @return string */ public function getReference() { return $this->reference; } }