mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-15 12:37:14 +01:00
51 lines
1.3 KiB
PHP
51 lines
1.3 KiB
PHP
|
<?php
|
||
|
|
||
|
namespace Xentral\Carrier\SendCloud\Data;
|
||
|
|
||
|
class ParcelItem
|
||
|
{
|
||
|
public string $HsCode;
|
||
|
|
||
|
/**
|
||
|
* @var int weight in grams
|
||
|
*/
|
||
|
public int $Weight;
|
||
|
public int $Quantity;
|
||
|
public string $Description;
|
||
|
public string $OriginCountry;
|
||
|
public float $Price;
|
||
|
public string $PriceCurrency;
|
||
|
public string $Sku;
|
||
|
public string $ProductId;
|
||
|
|
||
|
public function toApiRequest(): array {
|
||
|
return [
|
||
|
'hs_code' => $this->HsCode,
|
||
|
'weight' => number_format($this->Weight / 1000, 3, '.', null),
|
||
|
'quantity' => $this->Quantity,
|
||
|
'description' => $this->Description,
|
||
|
'price' => [
|
||
|
'value' => $this->Price,
|
||
|
'currency' => $this->PriceCurrency,
|
||
|
],
|
||
|
'origin_country' => $this->OriginCountry,
|
||
|
'sku' => $this->Sku,
|
||
|
'product_id' => $this->ProductId,
|
||
|
];
|
||
|
}
|
||
|
|
||
|
public static function fromApiResponse(object $data): ParcelItem
|
||
|
{
|
||
|
$obj = new ParcelItem();
|
||
|
$obj->HsCode = $data->hs_code;
|
||
|
$obj->Weight = intval(floatval($data->weight)*1000);
|
||
|
$obj->Quantity = $data->quantity;
|
||
|
$obj->Description = $data->description;
|
||
|
$obj->Price = $data->price->value;
|
||
|
$obj->PriceCurrency = $data->price->currency;
|
||
|
$obj->OriginCountry = $data->origin_country;
|
||
|
$obj->Sku = $data->sku;
|
||
|
$obj->ProductId = $data->product_id;
|
||
|
return $obj;
|
||
|
}
|
||
|
}
|