1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
<?php
namespace Commercetools\Core\Model\ProductSelection;
use Commercetools\Core\Model\Common\JsonObject;
/**
* @package Commercetools\Core\Model\ProductSelection
* @link https://docs.commercetools.com/api/projects/product-selections#assignedproductselection
* @method ProductSelectionReference getProductSelection()
* @method AssignedProductSelection setProductSelection(ProductSelectionReference $productSelection = null)
*/
class AssignedProductSelection extends JsonObject
{
public function fieldDefinitions()
{
return [
'productSelection' => [static::TYPE => ProductSelectionReference::class],
];
}
}