payments = $payments; } /** * Getter for payments */ public function getPayments() { return $this->payments; } /** * Setter for count * @param integer $count */ public function setCount($count) { $this->count = $count; } /** * Getter for count */ public function getCount() { return $this->count; } /** * Setter for next_id * @param string $next_id */ public function setNext_id($next_id) { $this->next_id = $next_id; } /** * Getter for next_id */ public function getNext_id() { return $this->next_id; } }