Completed
Pull Request — master (#114)
by Naman
30:46
created

getCustomerPaymentProfileId()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %
Metric Value
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 CreateCustomerPaymentProfileResponse
7
 */
8
class CreateCustomerPaymentProfileResponse extends ANetApiResponseType
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 string $validationDirectResponse
23
     */
24
    private $validationDirectResponse = null;
25
26
    /**
27
     * Gets as customerProfileId
28
     *
29
     * @return string
30
     */
31
    public function getCustomerProfileId()
32
    {
33
        return $this->customerProfileId;
34
    }
35
36
    /**
37
     * Sets a new customerProfileId
38
     *
39
     * @param string $customerProfileId
40
     * @return self
41
     */
42
    public function setCustomerProfileId($customerProfileId)
43
    {
44
        $this->customerProfileId = $customerProfileId;
45
        return $this;
46
    }
47
48
    /**
49
     * Gets as customerPaymentProfileId
50
     *
51
     * @return string
52
     */
53
    public function getCustomerPaymentProfileId()
54
    {
55
        return $this->customerPaymentProfileId;
56
    }
57
58
    /**
59
     * Sets a new customerPaymentProfileId
60
     *
61
     * @param string $customerPaymentProfileId
62
     * @return self
63
     */
64
    public function setCustomerPaymentProfileId($customerPaymentProfileId)
65
    {
66
        $this->customerPaymentProfileId = $customerPaymentProfileId;
67
        return $this;
68
    }
69
70
    /**
71
     * Gets as validationDirectResponse
72
     *
73
     * @return string
74
     */
75
    public function getValidationDirectResponse()
76
    {
77
        return $this->validationDirectResponse;
78
    }
79
80
    /**
81
     * Sets a new validationDirectResponse
82
     *
83
     * @param string $validationDirectResponse
84
     * @return self
85
     */
86
    public function setValidationDirectResponse($validationDirectResponse)
87
    {
88
        $this->validationDirectResponse = $validationDirectResponse;
89
        return $this;
90
    }
91
92
93
}
94
95