Completed
Pull Request — master (#173)
by
unknown
27:02
created

GetAUJobDetailsRequest::getPaging()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

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