Completed
Push — master ( 4851e9...211214 )
by
unknown
55:58 queued 26:00
created

SecurePaymentContainerRequest::getData()   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
dl 0
loc 4
rs 10
c 1
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
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 SecurePaymentContainerRequest
7
 */
8
class SecurePaymentContainerRequest extends ANetApiRequestType
9
{
10
11
    /**
12
     * @property \net\authorize\api\contract\v1\WebCheckOutDataType $data
13
     */
14
    private $data = null;
15
16
    /**
17
     * Gets as data
18
     *
19
     * @return \net\authorize\api\contract\v1\WebCheckOutDataType
20
     */
21
    public function getData()
22
    {
23
        return $this->data;
24
    }
25
26
    /**
27
     * Sets a new data
28
     *
29
     * @param \net\authorize\api\contract\v1\WebCheckOutDataType $data
30
     * @return self
31
     */
32
    public function setData(\net\authorize\api\contract\v1\WebCheckOutDataType $data)
33
    {
34
        $this->data = $data;
35
        return $this;
36
    }
37
38
39
}
40
41