Completed
Push — master ( 44676f...b7bc18 )
by Jens
13:18
created

PaymentTransactionChangedMessage::fieldDefinitions()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 7
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 7
ccs 0
cts 6
cp 0
rs 9.4285
c 0
b 0
f 0
cc 1
eloc 4
nc 1
nop 0
crap 2
1
<?php
2
/**
3
 * @author @jayS-de <[email protected]>
4
 */
5
6
namespace Commercetools\Core\Model\Message;
7
8
use Commercetools\Core\Model\Common\DateTimeDecorator;
9
use DateTime;
10
use Commercetools\Core\Model\Common\Reference;
11
12
/**
13
 * @package Commercetools\Core\Model\Message
14
 * @deprecated Use PaymentTransactionStateChangedMessage instead
15
 * @method string getId()
16
 * @method PaymentTransactionChangedMessage setId(string $id = null)
17
 * @method int getVersion()
18
 * @method PaymentTransactionChangedMessage setVersion(int $version = null)
19
 * @method DateTimeDecorator getCreatedAt()
20
 * @method PaymentTransactionChangedMessage setCreatedAt(DateTime $createdAt = null)
21
 * @method DateTimeDecorator getLastModifiedAt()
22
 * @method PaymentTransactionChangedMessage setLastModifiedAt(DateTime $lastModifiedAt = null)
23
 * @method int getSequenceNumber()
24
 * @method PaymentTransactionChangedMessage setSequenceNumber(int $sequenceNumber = null)
25
 * @method Reference getResource()
26
 * @method PaymentTransactionChangedMessage setResource(Reference $resource = null)
27
 * @method int getResourceVersion()
28
 * @method PaymentTransactionChangedMessage setResourceVersion(int $resourceVersion = null)
29
 * @method string getType()
30
 * @method PaymentTransactionChangedMessage setType(string $type = null)
31
 * @method string getTransactionId()
32
 * @method PaymentTransactionChangedMessage setTransactionId(string $transactionId = null)
33
 * @method string getState()
34
 * @method PaymentTransactionChangedMessage setState(string $state = null)
35
 */
36
class PaymentTransactionChangedMessage extends PaymentTransactionStateChangedMessage
37
{
38
39
}
40