for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SForce\Wsdl;
class PerformQuickActionRequest
{
/**
* @var ID
*/
protected $contextId = null;
* @var string
protected $quickActionName = null;
* @var sObject[]
protected $records = null;
* @param string $quickActionName
public function __construct($quickActionName = null)
$this->quickActionName = $quickActionName;
}
* @return ID
public function getContextId()
return $this->contextId;
* @param ID $contextId
* @return \SForce\Wsdl\PerformQuickActionRequest
public function setContextId($contextId)
$this->contextId = $contextId;
return $this;
* @return string
public function getQuickActionName()
return $this->quickActionName;
public function setQuickActionName($quickActionName)
* @return sObject[]
public function getRecords()
return $this->records;
* @param sObject[] $records
public function setRecords(array $records = null)
$this->records = $records;