We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee818ef commit 7ab06cdCopy full SHA for 7ab06cd
1 file changed
src/Model/Asset.php
@@ -0,0 +1,32 @@
1
+<?php
2
+
3
+namespace Shotstack\Client\Model;
4
5
+class Asset
6
+{
7
+ const DISCRIMINATOR = null;
8
9
+ /**
10
+ * The original name of the model.
11
+ *
12
+ * @var string
13
+ */
14
+ protected static $openAPIModelName = 'Asset';
15
16
17
+ * Array of property to type mappings. Used for (de)serialization
18
19
+ * @var string[]
20
21
+ protected static $openAPITypes = [];
22
23
24
25
26
+ * @return array
27
28
+ public static function openAPITypes()
29
+ {
30
+ return self::$openAPITypes;
31
+ }
32
+}
0 commit comments