1 | <?php |
||
62 | class RetrievePaymentResultEntity extends ResultEntity |
||
63 | { |
||
64 | /** @var string $id */ |
||
65 | protected $id; |
||
66 | |||
67 | /** @var string $status */ |
||
68 | protected $status; |
||
69 | |||
70 | /** @var string $colorState */ |
||
71 | protected $colorState; |
||
72 | |||
73 | /** @var string $merchantName */ |
||
74 | protected $merchantName; |
||
75 | |||
76 | /** @var string $customerName */ |
||
77 | protected $customerName; |
||
78 | |||
79 | /** @var string $customerName */ |
||
80 | protected $customerEmail; |
||
81 | |||
82 | /** @var string $paymentType */ |
||
83 | protected $paymentType; |
||
84 | |||
85 | /** @var string $lastAction */ |
||
86 | protected $lastAction; |
||
87 | |||
88 | /** @var \DateTime|bool $createdAt */ |
||
89 | protected $createdAt; |
||
90 | |||
91 | /** @var \DateTime|bool $updatedAt */ |
||
92 | protected $updatedAt; |
||
93 | |||
94 | /** @var string $channel */ |
||
95 | protected $channel; |
||
96 | |||
97 | /** @var string $reference */ |
||
98 | protected $reference; |
||
99 | |||
100 | /** @var float $amount */ |
||
101 | protected $amount; |
||
102 | |||
103 | /** @var float $amount */ |
||
104 | protected $downPayment; |
||
105 | |||
106 | /** @var string $currency */ |
||
107 | protected $currency; |
||
108 | |||
109 | /** @var float $fee */ |
||
110 | protected $fee; |
||
111 | |||
112 | /** @var float $total */ |
||
113 | protected $total; |
||
114 | |||
115 | /** @var AddressEntity $address */ |
||
116 | protected $address; |
||
117 | |||
118 | /** @var PaymentDetailsEntity $paymentDetails */ |
||
119 | protected $paymentDetails; |
||
120 | |||
121 | /** @var array $paymentDetailsArray */ |
||
122 | protected $paymentDetailsArray; |
||
123 | |||
124 | /** @var ChannelSetEntity */ |
||
125 | protected $channelSet; |
||
126 | |||
127 | /** |
||
128 | * Sets Created At |
||
129 | * |
||
130 | * @param string $createdAt |
||
131 | */ |
||
132 | public function setCreatedAt($createdAt) |
||
136 | |||
137 | /** |
||
138 | * Sets Updated At |
||
139 | * |
||
140 | * @param string $updatedAt |
||
141 | */ |
||
142 | public function setUpdatedAt($updatedAt) |
||
146 | |||
147 | /** |
||
148 | * Sets Address |
||
149 | * |
||
150 | * @param array $address |
||
151 | */ |
||
152 | public function setAddress($address) |
||
156 | |||
157 | /** |
||
158 | * Sets Channel Set |
||
159 | * |
||
160 | * @param array $channelSet |
||
161 | */ |
||
162 | public function setChannelSet($channelSet) |
||
166 | |||
167 | /** |
||
168 | * Sets Payment Details |
||
169 | * |
||
170 | * @param array $paymentDetails |
||
171 | */ |
||
172 | public function setPaymentDetails($paymentDetails) |
||
176 | |||
177 | /** |
||
178 | * @param \stdClass|array $details |
||
179 | */ |
||
180 | public function setPaymentDetailsArray($details) |
||
187 | } |
||
188 |