PluginProbe
AliNext – WooCommerce Dropshipping Plugin for AliExpress / trunk
AliNext – WooCommerce Dropshipping Plugin for AliExpress vtrunk
ali2woo-lite / includes / classes / dto / api / OrderPreviewItemDto.php

OrderPreviewItemDto.php in AliNext – WooCommerce Dropshipping Plugin for AliExpress trunk, at includes/classes/dto/api/OrderPreviewItemDto.php

45 lines 769 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * Description of OrderPreviewItemDto
5 *
6 * @author Ali2Woo Team
7 */
8
9 namespace AliNext_Lite;;
10
11 class OrderPreviewItemDto
12 {
13 public function __construct(
14 private string $productId, private string $skuId,
15 private string $imageUrl, private int $quantity = 1,
16 private array $attributes = []
17 ) {}
18
19 public function getProductId(): string
20 {
21 return $this->productId;
22 }
23
24 public function getSkuId(): string
25 {
26 return $this->skuId;
27 }
28
29 public function getImageUrl(): string
30 {
31 return $this->imageUrl;
32 }
33
34 public function getQuantity(): int
35 {
36 return $this->quantity;
37 }
38
39 public function getAttributes(): array
40 {
41 return $this->attributes;
42 }
43
44 }
45