name = $name; $this->email = $email; $this->street_one = $street_one; $this->street_two = $street_two; $this->city = $city; $this->state = $state; $this->post_code = $post_code; $this->country = $country; $this->shipping_rate = $shipping_rate; $this->overdue_days = $overdue_days; $this->markup_percentage = $markup_percentage; $this->minimum_cbm = $minimum_cbm; } /** * @return null|string */ public function getName(): ?string { return $this->name; } /** * @return null|string */ public function getEmail(): ?string { return $this->email; } /** * @return null|string */ public function getStreetOne(): ?string { return $this->street_one; } /** * @return null|string */ public function getStreetTwo(): ?string { return $this->street_two; } /** * @return null|string */ public function getCity(): ?string { return $this->city; } /** * @return null|string */ public function getState(): ?string { return $this->state; } /** * @return null|string */ public function getPostCode(): ?string { return $this->post_code; } /** * @return null|string */ public function getCountry(): ?string { return $this->country; } /** * @return float|null */ public function getShippingRate(): ?float { return $this->shipping_rate; } /** * @return int|null */ public function getOverdueDays(): ?int { return $this->overdue_days; } /** * @return float|null */ public function getMarkupPercentage(): ?float { return $this->markup_percentage; } /** * @return float|null */ public function getMinimumCbm(): ?float { return $this->minimum_cbm; } }