Updated Invoicing APIs

- Updated Model objects.
- Updated Samples.
- Updated Tests.
This commit is contained in:
Jay Patel
2016-07-13 15:16:25 -05:00
parent 9534bcb176
commit c714f77980
48 changed files with 3320 additions and 2881 deletions

View File

@@ -0,0 +1,41 @@
<?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;
}
}