/** * Constructor. * * Set Currency ID. * * @param string $currencyId ID of Currency to show * @return void */ public function __construct($currencyId) { parent::__construct(); $this->currencyId = $currencyId; }
/** * Constructor. * * Set booking ID. * * @param string $bookingId ID of Booking to authorise payment for * @return void */ public function __construct($bookingId) { parent::__construct(); $this->method = RequestInterface::METHOD_POST; $this->bookingId = $bookingId; }
/** * Constructor. * * Set Booking ID. * * @param string $bookingId ID of Booking to show * @return void */ public function __construct($bookingId) { parent::__construct(); $this->bookingId = $bookingId; }
/** * Constructor. * * Set Dwelling ID. * * @param string $dwellingId ID of Dwelling to show * @return void */ public function __construct($dwellingId) { parent::__construct(); $this->dwellingId = $dwellingId; }
/** * Constructor. * * Set Customer ID or email. * * @param string $customerIdOrEmail ID or email of Customer to show * @return void */ public function __construct($customerIdOrEmail) { parent::__construct(); $this->customerIdOrEmail = $customerIdOrEmail; }
/** * Constructor. * * @param string $productId ID of Product to get Quote for * @return void */ public function __construct($productId) { parent::__construct(); $this->method = RequestInterface::METHOD_POST; $this->productId = $productId; }
/** * Constructor. * * Set Customer ID. * * @param string $customerId ID of Customer to update * @return void */ public function __construct($customerId) { parent::__construct(); $this->method = RequestInterface::METHOD_PUT; $this->customerId = $customerId; }
/** * Constructor. * * @return void */ public function __construct() { parent::__construct(); $this->method = RequestInterface::METHOD_POST; }
/** * Constructor. * * Set Dwelling ID. * * @param string $quoteId ID of Quote to show * @return void */ public function __construct($quoteId) { parent::__construct(); $this->quoteId = $quoteId; }