Files
2024-10-25 14:16:28 +02:00

23 lines
484 B
PHP

<?php
namespace x13allegro\Api\Model\Command\PriceChange;
use x13allegro\Api\Model\Command\CommandInterface;
final class PriceChangeCommand implements CommandInterface
{
/** @var Modification */
public $modification;
/** @var \x13allegro\Api\Model\Command\OfferCriteria[] */
public $offerCriteria;
/**
* @return \x13allegro\Api\Model\Command\OfferCriteria
*/
public function offerCriteria()
{
return $this->offerCriteria[0];
}
}