123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- <?php
- /**
- * Refer to LICENSE.txt distributed with the Temando Shipping module for notice of license
- */
- namespace Temando\Shipping\Rest\Response\Fields\Location;
- /**
- * Temando API Location Contact Field
- *
- * @package Temando\Shipping\Rest
- * @author Christoph Aßmann <christoph.assmann@netresearch.de>
- * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
- * @link https://www.temando.com/
- */
- class Contact
- {
- /**
- * @var string
- */
- private $organisationName;
- /**
- * @var string
- */
- private $personFirstName;
- /**
- * @var string
- */
- private $personLastName;
- /**
- * @var string
- */
- private $email;
- /**
- * @var string
- */
- private $phoneNumber;
- /**
- * @var string
- */
- private $faxNumber;
- /**
- * @return string
- */
- public function getOrganisationName()
- {
- return $this->organisationName;
- }
- /**
- * @param string $organisationName
- * @return void
- */
- public function setOrganisationName($organisationName)
- {
- $this->organisationName = $organisationName;
- }
- /**
- * @return string
- */
- public function getPersonFirstName()
- {
- return $this->personFirstName;
- }
- /**
- * @param string $personFirstName
- * @return void
- */
- public function setPersonFirstName($personFirstName)
- {
- $this->personFirstName = $personFirstName;
- }
- /**
- * @return string
- */
- public function getPersonLastName()
- {
- return $this->personLastName;
- }
- /**
- * @param string $personLastName
- * @return void
- */
- public function setPersonLastName($personLastName)
- {
- $this->personLastName = $personLastName;
- }
- /**
- * @return string
- */
- public function getEmail()
- {
- return $this->email;
- }
- /**
- * @param string $email
- * @return void
- */
- public function setEmail($email)
- {
- $this->email = $email;
- }
- /**
- * @return string
- */
- public function getPhoneNumber()
- {
- return $this->phoneNumber;
- }
- /**
- * @param string $phoneNumber
- * @return void
- */
- public function setPhoneNumber($phoneNumber)
- {
- $this->phoneNumber = $phoneNumber;
- }
- /**
- * @return string
- */
- public function getFaxNumber()
- {
- return $this->faxNumber;
- }
- /**
- * @param string $faxNumber
- * @return void
- */
- public function setFaxNumber($faxNumber)
- {
- $this->faxNumber = $faxNumber;
- }
- }
|