Completed
Push — master ( 548641...bdc867 )
by
unknown
14s
created

GetTransactionListForCustomerRequest::setPaging()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 5
rs 9.4285
cc 1
eloc 3
nc 1
nop 1
1
<?php
0 ignored issues
show
Coding Style introduced by
File has mixed line endings; this may cause incorrect results
Loading history...
2
3
namespace net\authorize\api\contract\v1;
4
5
/**
6
 * Class representing GetTransactionListForCustomerRequest
7
 */
8
class GetTransactionListForCustomerRequest extends ANetApiRequestType
9
{
10
11
    /**
12
     * @property string $customerProfileId
13
     */
14
    private $customerProfileId = null;
15
16
    /**
17
     * @property string $customerPaymentProfileId
18
     */
19
    private $customerPaymentProfileId = null;
20
21
    /**
22
     * @property \net\authorize\api\contract\v1\TransactionListSortingType $sorting
23
     */
24
    private $sorting = null;
25
26
    /**
27
     * @property \net\authorize\api\contract\v1\PagingType $paging
28
     */
29
    private $paging = null;
30
31
    /**
32
     * Gets as customerProfileId
33
     *
34
     * @return string
35
     */
36
    public function getCustomerProfileId()
37
    {
38
        return $this->customerProfileId;
39
    }
40
41
    /**
42
     * Sets a new customerProfileId
43
     *
44
     * @param string $customerProfileId
45
     * @return self
46
     */
47
    public function setCustomerProfileId($customerProfileId)
48
    {
49
        $this->customerProfileId = $customerProfileId;
50
        return $this;
51
    }
52
53
    /**
54
     * Gets as customerPaymentProfileId
55
     *
56
     * @return string
57
     */
58
    public function getCustomerPaymentProfileId()
59
    {
60
        return $this->customerPaymentProfileId;
61
    }
62
63
    /**
64
     * Sets a new customerPaymentProfileId
65
     *
66
     * @param string $customerPaymentProfileId
67
     * @return self
68
     */
69
    public function setCustomerPaymentProfileId($customerPaymentProfileId)
70
    {
71
        $this->customerPaymentProfileId = $customerPaymentProfileId;
72
        return $this;
73
    }
74
75
    /**
76
     * Gets as sorting
77
     *
78
     * @return \net\authorize\api\contract\v1\TransactionListSortingType
79
     */
80
    public function getSorting()
81
    {
82
        return $this->sorting;
83
    }
84
85
    /**
86
     * Sets a new sorting
87
     *
88
     * @param \net\authorize\api\contract\v1\TransactionListSortingType $sorting
89
     * @return self
90
     */
91
    public function setSorting(\net\authorize\api\contract\v1\TransactionListSortingType $sorting)
92
    {
93
        $this->sorting = $sorting;
94
        return $this;
95
    }
96
97
    /**
98
     * Gets as paging
99
     *
100
     * @return \net\authorize\api\contract\v1\PagingType
101
     */
102
    public function getPaging()
103
    {
104
        return $this->paging;
105
    }
106
107
    /**
108
     * Sets a new paging
109
     *
110
     * @param \net\authorize\api\contract\v1\PagingType $paging
111
     * @return self
112
     */
113
    public function setPaging(\net\authorize\api\contract\v1\PagingType $paging)
114
    {
115
        $this->paging = $paging;
116
        return $this;
117
    }
118
119
120
}
121
122