Fewo Booking
Booking via API in CRM v3
This commit is contained in:
parent
88360eabb7
commit
8c514bbd4d
38 changed files with 868 additions and 18044 deletions
|
|
@ -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
|
||||
*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue