Passed
Push — master ( 063541...448140 )
by Carl
05:22
created

getDeclaredDebitedFundsAmount()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
/**
3
 * Created by Carl Owens ([email protected])
4
 * Company: PartFire Ltd (www.partfire.co.uk)
5
 * Copyright © 2017 PartFire Ltd. All rights reserved.
6
 *
7
 * User:    Carl Owens
8
 * Date:    19/01/2017
9
 * Time:    15:31
10
 * File:    BankwireDirectPayIn.php
11
 **/
12
13
namespace PartFire\MangoPayBundle\Models\DTOs;
14
15
class BankwireDirectPayIn
16
{
17
    private $tag;
18
19
    private $authorId;
20
21
    private $creditedWalletId;
22
23
    private $creditedUserId;
24
25
    private $declaredDebitedFundsCurrency;
26
27
    private $declaredDebitedFundsAmount;
28
29
    private $declaredFeesCurrency;
30
31
    private $declaredFeesAmount;
32
33
    private $status;
34
35
    /**
36
     * @return mixed
37
     */
38
    public function getTag()
39
    {
40
        return $this->tag;
41
    }
42
43
    /**
44
     * @param mixed $tag
45
     */
46
    public function setTag($tag)
47
    {
48
        $this->tag = $tag;
49
    }
50
51
    /**
52
     * @return mixed
53
     */
54
    public function getAuthorId()
55
    {
56
        return $this->authorId;
57
    }
58
59
    /**
60
     * @param mixed $authorId
61
     */
62
    public function setAuthorId($authorId)
63
    {
64
        $this->authorId = $authorId;
65
    }
66
67
    /**
68
     * @return mixed
69
     */
70
    public function getCreditedWalletId()
71
    {
72
        return $this->creditedWalletId;
73
    }
74
75
    /**
76
     * @param mixed $creditedWalletId
77
     */
78
    public function setCreditedWalletId($creditedWalletId)
79
    {
80
        $this->creditedWalletId = $creditedWalletId;
81
    }
82
83
    /**
84
     * @return mixed
85
     */
86
    public function getCreditedUserId()
87
    {
88
        return $this->creditedUserId;
89
    }
90
91
    /**
92
     * @param mixed $creditedUserId
93
     */
94
    public function setCreditedUserId($creditedUserId)
95
    {
96
        $this->creditedUserId = $creditedUserId;
97
    }
98
99
    /**
100
     * @return mixed
101
     */
102
    public function getDeclaredDebitedFundsCurrency()
103
    {
104
        return $this->declaredDebitedFundsCurrency;
105
    }
106
107
    /**
108
     * @param mixed $declaredDebitedFundsCurrency
109
     */
110
    public function setDeclaredDebitedFundsCurrency($declaredDebitedFundsCurrency)
111
    {
112
        $this->declaredDebitedFundsCurrency = $declaredDebitedFundsCurrency;
113
    }
114
115
    /**
116
     * @return mixed
117
     */
118
    public function getDeclaredDebitedFundsAmount()
119
    {
120
        return $this->declaredDebitedFundsAmount;
121
    }
122
123
    /**
124
     * @param mixed $declaredDebitedFundsAmount
125
     */
126
    public function setDeclaredDebitedFundsAmount($declaredDebitedFundsAmount)
127
    {
128
        $this->declaredDebitedFundsAmount = $declaredDebitedFundsAmount;
129
    }
130
131
    /**
132
     * @return mixed
133
     */
134
    public function getDeclaredFeesCurrency()
135
    {
136
        return $this->declaredFeesCurrency;
137
    }
138
139
    /**
140
     * @param mixed $declaredFeesCurrency
141
     */
142
    public function setDeclaredFeesCurrency($declaredFeesCurrency)
143
    {
144
        $this->declaredFeesCurrency = $declaredFeesCurrency;
145
    }
146
147
    /**
148
     * @return mixed
149
     */
150
    public function getDeclaredFeesAmount()
151
    {
152
        return $this->declaredFeesAmount;
153
    }
154
155
    /**
156
     * @param mixed $declaredFeesAmount
157
     */
158
    public function setDeclaredFeesAmount($declaredFeesAmount)
159
    {
160
        $this->declaredFeesAmount = $declaredFeesAmount;
161
    }
162
163
    /**
164
     * @return mixed
165
     */
166
    public function getStatus()
167
    {
168
        return $this->status;
169
    }
170
171
    /**
172
     * @param mixed $status
173
     */
174
    public function setStatus($status)
175
    {
176
        $this->status = $status;
177
    }
178
}
179