File tree Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change
1
+ <?php
2
+ /** @noinspection all */
3
+
4
+ namespace Code16 \LaravelTiteliveClient {
5
+
6
+ use Carbon \Carbon ;
7
+ use Code16 \LaravelTiteliveClient \Enum \BookAvailability ;
8
+ use Illuminate \Database \Eloquent \Model ;
9
+
10
+ /**
11
+ * @property string id
12
+ * @property string title
13
+ * @property string[] authors
14
+ * @property string|null translator
15
+ * @property string description
16
+ * @property int weight
17
+ * @property int page_count
18
+ * @property string[] category_codes
19
+ * @property string|null readership
20
+ * @property string editor
21
+ * @property int price
22
+ * @property Carbon|null published_date
23
+ * @property string support
24
+ * @property string[] visuals
25
+ * @property BookAvailability availability
26
+ * @property int stock
27
+ * @property string[] editions
28
+ * @property \DateTimeInterface refreshed_at
29
+ */
30
+ class Book extends Model {}
31
+ }
You can’t perform that action at this time.
0 commit comments