Fewo Booking

Booking via API in CRM v3
This commit is contained in:
Kevin Adametz 2019-03-28 14:54:10 +01:00
parent 88360eabb7
commit 8c514bbd4d
38 changed files with 868 additions and 18044 deletions

View file

@ -111,6 +111,22 @@ class FewoLodging
*/
private $maximumPersons;
/**
* @var integer
*
* @ORM\Column(name="maximum_adults", type="integer", nullable=false)
*/
private $maximumAdults;
/**
* @var integer
*
* @ORM\Column(name="maximum_childs", type="integer", nullable=false)
*/
private $maximumChilds;
/**
* @var float
*
@ -394,6 +410,54 @@ class FewoLodging
return $this->maximumPersons;
}
/**
* Set maximumAdults
*
* @param integer $maximumAdults
*
* @return FewoLodging
*/
public function setMaximumAdults($maximumAdults)
{
$this->maximumAdults = $maximumAdults;
return $this;
}
/**
* Get maximumAdults
*
* @return integer
*/
public function getMaximumAdults()
{
return $this->maximumAdults;
}
/**
* Set maximumChilds
*
* @param integer $maximumChilds
*
* @return FewoLodging
*/
public function setMaximumChilds($maximumChilds)
{
$this->maximumChilds = $maximumChilds;
return $this;
}
/**
* Get maximumChilds
*
* @return integer
*/
public function getMaximumChilds()
{
return $this->maximumChilds;
}
/**
* Set deposit
*