for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Guillermoandrae\Highrise\Models;
use DateTime;
final class DealModel extends AbstractModel
{
/**
* The account ID.
*
* @var integer
*/
protected $accountId;
* The author ID.
protected $authorId;
* The category ID.
protected $categoryId;
* The party ID.
protected $partyId;
* The responsible party ID.
protected $responsiblePartyId;
* The background.
* @var string
protected $background;
* The currency.
protected $currency;
* The duration.
protected $duration;
* The price.
protected $price;
* The price type.
protected $priceType;
* The status.
protected $status;
* The date on which the deal status was changed.
* @var DateTime
protected $statusChangedOn;
* The visibility.
protected $visibleTo;
* Returns the accountId.
* @return int
public function getAccountId(): int
return $this->accountId;
}
* Returns the authorId.
public function getAuthorId(): int
return $this->authorId;
* Returns the categoryId.
public function getCategoryId(): int
return $this->categoryId;
* Returns the partyId.
public function getPartyId(): int
return $this->partyId;
* Returns the responsiblePartyId.
public function getResponsiblePartyId(): int
return $this->responsiblePartyId;
* Returns the background.
* @return string
public function getBackground(): string
return $this->background;
* Returns the currency.
public function getCurrency(): string
return $this->currency;
* Returns the duration.
public function getDuration(): int
return $this->duration;
* Returns the price.
public function getPrice(): int
return $this->price;
* Returns the priceType.
public function getPriceType(): string
return $this->priceType;
* Returns the status.
public function getStatus(): string
return $this->status;
* Returns the statusChangedOn.
* @return DateTime
public function getStatusChangedOn(): DateTime
return $this->statusChangedOn;
* Returns the visibleTo.
public function getVisibleTo(): string
return $this->visibleTo;