Skip to content

Commit

Permalink
Add Asset class
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffski committed Nov 21, 2019
1 parent ee818ef commit 7ab06cd
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions src/Model/Asset.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<?php

namespace Shotstack\Client\Model;

class Asset
{
const DISCRIMINATOR = null;

/**
* The original name of the model.
*
* @var string
*/
protected static $openAPIModelName = 'Asset';

/**
* Array of property to type mappings. Used for (de)serialization
*
* @var string[]
*/
protected static $openAPITypes = [];

/**
* Array of property to type mappings. Used for (de)serialization
*
* @return array
*/
public static function openAPITypes()
{
return self::$openAPITypes;
}
}

0 comments on commit 7ab06cd

Please sign in to comment.