1 | <?php |
||
11 | class ScanInResponse extends Model |
||
12 | { |
||
13 | protected $data; |
||
14 | |||
15 | /** |
||
16 | * ScanInResponse constructor. |
||
17 | * |
||
18 | * @param Client $client |
||
19 | */ |
||
20 | public function __construct(Client $client, $data) |
||
24 | |||
25 | /** |
||
26 | * Get the scan-in response message. |
||
27 | * |
||
28 | * @return string |
||
29 | */ |
||
30 | public function getMessage() |
||
34 | |||
35 | /** |
||
36 | * Get the scanned-in item. |
||
37 | * |
||
38 | * @return Item |
||
39 | */ |
||
40 | public function getItem() |
||
52 | |||
53 | /** |
||
54 | * Get the Holding object for the scanned-in item. |
||
55 | * |
||
56 | * @return Holding |
||
57 | */ |
||
58 | public function getHolding() |
||
68 | |||
69 | /** |
||
70 | * Get the Bib object for the scanned-in item. |
||
71 | * |
||
72 | * @return Bib |
||
73 | */ |
||
74 | public function getBib() |
||
81 | } |
||
82 |