Completed
Push — master ( 551bb3...6eeaa2 )
by
unknown
37:04 queued 06:58
created

GetCustomerPaymentProfileNonceRequest   A

Complexity

Total Complexity 6

Size/Duplication

Total Lines 86
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 6
lcom 0
cbo 1
dl 0
loc 86
rs 10
c 0
b 0
f 0

6 Methods

Rating   Name   Duplication   Size   Complexity  
A getConnectedAccessToken() 0 4 1
A setConnectedAccessToken() 0 5 1
A getCustomerProfileId() 0 4 1
A setCustomerProfileId() 0 5 1
A getCustomerPaymentProfileId() 0 4 1
A setCustomerPaymentProfileId() 0 5 1
1
<?php
2
3
namespace net\authorize\api\contract\v1;
4
5
/**
6
 * Class representing GetCustomerPaymentProfileNonceRequest
7
 */
8
class GetCustomerPaymentProfileNonceRequest extends ANetApiRequestType
9
{
10
11
    /**
12
     * @property string $connectedAccessToken
13
     */
14
    private $connectedAccessToken = null;
15
16
    /**
17
     * @property string $customerProfileId
18
     */
19
    private $customerProfileId = null;
20
21
    /**
22
     * @property string $customerPaymentProfileId
23
     */
24
    private $customerPaymentProfileId = null;
25
26
    /**
27
     * Gets as connectedAccessToken
28
     *
29
     * @return string
30
     */
31
    public function getConnectedAccessToken()
32
    {
33
        return $this->connectedAccessToken;
34
    }
35
36
    /**
37
     * Sets a new connectedAccessToken
38
     *
39
     * @param string $connectedAccessToken
40
     * @return self
41
     */
42
    public function setConnectedAccessToken($connectedAccessToken)
43
    {
44
        $this->connectedAccessToken = $connectedAccessToken;
45
        return $this;
46
    }
47
48
    /**
49
     * Gets as customerProfileId
50
     *
51
     * @return string
52
     */
53
    public function getCustomerProfileId()
54
    {
55
        return $this->customerProfileId;
56
    }
57
58
    /**
59
     * Sets a new customerProfileId
60
     *
61
     * @param string $customerProfileId
62
     * @return self
63
     */
64
    public function setCustomerProfileId($customerProfileId)
65
    {
66
        $this->customerProfileId = $customerProfileId;
67
        return $this;
68
    }
69
70
    /**
71
     * Gets as customerPaymentProfileId
72
     *
73
     * @return string
74
     */
75
    public function getCustomerPaymentProfileId()
76
    {
77
        return $this->customerPaymentProfileId;
78
    }
79
80
    /**
81
     * Sets a new customerPaymentProfileId
82
     *
83
     * @param string $customerPaymentProfileId
84
     * @return self
85
     */
86
    public function setCustomerPaymentProfileId($customerPaymentProfileId)
87
    {
88
        $this->customerPaymentProfileId = $customerPaymentProfileId;
89
        return $this;
90
    }
91
92
93
}
94
95