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

GetAUJobDetailsResponse::getTotalNumInResultSet()   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 GetAUJobDetailsResponse
7
 */
8
class GetAUJobDetailsResponse extends ANetApiResponseType
9
{
10
11
    /**
12
     * @property integer $totalNumInResultSet
13
     */
14
    private $totalNumInResultSet = null;
15
16
    /**
17
     * @property \net\authorize\api\contract\v1\ListOfAUDetailsType $auDetails
18
     */
19
    private $auDetails = null;
20
21
    /**
22
     * Gets as totalNumInResultSet
23
     *
24
     * @return integer
25
     */
26
    public function getTotalNumInResultSet()
27
    {
28
        return $this->totalNumInResultSet;
29
    }
30
31
    /**
32
     * Sets a new totalNumInResultSet
33
     *
34
     * @param integer $totalNumInResultSet
35
     * @return self
36
     */
37
    public function setTotalNumInResultSet($totalNumInResultSet)
38
    {
39
        $this->totalNumInResultSet = $totalNumInResultSet;
40
        return $this;
41
    }
42
43
    /**
44
     * Gets as auDetails
45
     *
46
     * @return \net\authorize\api\contract\v1\ListOfAUDetailsType
47
     */
48
    public function getAuDetails()
49
    {
50
        return $this->auDetails;
51
    }
52
53
    /**
54
     * Sets a new auDetails
55
     *
56
     * @param \net\authorize\api\contract\v1\ListOfAUDetailsType $auDetails
57
     * @return self
58
     */
59
    public function setAuDetails(\net\authorize\api\contract\v1\ListOfAUDetailsType $auDetails)
60
    {
61
        $this->auDetails = $auDetails;
62
        return $this;
63
    }
64
65
66
}
67
68