Skip to content

Commit 861c22a

Browse files
committed
4.0.1: minor fix in the isTest and customerCasedId field;
1 parent 8e9b4a2 commit 861c22a

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

lib/Core/Response/CaseResponse.php

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,10 @@ class CaseResponse extends Response
214214

215215
public $message = [];
216216

217+
public $isTest;
218+
219+
public $customerCaseId;
220+
217221
/**
218222
* CaseResponse constructor.
219223
*
@@ -798,6 +802,26 @@ public function setTest($test)
798802
$this->test = $test;
799803
}
800804

805+
public function getIsTest()
806+
{
807+
return $this->getTestInvestigation();
808+
}
809+
810+
public function setIsTest($test)
811+
{
812+
$this->setTestInvestigation($test);
813+
}
814+
815+
public function getCustomerCaseId()
816+
{
817+
return $this->customerCaseId;
818+
}
819+
820+
public function setCustomerCaseId($customerCaseId)
821+
{
822+
$this->customerCaseId = $customerCaseId;
823+
}
824+
801825
public function getRecommendedAction()
802826
{
803827
return $this->recommendedAction;

0 commit comments

Comments
 (0)