| 1 | <?php |
||
| 5 | class Lists extends Endpoint |
||
| 6 | { |
||
| 7 | /* |
||
| 8 | * SoapClient $client |
||
| 9 | */ |
||
| 10 | private $client; |
||
| 11 | |||
| 12 | public function __construct($client) |
||
| 16 | |||
| 17 | /** |
||
| 18 | * We get the List of Users. |
||
| 19 | * |
||
| 20 | * @param $options |
||
| 21 | */ |
||
| 22 | public function getList($options) |
||
| 35 | |||
| 36 | /** |
||
| 37 | * We get the list of Fields of a Users List. |
||
| 38 | * |
||
| 39 | * @param $options |
||
| 40 | */ |
||
| 41 | public function getFields($options) |
||
| 64 | } |
||
| 65 |