customsDeclarationId = $customsDeclarationId; $this->customsCode = $customsCode; $this->value = $value; $this->productNameEn = $productNameEn; $this->unitsCount = $unitsCount; $this->countryOfOrigin = $countryOfOrigin; $this->weight = $weight; } /** * Country of origin. * * @return string */ public function getCountryOfOrigin(): string { return $this->countryOfOrigin; } /** * Customs code. * * @return string */ public function getCustomsCode(): string { return $this->customsCode; } /** * Gets customs declaration. * * @return string */ public function getCustomsDeclarationId(): string { return $this->customsDeclarationId; } /** * Gets ID. * * @return string|null */ public function getId(): ?string { return $this->id; } /** * Sets ID. * * @param string|null $id ID. * @return void */ public function setId( ?string $id ): void { $this->id = $id; } /** * Gets product name. * * @return string|null */ public function getProductName(): ?string { return $this->productName; } /** * Sets product name. * * @param string|null $productName Product name. * @return void */ public function setProductName( ?string $productName ): void { $this->productName = $productName; } /** * Product name english. * * @return string */ public function getProductNameEn(): string { return $this->productNameEn; } /** * Amount. * * @return int */ public function getUnitsCount(): int { return $this->unitsCount; } /** * Gets value. * * @return float */ public function getValue(): float { return $this->value; } /** * Gets weight. * * @return float */ public function getWeight(): float { return $this->weight; } /** * Tells if it contains food or book. * * @return bool */ public function isFoodOrBook(): bool { return $this->isFoodOrBook; } /** * Sets book or food flag. * * @param bool $isFoodOrBook Food or book. * @return void */ public function setIsFoodOrBook( bool $isFoodOrBook ): void { $this->isFoodOrBook = $isFoodOrBook; } /** * Tells if it contains VOC. * * @return bool */ public function isVoc(): bool { return $this->isVoc; } /** * Sets VOC flag. * * @param bool $isVoc VOC. * @return void */ public function setIsVoc( bool $isVoc ): void { $this->isVoc = $isVoc; } }