*/ private $packetIds; /** * Label format. * * @var string */ private $labelFormat; /** * Offset. * * @var int */ private $offset; /** * PacketsLabelsPdf constructor. * * @param string[] $packetIds Packet ids. * @param string $labelFormat Label format. * @param int $offset Offset. */ public function __construct( array $packetIds, string $labelFormat, int $offset ) { $this->packetIds = $packetIds; $this->labelFormat = $labelFormat; $this->offset = $offset; } /** * Gets packet ids. * * @return array */ public function getPacketIds(): array { return $this->packetIds; } /** * Gets label format. * * @return string */ public function getFormat(): string { return $this->labelFormat; } /** * Gets offset. * * @return int */ public function getOffset(): int { return $this->offset; } }