Location.php 1.2 KB

1234567891011121314151617181920212223242526272829
  1. <?php
  2. // File generated from our OpenAPI spec
  3. namespace Stripe\Terminal;
  4. /**
  5. * A Location represents a grouping of readers.
  6. *
  7. * Related guide: <a href="https://stripe.com/docs/terminal/fleet/locations">Fleet
  8. * Management</a>.
  9. *
  10. * @property string $id Unique identifier for the object.
  11. * @property string $object String representing the object's type. Objects of the same type share the same value.
  12. * @property \Stripe\StripeObject $address
  13. * @property string $display_name The display name of the location.
  14. * @property bool $livemode Has the value <code>true</code> if the object exists in live mode or the value <code>false</code> if the object exists in test mode.
  15. * @property \Stripe\StripeObject $metadata Set of <a href="https://stripe.com/docs/api/metadata">key-value pairs</a> that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
  16. */
  17. class Location extends \Stripe\ApiResource
  18. {
  19. const OBJECT_NAME = 'terminal.location';
  20. use \Stripe\ApiOperations\All;
  21. use \Stripe\ApiOperations\Create;
  22. use \Stripe\ApiOperations\Delete;
  23. use \Stripe\ApiOperations\Retrieve;
  24. use \Stripe\ApiOperations\Update;
  25. }