Reader.php
31 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Stripe\Terminal; |
| 4 | |
| 5 | /** |
| 6 | * Class Reader |
| 7 | * |
| 8 | * @property string $id |
| 9 | * @property string $object |
| 10 | * @property bool $deleted |
| 11 | * @property string $device_sw_version |
| 12 | * @property string $device_type |
| 13 | * @property string $ip_address |
| 14 | * @property string $label |
| 15 | * @property string $location |
| 16 | * @property string $serial_number |
| 17 | * @property string $status |
| 18 | * |
| 19 | * @package Stripe\Terminal |
| 20 | */ |
| 21 | class Reader extends \Stripe\ApiResource |
| 22 | { |
| 23 | const OBJECT_NAME = "terminal.reader"; |
| 24 | |
| 25 | use \Stripe\ApiOperations\All; |
| 26 | use \Stripe\ApiOperations\Create; |
| 27 | use \Stripe\ApiOperations\Delete; |
| 28 | use \Stripe\ApiOperations\Retrieve; |
| 29 | use \Stripe\ApiOperations\Update; |
| 30 | } |
| 31 |