singleSalesPriceNet = new Money(); $this->totalSalesPriceNet = new Money(); $this->singlePurchasePriceNet = new Money(); $this->totalPurchasePriceNet = new Money(); } /** * Get id. * * @return int Model id * * @since 1.0.0 */ public function getId() : int { return $this->id; } /** * Set event. * * @param int $event Event * * @return void * * @since 1.0.0 */ public function setEvent(int $event) : void { $this->event = $event; } /** * Get event. * * @return mixed * * @since 1.0.0 */ public function getEvent() { return $this->event; } /** * Set promotion. * * @param int $promotion Promotion * * @return void * * @since 1.0.0 */ public function setPromotion(int $promotion) : void { $this->promotion = $promotion; } /** * Get promotion. * * @return string * * @since 1.0.0 */ public function getPromotion() { return $this->promotion; } /** * Set order. * * @param int $order Order * * @return void * * @since 1.0.0 */ public function setOrder(int $order) : void { $this->order = $order; } /** * Get order. * * @return int * * @since 1.0.0 */ public function getOrder() : int { return $this->order; } /** * Set item. * * @param mixed $item Item * * @return void * * @since 1.0.0 */ public function setItem($item) : void { $this->item = $item; } /** * {@inheritdoc} */ public function jsonSerialize() { return []; } }