Completed
Pull Request — master (#124)
by
unknown
29:37
created

ARBGetSubscriptionListRequest::getPaging()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1
Metric Value
dl 0
loc 4
ccs 2
cts 2
cp 1
rs 10
cc 1
eloc 2
nc 1
nop 0
crap 1
1
<?php
2
3
namespace net\authorize\api\contract\v1;
4
5
/**
6
 * Class representing ARBGetSubscriptionListRequest
7
 */
8
class ARBGetSubscriptionListRequest extends ANetApiRequestType
9
{
10
11
    /**
12
     * @property string $searchType
13
     */
14
    private $searchType = null;
15
16
    /**
17
     * @property \net\authorize\api\contract\v1\ARBGetSubscriptionListSortingType
18
     * $sorting
19
     */
20
    private $sorting = null;
21
22
    /**
23
     * @property \net\authorize\api\contract\v1\PagingType $paging
24
     */
25
    private $paging = null;
26
27
    /**
28
     * Gets as searchType
29
     *
30
     * @return string
31
     */
32 1
    public function getSearchType()
33
    {
34 1
        return $this->searchType;
35
    }
36
37
    /**
38
     * Sets a new searchType
39
     *
40
     * @param string $searchType
41
     * @return self
42
     */
43 1
    public function setSearchType($searchType)
44
    {
45 1
        $this->searchType = $searchType;
46 1
        return $this;
47
    }
48
49
    /**
50
     * Gets as sorting
51
     *
52
     * @return \net\authorize\api\contract\v1\ARBGetSubscriptionListSortingType
53
     */
54 1
    public function getSorting()
55
    {
56 1
        return $this->sorting;
57
    }
58
59
    /**
60
     * Sets a new sorting
61
     *
62
     * @param \net\authorize\api\contract\v1\ARBGetSubscriptionListSortingType $sorting
63
     * @return self
64
     */
65 1
    public function setSorting(\net\authorize\api\contract\v1\ARBGetSubscriptionListSortingType $sorting)
66
    {
67 1
        $this->sorting = $sorting;
68 1
        return $this;
69
    }
70
71
    /**
72
     * Gets as paging
73
     *
74
     * @return \net\authorize\api\contract\v1\PagingType
75
     */
76 1
    public function getPaging()
77
    {
78 1
        return $this->paging;
79
    }
80
81
    /**
82
     * Sets a new paging
83
     *
84
     * @param \net\authorize\api\contract\v1\PagingType $paging
85
     * @return self
86
     */
87 1
    public function setPaging(\net\authorize\api\contract\v1\PagingType $paging)
88
    {
89 1
        $this->paging = $paging;
90 1
        return $this;
91
    }
92
93
94
}
95
96