-
-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathCapability.php
More file actions
33 lines (23 loc) · 601 Bytes
/
Capability.php
File metadata and controls
33 lines (23 loc) · 601 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php
namespace Mvdnbrk\DhlParcel\Resources;
use Tightenco\Collect\Support\Collection;
class Capability extends BaseResource
{
/** @var int */
public $rank;
/** @var string */
public $fromCountryCode;
/** @var string */
public $toCountryCode;
/** @var Product */
public $product;
/** @var ParcelType */
public $parcelType;
/** @var \Tightenco\Collect\Support\Collection */
public $options;
public function __construct(array $attributes = [])
{
$this->options = new Collection;
parent::__construct($attributes);
}
}