ConnectionToken.php 742 B

1234567891011121314151617181920212223
  1. <?php
  2. // File generated from our OpenAPI spec
  3. namespace Stripe\Terminal;
  4. /**
  5. * A Connection Token is used by the Stripe Terminal SDK to connect to a reader.
  6. *
  7. * Related guide: <a
  8. * href="https://stripe.com/docs/terminal/readers/fleet-management#create">Fleet
  9. * Management</a>.
  10. *
  11. * @property string $object String representing the object's type. Objects of the same type share the same value.
  12. * @property string $location The id of the location that this connection token is scoped to.
  13. * @property string $secret Your application should pass this token to the Stripe Terminal SDK.
  14. */
  15. class ConnectionToken extends \Stripe\ApiResource
  16. {
  17. const OBJECT_NAME = 'terminal.connection_token';
  18. use \Stripe\ApiOperations\Create;
  19. }