Configuration.php
2 years ago
ConnectionToken.php
4 years ago
Location.php
2 years ago
Reader.php
2 years ago
ConnectionToken.php
23 lines
| 1 | <?php |
| 2 | |
| 3 | // File generated from our OpenAPI spec |
| 4 | |
| 5 | namespace Stripe\Terminal; |
| 6 | |
| 7 | /** |
| 8 | * A Connection Token is used by the Stripe Terminal SDK to connect to a reader. |
| 9 | * |
| 10 | * Related guide: <a href="https://stripe.com/docs/terminal/fleet/locations">Fleet |
| 11 | * Management</a>. |
| 12 | * |
| 13 | * @property string $object String representing the object's type. Objects of the same type share the same value. |
| 14 | * @property string $location The id of the location that this connection token is scoped to. Note that location scoping only applies to internet-connected readers. For more details, see <a href="https://stripe.com/docs/terminal/fleet/locations#connection-tokens">the docs on scoping connection tokens</a>. |
| 15 | * @property string $secret Your application should pass this token to the Stripe Terminal SDK. |
| 16 | */ |
| 17 | class ConnectionToken extends \Stripe\ApiResource |
| 18 | { |
| 19 | const OBJECT_NAME = 'terminal.connection_token'; |
| 20 | |
| 21 | use \Stripe\ApiOperations\Create; |
| 22 | } |
| 23 |