mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-15 20:47:15 +01:00
25 lines
567 B
PHP
25 lines
567 B
PHP
<?php
|
|
|
|
namespace Xentral\Carrier\SendCloud\Data;
|
|
|
|
class Document
|
|
{
|
|
public const TYPE_LABEL = 'label';
|
|
public const TYPE_CP71 = 'cp71';
|
|
public const TYPE_CN23 = 'cn23';
|
|
public const TYPE_CN23_DEFAULT = 'cn23-default';
|
|
public const TYPE_COMMERCIAL_INVOICE = 'commercial-invoice';
|
|
|
|
public string $Type;
|
|
public string $Size;
|
|
public string $Link;
|
|
|
|
public static function fromApiResponse(object $data): Document
|
|
{
|
|
$obj = new Document();
|
|
$obj->Type = $data->type;
|
|
$obj->Size = $data->size;
|
|
$obj->Link = $data->link;
|
|
return $obj;
|
|
}
|
|
} |