for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @category Brownie/BpmOnline
* @author Brownie <[email protected]>
* @license https://opensource.org/licenses/MIT
*/
namespace Brownie\BpmOnline\DataService\Response;
use Brownie\BpmOnline\DataService\Response;
use Brownie\BpmOnline\Exception\ValidateException;
* The response to the execution of the contract SelectContract.
class SelectContract extends Response
{
* Returns the value of the rowConfig field.
*
* @return string
* @throws ValidateException
public function getRowConfig()
return $this->getRequestValue('rowConfig');
}
* Returns the value of the rows field.
public function getRows()
return $this->getRequestValue('rows');