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

ScheduledQueryRun   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 3

Importance

Changes 0
Metric Value
dl 0
loc 12
rs 10
c 0
b 0
f 0
wmc 1
lcom 0
cbo 3

1 Method

Rating   Name   Duplication   Size   Complexity  
A classUrl() 0 4 1
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