commercetools-sdk-php-v2  master
The platform, import-api and ml-api PHP sdks generated from our api reference.
ProductVariantDraftImport.php
1 <?php
2 
3 declare(strict_types=1);
10 
16 
18 {
19  public const FIELD_SKU = 'sku';
20  public const FIELD_KEY = 'key';
21  public const FIELD_PRICES = 'prices';
22  public const FIELD_ATTRIBUTES = 'attributes';
23  public const FIELD_IMAGES = 'images';
24  public const FIELD_ASSETS = 'assets';
25 
30  public function getSku();
31 
36  public function getKey();
37 
42  public function getPrices();
43 
48  public function getAttributes();
49 
54  public function getImages();
55 
60  public function getAssets();
61 
65  public function setSku(?string $sku): void;
66 
70  public function setKey(?string $key): void;
71 
75  public function setPrices(?PriceDraftImportCollection $prices): void;
76 
80  public function setAttributes(?AttributeCollection $attributes): void;
81 
85  public function setImages(?ImageCollection $images): void;
86 
90  public function setAssets(?AssetCollection $assets): void;
91 }