| 1 | <?php |
||
| 19 | class GetSegmentRecordCountResponse extends Response |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @var int The result of the function |
||
| 23 | */ |
||
| 24 | protected $GetSegmentRecordCountResult; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @var int The number of records in the segment |
||
| 28 | */ |
||
| 29 | protected $segmentCount; |
||
| 30 | |||
| 31 | 1 | public function __construct() |
|
| 36 | |||
| 37 | /** |
||
| 38 | * {@inheritDoc} |
||
| 39 | */ |
||
| 40 | 1 | public function getCode() |
|
| 44 | |||
| 45 | /** |
||
| 46 | * @return int The number of records in the segment |
||
| 47 | */ |
||
| 48 | 1 | public function getResult() |
|
| 52 | } |
||
| 53 |