File: //proc/self/cwd/wp-content/plugins/woocommerce-zapier/legacy/Payload/Item/DownloadableFile.php
<?php
namespace OM4\Zapier\Payload\Item;
use OM4\Zapier\Payload\Base\Item;
defined( 'ABSPATH' ) || exit;
/**
* Implement base structure requirements for Downloadable File Object.
*
* @deprecated 2.0.0
*/
class DownloadableFile extends Item {
/**
* Holds the type information for validate
*
* @var array
*/
protected static $property_types = array(
'filename' => 'string',
'download_url' => 'string',
);
/**
* File Name.
*
* @var string
*/
protected $filename;
/**
* URL to download the downloadable file from.
*
* @var string
*/
protected $download_url;
}