for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace DalliSDK\Models;
use DalliSDK\Traits\Fillable;
use JMS\Serializer\Annotation as JMS;
/**
* Модель для ярлыков на заказы
*
* @see https://api.dalli-service.com/v1/doc/stickers
* @JMS\XmlRoot("order")
*/
class StickerOrder
{
use Fillable;
* @JMS\Type("string")
* @JMS\SerializedName("barcode")
private ?string $barcode;
* @JMS\SerializedName("image")
private ?string $image;
* @JMS\SerializedName("sender")
private ?string $sender;
* @JMS\SerializedName("id_im")
private ?string $idIm;
* @JMS\SerializedName("date")
private ?string $date;
* @JMS\SerializedName("person")
private ?string $person;
* @JMS\SerializedName("address")
private ?string $address;
* @return string|null
public function getBarcode(): ?string
return $this->barcode;
}
public function getImage(): ?string
return $this->image;
public function getSender(): ?string
return $this->sender;
public function getIdIm(): ?string
return $this->idIm;
public function getDate(): ?string
return $this->date;
public function getPerson(): ?string
return $this->person;
public function getAddress(): ?string
return $this->address;