Skip to content

Commit 7ab06cd

Browse files
committed
Add Asset class
1 parent ee818ef commit 7ab06cd

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

src/Model/Asset.php

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
* Array of property to type mappings. Used for (de)serialization
25+
*
26+
* @return array
27+
*/
28+
public static function openAPITypes()
29+
{
30+
return self::$openAPITypes;
31+
}
32+
}

0 commit comments

Comments
 (0)