1 | <?php |
||
19 | class AddToSegmentResponse extends Response |
||
20 | { |
||
21 | /** |
||
22 | * @var integer response code |
||
23 | */ |
||
24 | protected $AddToSegmentResult; |
||
25 | |||
26 | /** |
||
27 | * |
||
28 | */ |
||
29 | 1 | public function __construct() |
|
33 | |||
34 | /** |
||
35 | * Possible errors returned : |
||
36 | * |
||
37 | * - Response::ERROR_FAILED |
||
38 | * - Response::ERROR_LIST |
||
39 | * - Response::ERROR_QUERY |
||
40 | * - Response::ERROR_SEGMENT_NOT_FOUND |
||
41 | * |
||
42 | * @return integer response code |
||
43 | */ |
||
44 | 1 | public function getCode() |
|
48 | } |
||
49 |