1 <?php
2 3 4
5 namespace Team3\PayU\Order\Model\Buyer;
6
7 use JMS\Serializer\Annotation as JMS;
8 use Team3\PayU\Order\Model\Traits\AddressTrait;
9
10 11 12 13 14
15 class Invoice implements InvoiceInterface
16 {
17 use AddressTrait;
18
19 20 21 22
23 protected $recipientTin;
24
25 26 27 28
29 protected $eInvoiceRequested;
30
31 32 33
34 public function isEInvoiceRequested()
35 {
36 return $this->eInvoiceRequested;
37 }
38
39 40 41 42 43
44 public function setEInvoiceRequested($eInvoiceRequested)
45 {
46 $this->eInvoiceRequested = $eInvoiceRequested;
47
48 return $this;
49 }
50
51 52 53
54 public function getRecipientTin()
55 {
56 return $this->recipientTin;
57 }
58
59 60 61 62 63
64 public function setRecipientTin($recipientTin)
65 {
66 $this->recipientTin = $recipientTin;
67
68 return $this;
69 }
70 }
71