for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Xsolve\SalesforceClient\Model;
use JMS\Serializer\Annotation as JMS;
use Xsolve\SalesforceClient\Enum\AbstractSObjectType;
use Xsolve\SalesforceClient\Enum\SObjectType;
class Pricebook extends AbstractSObject
{
/**
* @var string|null
* @JMS\Type("string")
* @JMS\Groups({"update", "create"})
*/
protected $description;
* @var bool|null
* @JMS\Type("boolean")
protected $isActive;
protected $isDeleted;
protected $isStandard;
protected $name;
* {@inheritdoc}
public static function getSObjectName(): AbstractSObjectType
return SObjectType::PRICEBOOK();
}
* @return string|null
public function getDescription()
return $this->description;
* @return bool|null
public function isActive()
return $this->isActive;
public function isDeleted()
return $this->isDeleted;
public function isStandard()
return $this->isStandard;
public function getName()
return $this->name;
public function setDescription(string $description = null): self
$this->description = $description;
return $this;
public function setActive(bool $isActive): self
$this->isActive = $isActive;
public function setName(string $name): self
$this->name = $name;