This repository has been archived on 2026-04-06. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
PayPal-PHP-SDK/lib/PayPal/Api/TemplateSettingsMetadata.php
Jay Patel c714f77980 Updated Invoicing APIs
- Updated Model objects.
- Updated Samples.
- Updated Tests.
2016-07-13 15:57:58 -05:00

42 lines
705 B
PHP

<?php
namespace PayPal\Api;
use PayPal\Common\PayPalModel;
/**
* Class TemplateSettingsMetadata
*
* Settings Metadata per field in template
*
* @package PayPal\Api
*
* @property bool hidden
*/
class TemplateSettingsMetadata extends PayPalModel
{
/**
* Indicates whether this field should be hidden. default is false
*
* @param bool $hidden
*
* @return $this
*/
public function setHidden($hidden)
{
$this->hidden = $hidden;
return $this;
}
/**
* Indicates whether this field should be hidden. default is false
*
* @return bool
*/
public function getHidden()
{
return $this->hidden;
}
}