We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 76f4ee6 + b2f1a3b commit ee3eb9cCopy full SHA for ee3eb9c
src/Item.php
@@ -71,6 +71,12 @@ class Item extends Model
71
72
public $params;
73
74
+ /**
75
+ * @var Unit
76
+ */
77
+
78
+ public $unit;
79
80
/**
81
* Return a Param by ID
82
* @param string $id
src/Unit.php
@@ -0,0 +1,29 @@
1
+<?php
2
+/**
3
+ * This file is part of the Ingram Micro Cloud Blue Connect SDK.
4
+ *
5
+ * @copyright (c) 2018. Ingram Micro. All Rights Reserved.
6
7
8
+namespace Connect;
9
10
11
+class Unit extends Model
12
+{
13
14
15
+ * @var string
16
17
+ public $id;
18
19
20
21
22
+ public $title;
23
24
25
26
27
28
29
+}
0 commit comments