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