Test Failed
Push — master ( 3dd85e...34f16b )
by Devin
04:34 queued 10s
created

ScheduledQueryRun::classUrl()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 0
dl 0
loc 4
rs 10
c 0
b 0
f 0
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