Cloud::setS3VideosBucket()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 1
1
<?php
2
3
/*
4
 * This file is part of the XabbuhPandaClient package.
5
 *
6
 * (c) Christian Flothmann <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace Xabbuh\PandaClient\Model;
13
14
/**
15
 * Representation of a cloud's data.
16
 *
17
 * @author Christian Flothmann <[email protected]>
18
 */
19
class Cloud implements ModelInterface
20
{
21
    private $id;
22
23
    private $name;
24
25
    private $s3VideosBucket;
26
27
    private $s3PrivateAccess;
28
29
    private $url;
30
31
    private $createdAt;
32
33
    private $updatedAt;
34
35
    public function getId()
36
    {
37
        return $this->id;
38
    }
39
40
    public function setId($id)
41
    {
42
        $this->id = $id;
43
    }
44
45
    public function getName()
46
    {
47
        return $this->name;
48
    }
49
50
    public function setName($name)
51
    {
52
        $this->name = $name;
53
    }
54
55
    public function getS3VideosBucket()
56
    {
57
        return $this->s3VideosBucket;
58
    }
59
60
    public function setS3VideosBucket($s3VideosBucket)
61
    {
62
        $this->s3VideosBucket = $s3VideosBucket;
63
    }
64
65
    public function isS3AccessPrivate()
66
    {
67
        return $this->s3PrivateAccess;
68
    }
69
70
    public function setS3PrivateAccess($s3PrivateAccess)
71
    {
72
        $this->s3PrivateAccess = $s3PrivateAccess;
73
    }
74
75
    public function getUrl()
76
    {
77
        return $this->url;
78
    }
79
80
    public function setUrl($url)
81
    {
82
        $this->url = $url;
83
    }
84
85
    public function getCreatedAt()
86
    {
87
        return $this->createdAt;
88
    }
89
90
    public function setCreatedAt($createdAt)
91
    {
92
        $this->createdAt = $createdAt;
93
    }
94
95
    public function getUpdatedAt()
96
    {
97
        return $this->updatedAt;
98
    }
99
100
    public function setUpdatedAt($updatedAt)
101
    {
102
        $this->updatedAt = $updatedAt;
103
    }
104
}
105