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,65 @@
<?php
namespace PayPal\Api;
use PayPal\Common\PayPalModel;
/**
* Class TemplateSettings
*
* Settings per template
*
* @package PayPal\Api
*
* @property string field_name
* @property \PayPal\Api\TemplateSettingsMetadata display_preference
*/
class TemplateSettings extends PayPalModel
{
/**
* The field name (for any field in template_data) for which the corresponding display preferences will be mapped to.
*
* @param string $field_name
*
* @return $this
*/
public function setFieldName($field_name)
{
$this->field_name = $field_name;
return $this;
}
/**
* The field name (for any field in template_data) for which the corresponding display preferences will be mapped to.
*
* @return string
*/
public function getFieldName()
{
return $this->field_name;
}
/**
* Settings metadata for each field.
*
* @param \PayPal\Api\TemplateSettingsMetadata $display_preference
*
* @return $this
*/
public function setDisplayPreference($display_preference)
{
$this->display_preference = $display_preference;
return $this;
}
/**
* Settings metadata for each field.
*
* @return \PayPal\Api\TemplateSettingsMetadata
*/
public function getDisplayPreference()
{
return $this->display_preference;
}
}