Completed
Push — master ( 709db1...ea2eeb )
by luca
21:44
created

MemberDataSharingSegment::getId()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
3
namespace Audiens\AppnexusClient\entity;
4
5
/**
6
 * Class MemberDataSharingSegment
7
 */
8
class MemberDataSharingSegment
9
{
10
    use HydratableTrait;
11
12
    /** @var string */
13
    protected $id;
14
15
    /** @var string */
16
    protected $name;
17
18
    /**
19
     * @return mixed
20
     */
21
    public function getId()
22
    {
23
        return $this->id;
24
    }
25
26
    /**
27
     * @param string $id
28
     */
29
    public function setId($id)
30
    {
31
        $this->id = $id;
32
    }
33
34
    /**
35
     * @return mixed
36
     */
37
    public function getName()
38
    {
39
        return $this->name;
40
    }
41
42
    /**
43
     * @param mixed $name
44
     */
45
    public function setName($name)
46
    {
47
        $this->name = $name;
48
    }
49
}
50