ScheduledQueryRun.php 698 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. namespace Stripe\Sigma;
  3. /**
  4. * Class Authorization
  5. *
  6. * @property string $id
  7. * @property string $object
  8. * @property int $created
  9. * @property int $data_load_time
  10. * @property string $error
  11. * @property \Stripe\FileUpload $file
  12. * @property bool $livemode
  13. * @property int $result_available_until
  14. * @property string $sql
  15. * @property string $status
  16. * @property string $title
  17. *
  18. * @package Stripe\Sigma
  19. */
  20. class ScheduledQueryRun extends \Stripe\ApiResource
  21. {
  22. const OBJECT_NAME = "scheduled_query_run";
  23. use \Stripe\ApiOperations\All;
  24. use \Stripe\ApiOperations\Retrieve;
  25. public static function classUrl()
  26. {
  27. return "/v1/sigma/scheduled_query_runs";
  28. }
  29. }