| 1 | <?php |
||
| 29 | class InvoiceAddressDraft implements EntityInterface, IdentifiableEntityInterface, ModificationDateAwareEntityInterface |
||
| 30 | { |
||
| 31 | use EntityTrait, IdentifiableEntityTrait, ModificationDateAwareEntityTrait; |
||
| 32 | |||
| 33 | |||
| 34 | /** |
||
| 35 | * |
||
| 36 | * @ODM\String |
||
| 37 | * @ODM\Index |
||
| 38 | * @var string |
||
| 39 | */ |
||
| 40 | protected $jobId; |
||
| 41 | |||
| 42 | /** |
||
| 43 | * |
||
| 44 | * @ODM\EmbedOne(targetDocument="\Orders\Entity\InvoiceAddress") |
||
| 45 | * @var InvoiceAddressInterface |
||
| 46 | */ |
||
| 47 | protected $invoiceAddress; |
||
| 48 | |||
| 49 | /** |
||
| 50 | * @param \Orders\Entity\InvoiceAddressInterface $invoiceAddress |
||
| 51 | * |
||
| 52 | * @return self |
||
| 53 | */ |
||
| 54 | public function setInvoiceAddress($invoiceAddress) |
||
| 60 | |||
| 61 | /** |
||
| 62 | * @return \Orders\Entity\InvoiceAddressInterface |
||
| 63 | */ |
||
| 64 | public function getInvoiceAddress() |
||
| 68 | |||
| 69 | /** |
||
| 70 | * @param string $jobId |
||
| 71 | * |
||
| 72 | * @return self |
||
| 73 | */ |
||
| 74 | public function setJobId($jobId) |
||
| 80 | |||
| 81 | /** |
||
| 82 | * @return string |
||
| 83 | */ |
||
| 84 | public function getJobId() |
||
| 88 | } |