FileLink.php 552 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. namespace Stripe;
  3. /**
  4. * Class FileLink
  5. *
  6. * @property string $id
  7. * @property string $object
  8. * @property int $created
  9. * @property bool $expired
  10. * @property int $expires_at
  11. * @property string $file
  12. * @property string $purpose
  13. * @property bool $livemode
  14. * @property StripeObject $metadata
  15. * @property string $url
  16. *
  17. * @package Stripe
  18. */
  19. class FileLink extends ApiResource
  20. {
  21. const OBJECT_NAME = "file_link";
  22. use ApiOperations\All;
  23. use ApiOperations\Create;
  24. use ApiOperations\Retrieve;
  25. use ApiOperations\Update;
  26. }