code stringlengths 1 2.01M | repo_name stringlengths 3 62 | path stringlengths 1 267 | language stringclasses 231 values | license stringclasses 13 values | size int64 1 2.01M |
|---|---|---|---|---|---|
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* SchedulingInfoType
*
* Contains information for Scheduling limits for the user. All dtails must be
* present,unless we will have revise call one day, just in case we might let's
* make min occur = 0
*
* @package PayPal
*/
class SchedulingInfoType extends XSDSimpleType
{
var $MaxScheduledMinutes;
var $MinScheduledMinutes;
var $MaxScheduledItems;
function SchedulingInfoType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'MaxScheduledMinutes' =>
array (
'required' => false,
'type' => 'int',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'MinScheduledMinutes' =>
array (
'required' => false,
'type' => 'int',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'MaxScheduledItems' =>
array (
'required' => false,
'type' => 'int',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getMaxScheduledMinutes()
{
return $this->MaxScheduledMinutes;
}
function setMaxScheduledMinutes($MaxScheduledMinutes, $charset = 'iso-8859-1')
{
$this->MaxScheduledMinutes = $MaxScheduledMinutes;
$this->_elements['MaxScheduledMinutes']['charset'] = $charset;
}
function getMinScheduledMinutes()
{
return $this->MinScheduledMinutes;
}
function setMinScheduledMinutes($MinScheduledMinutes, $charset = 'iso-8859-1')
{
$this->MinScheduledMinutes = $MinScheduledMinutes;
$this->_elements['MinScheduledMinutes']['charset'] = $charset;
}
function getMaxScheduledItems()
{
return $this->MaxScheduledItems;
}
function setMaxScheduledItems($MaxScheduledItems, $charset = 'iso-8859-1')
{
$this->MaxScheduledItems = $MaxScheduledItems;
$this->_elements['MaxScheduledItems']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/SchedulingInfoType.php | PHP | asf20 | 2,329 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractResponseType.php';
/**
* GetIncentiveEvaluationResponseType
*
* @package PayPal
*/
class GetIncentiveEvaluationResponseType extends AbstractResponseType
{
var $GetIncentiveEvaluationResponseDetails;
function GetIncentiveEvaluationResponseType()
{
parent::AbstractResponseType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'GetIncentiveEvaluationResponseDetails' =>
array (
'required' => true,
'type' => 'GetIncentiveEvaluationResponseDetailsType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getGetIncentiveEvaluationResponseDetails()
{
return $this->GetIncentiveEvaluationResponseDetails;
}
function setGetIncentiveEvaluationResponseDetails($GetIncentiveEvaluationResponseDetails, $charset = 'iso-8859-1')
{
$this->GetIncentiveEvaluationResponseDetails = $GetIncentiveEvaluationResponseDetails;
$this->_elements['GetIncentiveEvaluationResponseDetails']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/GetIncentiveEvaluationResponseType.php | PHP | asf20 | 1,293 |
<?php
/**
* This is one of two base Type files that are not automatically
* generated from the WSDL.
*
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDType.php';
/**
* Base Type classs that allows for conversion of types into
* SOAP_Value objects.
*
* @package PayPal
*/
class XSDSimpleType extends XSDType
{
/**
* The simple value of this type.
*
* @access protected
*
* @var mixed $_value
*/
var $_value;
/**
* The charset of this type's value.
*
* @access protected
*
* @var string $_charset
*/
var $_charset = 'iso-8859-1';
/**
* Constructor.
*/
function XSDSimpleType($value = null, $attributes = array())
{
$this->_value = $value;
$this->_attributeValues = $attributes;
}
/**
* Turn this type into a SOAP_Value object useable with
* SOAP_Client.
*
* @param string $name The name to use for the value.
*
* @return SOAP_Value A SOAP_Value object representing this type instance.
*/
function &getSoapValue($name, $ns = null)
{
include_once 'PayPal/SOAP/Value.php';
if (isset($this->_value)) {
// Treat as a XSDSimpleType with only the _value
$value = $this->_value;
if (is_string($value) && $this->_charset = 'iso-8859-1' && (utf8_encode(utf8_decode($value)) != $value)) {
$value = utf8_encode($value);
}
if (count($this->_attributeValues)) {
$v =& new SOAP_Value($name, '', $value, $this->_attributeValues);
} else {
$v =& new SOAP_Value($name, '', $value);
}
} else {
// Treat as a base XSDType
$elements = array();
foreach ($this->_elements as $ename => $element) {
$value = $this->$ename;
// Values that are null and not required can be omitted
// from the serialized XML (and thus the SOAP_Value
// object) entirely.
if (is_null($value) && !$element['required']) {
continue;
}
// Append namespace prefixes if this element came from a
// namespace different from the base type's namespace.
if (!empty($element['namespace']) && $element['namespace'] != $this->_namespace) {
$ename = '{' . $element['namespace'] . '}' . $ename;
}
if (is_a($value, 'XSDType')) {
$elements[] =& $value->getSoapValue($ename, $this->_namespace);
} else {
if (is_string($value) && $element['charset'] == 'iso-8859-1' && (utf8_encode(utf8_decode($value)) != $value)) {
$value = utf8_encode($value);
}
$elements[] =& new SOAP_Value($ename, $element['type'], $value);
}
}
if (count($elements) == 1) {
$elements = array_shift($elements);
}
if (!is_null($ns) && $ns != $this->_namespace) {
$this->_attributeValues['xmlns'] = $this->_namespace;
}
if (count($this->_attributeValues)) {
$v =& new SOAP_Value($name, '', $elements, $this->_attributeValues);
} else {
$v =& new SOAP_Value($name, '', $elements);
}
}
return $v;
}
/**
* Set the value of this simple object.
*/
function setval($value, $charset = 'iso-8859-1')
{
$this->_value = $value;
$this->_charset = $charset;
}
} | 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/XSDSimpleType.php | PHP | asf20 | 3,445 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractResponseType.php';
/**
* SetAccessPermissionsResponseType
*
* @package PayPal
*/
class SetAccessPermissionsResponseType extends AbstractResponseType
{
/**
* A timestamped token by which you identify to PayPal that you are processing this
* user. The token expires after three hours.
*/
var $Token;
function SetAccessPermissionsResponseType()
{
parent::AbstractResponseType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'Token' =>
array (
'required' => true,
'type' => 'AuthFlowTokenType',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
));
}
function getToken()
{
return $this->Token;
}
function setToken($Token, $charset = 'iso-8859-1')
{
$this->Token = $Token;
$this->_elements['Token']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/SetAccessPermissionsResponseType.php | PHP | asf20 | 1,120 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* PayerInfoType
*
* PayerInfoType Payer information
*
* @package PayPal
*/
class PayerInfoType extends XSDSimpleType
{
/**
* Email address of payer
*/
var $Payer;
/**
* Unique customer ID
*/
var $PayerID;
/**
* Status of payer's email address
*/
var $PayerStatus;
/**
* Name of payer
*/
var $PayerName;
/**
* Payment sender's country of residence using standard two-character ISO 3166
* country codes. Character length and limitations: Two single-byte characters
*/
var $PayerCountry;
/**
* Payer's business name.
*/
var $PayerBusiness;
/**
* Payer's business address
*/
var $Address;
/**
* Business contact telephone number
*/
var $ContactPhone;
function PayerInfoType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'Payer' =>
array (
'required' => false,
'type' => 'EmailAddressType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'PayerID' =>
array (
'required' => false,
'type' => 'UserIDType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'PayerStatus' =>
array (
'required' => false,
'type' => 'PayPalUserStatusCodeType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'PayerName' =>
array (
'required' => true,
'type' => 'PersonNameType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'PayerCountry' =>
array (
'required' => false,
'type' => 'CountryCodeType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'PayerBusiness' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Address' =>
array (
'required' => false,
'type' => 'AddressType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ContactPhone' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getPayer()
{
return $this->Payer;
}
function setPayer($Payer, $charset = 'iso-8859-1')
{
$this->Payer = $Payer;
$this->_elements['Payer']['charset'] = $charset;
}
function getPayerID()
{
return $this->PayerID;
}
function setPayerID($PayerID, $charset = 'iso-8859-1')
{
$this->PayerID = $PayerID;
$this->_elements['PayerID']['charset'] = $charset;
}
function getPayerStatus()
{
return $this->PayerStatus;
}
function setPayerStatus($PayerStatus, $charset = 'iso-8859-1')
{
$this->PayerStatus = $PayerStatus;
$this->_elements['PayerStatus']['charset'] = $charset;
}
function getPayerName()
{
return $this->PayerName;
}
function setPayerName($PayerName, $charset = 'iso-8859-1')
{
$this->PayerName = $PayerName;
$this->_elements['PayerName']['charset'] = $charset;
}
function getPayerCountry()
{
return $this->PayerCountry;
}
function setPayerCountry($PayerCountry, $charset = 'iso-8859-1')
{
$this->PayerCountry = $PayerCountry;
$this->_elements['PayerCountry']['charset'] = $charset;
}
function getPayerBusiness()
{
return $this->PayerBusiness;
}
function setPayerBusiness($PayerBusiness, $charset = 'iso-8859-1')
{
$this->PayerBusiness = $PayerBusiness;
$this->_elements['PayerBusiness']['charset'] = $charset;
}
function getAddress()
{
return $this->Address;
}
function setAddress($Address, $charset = 'iso-8859-1')
{
$this->Address = $Address;
$this->_elements['Address']['charset'] = $charset;
}
function getContactPhone()
{
return $this->ContactPhone;
}
function setContactPhone($ContactPhone, $charset = 'iso-8859-1')
{
$this->ContactPhone = $ContactPhone;
$this->_elements['ContactPhone']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/PayerInfoType.php | PHP | asf20 | 4,912 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* AttributeSetType
*
* AttributeSet.
*
* @package PayPal
*/
class AttributeSetType extends XSDSimpleType
{
var $Attribute;
function AttributeSetType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'Attribute' =>
array (
'required' => true,
'type' => 'AttributeType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
$this->_attributes = array_merge($this->_attributes,
array (
'AttributeSetID' =>
array (
'name' => 'AttributeSetID',
'type' => 'xs:string',
),
));
}
function getAttribute()
{
return $this->Attribute;
}
function setAttribute($Attribute, $charset = 'iso-8859-1')
{
$this->Attribute = $Attribute;
$this->_elements['Attribute']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/AttributeSetType.php | PHP | asf20 | 1,222 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* AmountType
*
* @package PayPal
*/
class AmountType extends XSDSimpleType
{
function AmountType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:CoreComponentTypes';
$this->_attributes = array_merge($this->_attributes,
array (
'currencyID' =>
array (
'name' => 'currencyID',
'type' => 'ebl:CurrencyCodeType',
'use' => 'required',
),
));
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/AmountType.php | PHP | asf20 | 648 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractRequestType.php';
/**
* BillOutstandingAmountRequestType
*
* @package PayPal
*/
class BillOutstandingAmountRequestType extends AbstractRequestType
{
var $BillOutstandingAmountRequestDetails;
function BillOutstandingAmountRequestType()
{
parent::AbstractRequestType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'BillOutstandingAmountRequestDetails' =>
array (
'required' => true,
'type' => 'BillOutstandingAmountRequestDetailsType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getBillOutstandingAmountRequestDetails()
{
return $this->BillOutstandingAmountRequestDetails;
}
function setBillOutstandingAmountRequestDetails($BillOutstandingAmountRequestDetails, $charset = 'iso-8859-1')
{
$this->BillOutstandingAmountRequestDetails = $BillOutstandingAmountRequestDetails;
$this->_elements['BillOutstandingAmountRequestDetails']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/BillOutstandingAmountRequestType.php | PHP | asf20 | 1,264 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractRequestType.php';
/**
* BMSetInventoryRequestType
*
* @package PayPal
*/
class BMSetInventoryRequestType extends AbstractRequestType
{
/**
* Hosted Button ID of button you wish to change.
*/
var $HostedButtonID;
/**
* Is Inventory tracked.
*/
var $TrackInv;
/**
* Is PNL Tracked.
*/
var $TrackPnl;
var $ItemTrackingDetails;
/**
* Option Index.
*/
var $OptionIndex;
var $OptionTrackingDetails;
/**
* URL of page to display when an item is soldout.
*/
var $SoldoutURL;
/**
* Whether to use the same digital download key repeatedly.
*/
var $ReuseDigitalDownloadKeys;
/**
* Whether to append these keys to the list or not (replace).
*/
var $AppendDigitalDownloadKeys;
/**
* Zero or more digital download keys to distribute to customers after transaction
* is completed.
*/
var $DigitalDownloadKeys;
function BMSetInventoryRequestType()
{
parent::AbstractRequestType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'HostedButtonID' =>
array (
'required' => true,
'type' => 'string',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'TrackInv' =>
array (
'required' => true,
'type' => 'string',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'TrackPnl' =>
array (
'required' => true,
'type' => 'string',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'ItemTrackingDetails' =>
array (
'required' => false,
'type' => 'ItemTrackingDetailsType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'OptionIndex' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'OptionTrackingDetails' =>
array (
'required' => false,
'type' => 'OptionTrackingDetailsType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'SoldoutURL' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'ReuseDigitalDownloadKeys' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'AppendDigitalDownloadKeys' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'DigitalDownloadKeys' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
));
}
function getHostedButtonID()
{
return $this->HostedButtonID;
}
function setHostedButtonID($HostedButtonID, $charset = 'iso-8859-1')
{
$this->HostedButtonID = $HostedButtonID;
$this->_elements['HostedButtonID']['charset'] = $charset;
}
function getTrackInv()
{
return $this->TrackInv;
}
function setTrackInv($TrackInv, $charset = 'iso-8859-1')
{
$this->TrackInv = $TrackInv;
$this->_elements['TrackInv']['charset'] = $charset;
}
function getTrackPnl()
{
return $this->TrackPnl;
}
function setTrackPnl($TrackPnl, $charset = 'iso-8859-1')
{
$this->TrackPnl = $TrackPnl;
$this->_elements['TrackPnl']['charset'] = $charset;
}
function getItemTrackingDetails()
{
return $this->ItemTrackingDetails;
}
function setItemTrackingDetails($ItemTrackingDetails, $charset = 'iso-8859-1')
{
$this->ItemTrackingDetails = $ItemTrackingDetails;
$this->_elements['ItemTrackingDetails']['charset'] = $charset;
}
function getOptionIndex()
{
return $this->OptionIndex;
}
function setOptionIndex($OptionIndex, $charset = 'iso-8859-1')
{
$this->OptionIndex = $OptionIndex;
$this->_elements['OptionIndex']['charset'] = $charset;
}
function getOptionTrackingDetails()
{
return $this->OptionTrackingDetails;
}
function setOptionTrackingDetails($OptionTrackingDetails, $charset = 'iso-8859-1')
{
$this->OptionTrackingDetails = $OptionTrackingDetails;
$this->_elements['OptionTrackingDetails']['charset'] = $charset;
}
function getSoldoutURL()
{
return $this->SoldoutURL;
}
function setSoldoutURL($SoldoutURL, $charset = 'iso-8859-1')
{
$this->SoldoutURL = $SoldoutURL;
$this->_elements['SoldoutURL']['charset'] = $charset;
}
function getReuseDigitalDownloadKeys()
{
return $this->ReuseDigitalDownloadKeys;
}
function setReuseDigitalDownloadKeys($ReuseDigitalDownloadKeys, $charset = 'iso-8859-1')
{
$this->ReuseDigitalDownloadKeys = $ReuseDigitalDownloadKeys;
$this->_elements['ReuseDigitalDownloadKeys']['charset'] = $charset;
}
function getAppendDigitalDownloadKeys()
{
return $this->AppendDigitalDownloadKeys;
}
function setAppendDigitalDownloadKeys($AppendDigitalDownloadKeys, $charset = 'iso-8859-1')
{
$this->AppendDigitalDownloadKeys = $AppendDigitalDownloadKeys;
$this->_elements['AppendDigitalDownloadKeys']['charset'] = $charset;
}
function getDigitalDownloadKeys()
{
return $this->DigitalDownloadKeys;
}
function setDigitalDownloadKeys($DigitalDownloadKeys, $charset = 'iso-8859-1')
{
$this->DigitalDownloadKeys = $DigitalDownloadKeys;
$this->_elements['DigitalDownloadKeys']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/bmsetinventoryrequesttype.php | PHP | asf20 | 6,400 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractRequestType.php';
/**
* BMButtonSearchRequestType
*
* @package PayPal
*/
class BMButtonSearchRequestType extends AbstractRequestType
{
/**
* The earliest transaction date at which to start the search. No wildcards are
* allowed.
*/
var $StartDate;
/**
* The latest transaction date to be included in the search
*/
var $EndDate;
function BMButtonSearchRequestType()
{
parent::AbstractRequestType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'StartDate' =>
array (
'required' => false,
'type' => 'dateTime',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'EndDate' =>
array (
'required' => false,
'type' => 'dateTime',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
));
}
function getStartDate()
{
return $this->StartDate;
}
function setStartDate($StartDate, $charset = 'iso-8859-1')
{
$this->StartDate = $StartDate;
$this->_elements['StartDate']['charset'] = $charset;
}
function getEndDate()
{
return $this->EndDate;
}
function setEndDate($EndDate, $charset = 'iso-8859-1')
{
$this->EndDate = $EndDate;
$this->_elements['EndDate']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/bmbuttonsearchrequesttype.php | PHP | asf20 | 1,618 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractRequestType.php';
/**
* CancelRecoupRequestType
*
* @package PayPal
*/
class CancelRecoupRequestType extends AbstractRequestType
{
var $EnhancedCancelRecoupRequestDetails;
function CancelRecoupRequestType()
{
parent::AbstractRequestType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'EnhancedCancelRecoupRequestDetails' =>
array (
'required' => true,
'type' => 'EnhancedCancelRecoupRequestDetailsType',
'namespace' => 'urn:ebay:apis:EnhancedDataTypes',
),
));
}
function getEnhancedCancelRecoupRequestDetails()
{
return $this->EnhancedCancelRecoupRequestDetails;
}
function setEnhancedCancelRecoupRequestDetails($EnhancedCancelRecoupRequestDetails, $charset = 'iso-8859-1')
{
$this->EnhancedCancelRecoupRequestDetails = $EnhancedCancelRecoupRequestDetails;
$this->_elements['EnhancedCancelRecoupRequestDetails']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/CancelRecoupRequestType.php | PHP | asf20 | 1,227 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractResponseType.php';
/**
* SetExpressCheckoutResponseType
*
* @package PayPal
*/
class SetExpressCheckoutResponseType extends AbstractResponseType
{
/**
* A timestamped token by which you identify to PayPal that you are processing this
* payment with Express Checkout. The token expires after three hours. If you set
* Token in the SetExpressCheckoutRequest, the value of Token in the response is
* identical to the value in the request.
*/
var $Token;
function SetExpressCheckoutResponseType()
{
parent::AbstractResponseType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'Token' =>
array (
'required' => true,
'type' => 'ExpressCheckoutTokenType',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
));
}
function getToken()
{
return $this->Token;
}
function setToken($Token, $charset = 'iso-8859-1')
{
$this->Token = $Token;
$this->_elements['Token']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/SetExpressCheckoutResponseType.php | PHP | asf20 | 1,288 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* ReviseStatusType
*
* Contains the revise status information details (e.g., item properties
* information). ths node contains system set data only - always output and always
* all data. no minccurs needed, except for motors specific data, since it wil lnot
* be retruned for non motors items
*
* @package PayPal
*/
class ReviseStatusType extends XSDSimpleType
{
/**
* Indicates whether the item was revised since the auction started.
*/
var $ItemRevised;
/**
* If true, indicates that a Buy It Now Price was added for the item. Only returned
* for Motors items.
*/
var $BuyItNowAdded;
/**
* Replaces BinLowered as of API version 305. If true, indicates that the Buy It
* Now Price was lowered for the item. Only returned for Motors items.
*/
var $BuyItNowLowered;
/**
* If true, indicates that the Reserve Price was lowered for the item. Only
* returned for Motors items.
*/
var $ReserveLowered;
/**
* If true, indicates that the Reserve Price was removed from the item. Only
* returned for eBay Motors items.
*/
var $ReserveRemoved;
function ReviseStatusType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'ItemRevised' =>
array (
'required' => true,
'type' => 'boolean',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'BuyItNowAdded' =>
array (
'required' => false,
'type' => 'boolean',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'BuyItNowLowered' =>
array (
'required' => false,
'type' => 'boolean',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ReserveLowered' =>
array (
'required' => false,
'type' => 'boolean',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ReserveRemoved' =>
array (
'required' => false,
'type' => 'boolean',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getItemRevised()
{
return $this->ItemRevised;
}
function setItemRevised($ItemRevised, $charset = 'iso-8859-1')
{
$this->ItemRevised = $ItemRevised;
$this->_elements['ItemRevised']['charset'] = $charset;
}
function getBuyItNowAdded()
{
return $this->BuyItNowAdded;
}
function setBuyItNowAdded($BuyItNowAdded, $charset = 'iso-8859-1')
{
$this->BuyItNowAdded = $BuyItNowAdded;
$this->_elements['BuyItNowAdded']['charset'] = $charset;
}
function getBuyItNowLowered()
{
return $this->BuyItNowLowered;
}
function setBuyItNowLowered($BuyItNowLowered, $charset = 'iso-8859-1')
{
$this->BuyItNowLowered = $BuyItNowLowered;
$this->_elements['BuyItNowLowered']['charset'] = $charset;
}
function getReserveLowered()
{
return $this->ReserveLowered;
}
function setReserveLowered($ReserveLowered, $charset = 'iso-8859-1')
{
$this->ReserveLowered = $ReserveLowered;
$this->_elements['ReserveLowered']['charset'] = $charset;
}
function getReserveRemoved()
{
return $this->ReserveRemoved;
}
function setReserveRemoved($ReserveRemoved, $charset = 'iso-8859-1')
{
$this->ReserveRemoved = $ReserveRemoved;
$this->_elements['ReserveRemoved']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/ReviseStatusType.php | PHP | asf20 | 3,991 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractResponseType.php';
/**
* SetCustomerBillingAgreementResponseType
*
* @package PayPal
*/
class SetCustomerBillingAgreementResponseType extends AbstractResponseType
{
var $Token;
function SetCustomerBillingAgreementResponseType()
{
parent::AbstractResponseType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'Token' =>
array (
'required' => true,
'type' => 'ExpressCheckoutTokenType',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
));
}
function getToken()
{
return $this->Token;
}
function setToken($Token, $charset = 'iso-8859-1')
{
$this->Token = $Token;
$this->_elements['Token']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/SetCustomerBillingAgreementResponseType.php | PHP | asf20 | 994 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* DoDirectPaymentRequestDetailsType
*
* @package PayPal
*/
class DoDirectPaymentRequestDetailsType extends XSDSimpleType
{
/**
* How you want to obtain payment.
*/
var $PaymentAction;
/**
* Information about the payment
*/
var $PaymentDetails;
/**
* Information about the credit card to be charged.
*/
var $CreditCard;
/**
* IP address of the payer's browser as recorded in its HTTP request to your
* website. PayPal records this IP addresses as a means to detect possible fraud.
*/
var $IPAddress;
/**
* Your customer session identification token. PayPal records this optional session
* identification token as an additional means to detect possible fraud.
*/
var $MerchantSessionId;
var $ReturnFMFDetails;
function DoDirectPaymentRequestDetailsType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'PaymentAction' =>
array (
'required' => true,
'type' => 'PaymentActionCodeType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'PaymentDetails' =>
array (
'required' => true,
'type' => 'PaymentDetailsType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'CreditCard' =>
array (
'required' => true,
'type' => 'CreditCardDetailsType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'IPAddress' =>
array (
'required' => true,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'MerchantSessionId' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ReturnFMFDetails' =>
array (
'required' => false,
'type' => 'boolean',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getPaymentAction()
{
return $this->PaymentAction;
}
function setPaymentAction($PaymentAction, $charset = 'iso-8859-1')
{
$this->PaymentAction = $PaymentAction;
$this->_elements['PaymentAction']['charset'] = $charset;
}
function getPaymentDetails()
{
return $this->PaymentDetails;
}
function setPaymentDetails($PaymentDetails, $charset = 'iso-8859-1')
{
$this->PaymentDetails = $PaymentDetails;
$this->_elements['PaymentDetails']['charset'] = $charset;
}
function getCreditCard()
{
return $this->CreditCard;
}
function setCreditCard($CreditCard, $charset = 'iso-8859-1')
{
$this->CreditCard = $CreditCard;
$this->_elements['CreditCard']['charset'] = $charset;
}
function getIPAddress()
{
return $this->IPAddress;
}
function setIPAddress($IPAddress, $charset = 'iso-8859-1')
{
$this->IPAddress = $IPAddress;
$this->_elements['IPAddress']['charset'] = $charset;
}
function getMerchantSessionId()
{
return $this->MerchantSessionId;
}
function setMerchantSessionId($MerchantSessionId, $charset = 'iso-8859-1')
{
$this->MerchantSessionId = $MerchantSessionId;
$this->_elements['MerchantSessionId']['charset'] = $charset;
}
function getReturnFMFDetails()
{
return $this->ReturnFMFDetails;
}
function setReturnFMFDetails($ReturnFMFDetails, $charset = 'iso-8859-1')
{
$this->ReturnFMFDetails = $ReturnFMFDetails;
$this->_elements['ReturnFMFDetails']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/DoDirectPaymentRequestDetailsType.php | PHP | asf20 | 4,185 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractRequestType.php';
/**
* DoReauthorizationRequestType
*
* @package PayPal
*/
class DoReauthorizationRequestType extends AbstractRequestType
{
/**
* The value of a previously authorized transaction identification number returned
* by a PayPal product. You can obtain a buyer's transaction number from the
* TransactionID element of the PayerInfo structure returned by
* GetTransactionDetailsResponse.
*/
var $AuthorizationID;
/**
* Amount to reauthorize.
*/
var $Amount;
function DoReauthorizationRequestType()
{
parent::AbstractRequestType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'AuthorizationID' =>
array (
'required' => true,
'type' => 'string',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'Amount' =>
array (
'required' => true,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
));
}
function getAuthorizationID()
{
return $this->AuthorizationID;
}
function setAuthorizationID($AuthorizationID, $charset = 'iso-8859-1')
{
$this->AuthorizationID = $AuthorizationID;
$this->_elements['AuthorizationID']['charset'] = $charset;
}
function getAmount()
{
return $this->Amount;
}
function setAmount($Amount, $charset = 'iso-8859-1')
{
$this->Amount = $Amount;
$this->_elements['Amount']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/DoReauthorizationRequestType.php | PHP | asf20 | 1,815 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* ErrorParameterType
*
* @package PayPal
*/
class ErrorParameterType extends XSDSimpleType
{
/**
* Value of the application-specific error parameter. Specifies
* application-specific error parameter name.
*/
var $Value;
function ErrorParameterType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'Value' =>
array (
'required' => true,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
$this->_attributes = array_merge($this->_attributes,
array (
'ParamID' =>
array (
'name' => 'ParamID',
'type' => 'xs:string',
),
));
}
function getValue()
{
return $this->Value;
}
function setValue($Value, $charset = 'iso-8859-1')
{
$this->Value = $Value;
$this->_elements['Value']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/ErrorParameterType.php | PHP | asf20 | 1,284 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* IncentiveDetailsType
*
* Information about the incentives that were applied from Ebay RYP page and PayPal
* RYP page.
*
* @package PayPal
*/
class IncentiveDetailsType extends XSDSimpleType
{
/**
* Unique Identifier consisting of redemption code, user friendly descripotion,
* incentive type, campaign code, incenitve application order and site redeemed o
* n.
*/
var $UniqueIdentifier;
/**
* Defines if the incentive has been applied on Ebay or PayPal.
*/
var $SiteAppliedOn;
/**
* The total discount amount for the incentive, summation of discounts up across
* all the buckets/items.
*/
var $TotalDiscountAmount;
/**
* Status of incentive processing. Sussess or Error.
*/
var $Status;
/**
* Error code if there are any errors. Zero otherwise.
*/
var $ErrorCode;
/**
* Details of incentive application on individual bucket/item.
*/
var $IncentiveAppliedDetails;
function IncentiveDetailsType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'UniqueIdentifier' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'SiteAppliedOn' =>
array (
'required' => false,
'type' => 'IncentiveSiteAppliedOnType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'TotalDiscountAmount' =>
array (
'required' => false,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Status' =>
array (
'required' => false,
'type' => 'IncentiveAppliedStatusType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ErrorCode' =>
array (
'required' => false,
'type' => 'integer',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'IncentiveAppliedDetails' =>
array (
'required' => false,
'type' => 'IncentiveAppliedDetailsType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getUniqueIdentifier()
{
return $this->UniqueIdentifier;
}
function setUniqueIdentifier($UniqueIdentifier, $charset = 'iso-8859-1')
{
$this->UniqueIdentifier = $UniqueIdentifier;
$this->_elements['UniqueIdentifier']['charset'] = $charset;
}
function getSiteAppliedOn()
{
return $this->SiteAppliedOn;
}
function setSiteAppliedOn($SiteAppliedOn, $charset = 'iso-8859-1')
{
$this->SiteAppliedOn = $SiteAppliedOn;
$this->_elements['SiteAppliedOn']['charset'] = $charset;
}
function getTotalDiscountAmount()
{
return $this->TotalDiscountAmount;
}
function setTotalDiscountAmount($TotalDiscountAmount, $charset = 'iso-8859-1')
{
$this->TotalDiscountAmount = $TotalDiscountAmount;
$this->_elements['TotalDiscountAmount']['charset'] = $charset;
}
function getStatus()
{
return $this->Status;
}
function setStatus($Status, $charset = 'iso-8859-1')
{
$this->Status = $Status;
$this->_elements['Status']['charset'] = $charset;
}
function getErrorCode()
{
return $this->ErrorCode;
}
function setErrorCode($ErrorCode, $charset = 'iso-8859-1')
{
$this->ErrorCode = $ErrorCode;
$this->_elements['ErrorCode']['charset'] = $charset;
}
function getIncentiveAppliedDetails()
{
return $this->IncentiveAppliedDetails;
}
function setIncentiveAppliedDetails($IncentiveAppliedDetails, $charset = 'iso-8859-1')
{
$this->IncentiveAppliedDetails = $IncentiveAppliedDetails;
$this->_elements['IncentiveAppliedDetails']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/IncentiveDetailsType.php | PHP | asf20 | 4,440 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* GetAuthDetailsResponseDetailsType
*
* @package PayPal
*/
class GetAuthDetailsResponseDetailsType extends XSDSimpleType
{
/**
* The first name of the User.
*/
var $FirstName;
/**
* The Last name of the user.
*/
var $LastName;
/**
* The email address of the user.
*/
var $Email;
/**
* Encrypted PayPal customer account identification number.
*/
var $PayerID;
function GetAuthDetailsResponseDetailsType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'FirstName' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'LastName' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Email' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'PayerID' =>
array (
'required' => true,
'type' => 'UserIDType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getFirstName()
{
return $this->FirstName;
}
function setFirstName($FirstName, $charset = 'iso-8859-1')
{
$this->FirstName = $FirstName;
$this->_elements['FirstName']['charset'] = $charset;
}
function getLastName()
{
return $this->LastName;
}
function setLastName($LastName, $charset = 'iso-8859-1')
{
$this->LastName = $LastName;
$this->_elements['LastName']['charset'] = $charset;
}
function getEmail()
{
return $this->Email;
}
function setEmail($Email, $charset = 'iso-8859-1')
{
$this->Email = $Email;
$this->_elements['Email']['charset'] = $charset;
}
function getPayerID()
{
return $this->PayerID;
}
function setPayerID($PayerID, $charset = 'iso-8859-1')
{
$this->PayerID = $PayerID;
$this->_elements['PayerID']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/GetAuthDetailsResponseDetailsType.php | PHP | asf20 | 2,598 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* MeasureType
*
* @package PayPal
*/
class MeasureType extends XSDSimpleType
{
function MeasureType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:CoreComponentTypes';
$this->_attributes = array_merge($this->_attributes,
array (
'unit' =>
array (
'name' => 'unit',
'type' => 'xs:token',
'use' => 'required',
),
));
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/MeasureType.php | PHP | asf20 | 627 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* UATPDetailsType
*
* UATP Card Details Type
*
* @package PayPal
*/
class UATPDetailsType extends XSDSimpleType
{
/**
* UATP Card Number
*/
var $UATPNumber;
/**
* UATP Card expirty month
*/
var $ExpMonth;
/**
* UATP Card expirty year
*/
var $ExpYear;
function UATPDetailsType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'UATPNumber' =>
array (
'required' => true,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ExpMonth' =>
array (
'required' => true,
'type' => 'int',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ExpYear' =>
array (
'required' => true,
'type' => 'int',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getUATPNumber()
{
return $this->UATPNumber;
}
function setUATPNumber($UATPNumber, $charset = 'iso-8859-1')
{
$this->UATPNumber = $UATPNumber;
$this->_elements['UATPNumber']['charset'] = $charset;
}
function getExpMonth()
{
return $this->ExpMonth;
}
function setExpMonth($ExpMonth, $charset = 'iso-8859-1')
{
$this->ExpMonth = $ExpMonth;
$this->_elements['ExpMonth']['charset'] = $charset;
}
function getExpYear()
{
return $this->ExpYear;
}
function setExpYear($ExpYear, $charset = 'iso-8859-1')
{
$this->ExpYear = $ExpYear;
$this->_elements['ExpYear']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/UATPDetailsType.php | PHP | asf20 | 2,028 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* IncentiveAppliedToType
*
* @package PayPal
*/
class IncentiveAppliedToType extends XSDSimpleType
{
var $BucketId;
var $ItemId;
var $IncentiveAmount;
function IncentiveAppliedToType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'BucketId' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ItemId' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'IncentiveAmount' =>
array (
'required' => false,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getBucketId()
{
return $this->BucketId;
}
function setBucketId($BucketId, $charset = 'iso-8859-1')
{
$this->BucketId = $BucketId;
$this->_elements['BucketId']['charset'] = $charset;
}
function getItemId()
{
return $this->ItemId;
}
function setItemId($ItemId, $charset = 'iso-8859-1')
{
$this->ItemId = $ItemId;
$this->_elements['ItemId']['charset'] = $charset;
}
function getIncentiveAmount()
{
return $this->IncentiveAmount;
}
function setIncentiveAmount($IncentiveAmount, $charset = 'iso-8859-1')
{
$this->IncentiveAmount = $IncentiveAmount;
$this->_elements['IncentiveAmount']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/IncentiveAppliedToType.php | PHP | asf20 | 1,940 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractResponseType.php';
/**
* SetAuthFlowParamResponseType
*
* @package PayPal
*/
class SetAuthFlowParamResponseType extends AbstractResponseType
{
/**
* A timestamped token by which you identify to PayPal that you are processing this
* user. The token expires after three hours.
*/
var $Token;
function SetAuthFlowParamResponseType()
{
parent::AbstractResponseType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'Token' =>
array (
'required' => true,
'type' => 'AuthFlowTokenType',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
));
}
function getToken()
{
return $this->Token;
}
function setToken($Token, $charset = 'iso-8859-1')
{
$this->Token = $Token;
$this->_elements['Token']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/SetAuthFlowParamResponseType.php | PHP | asf20 | 1,108 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractResponseType.php';
/**
* ReverseTransactionResponseType
*
* @package PayPal
*/
class ReverseTransactionResponseType extends AbstractResponseType
{
var $ReverseTransactionResponseDetails;
function ReverseTransactionResponseType()
{
parent::AbstractResponseType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'ReverseTransactionResponseDetails' =>
array (
'required' => true,
'type' => 'ReverseTransactionResponseDetailsType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getReverseTransactionResponseDetails()
{
return $this->ReverseTransactionResponseDetails;
}
function setReverseTransactionResponseDetails($ReverseTransactionResponseDetails, $charset = 'iso-8859-1')
{
$this->ReverseTransactionResponseDetails = $ReverseTransactionResponseDetails;
$this->_elements['ReverseTransactionResponseDetails']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/ReverseTransactionResponseType.php | PHP | asf20 | 1,241 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* EbayItemPaymentDetailsItemType
*
* EbayItemPaymentDetailsItemType - Type declaration to be used by other schemas.
* Information about an Ebay Payment Item.
*
* @package PayPal
*/
class EbayItemPaymentDetailsItemType extends XSDSimpleType
{
/**
* Auction ItemNumber.
*/
var $ItemNumber;
/**
* Auction Transaction ID.
*/
var $AuctionTransactionId;
/**
* Ebay Order ID.
*/
var $OrderId;
/**
* Ebay Cart ID.
*/
var $CartID;
function EbayItemPaymentDetailsItemType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'ItemNumber' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'AuctionTransactionId' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'OrderId' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'CartID' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getItemNumber()
{
return $this->ItemNumber;
}
function setItemNumber($ItemNumber, $charset = 'iso-8859-1')
{
$this->ItemNumber = $ItemNumber;
$this->_elements['ItemNumber']['charset'] = $charset;
}
function getAuctionTransactionId()
{
return $this->AuctionTransactionId;
}
function setAuctionTransactionId($AuctionTransactionId, $charset = 'iso-8859-1')
{
$this->AuctionTransactionId = $AuctionTransactionId;
$this->_elements['AuctionTransactionId']['charset'] = $charset;
}
function getOrderId()
{
return $this->OrderId;
}
function setOrderId($OrderId, $charset = 'iso-8859-1')
{
$this->OrderId = $OrderId;
$this->_elements['OrderId']['charset'] = $charset;
}
function getCartID()
{
return $this->CartID;
}
function setCartID($CartID, $charset = 'iso-8859-1')
{
$this->CartID = $CartID;
$this->_elements['CartID']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/EbayItemPaymentDetailsItemType.php | PHP | asf20 | 2,771 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* IncentiveAppliedDetailsType
*
* Details of incentive application on individual bucket/item.
*
* @package PayPal
*/
class IncentiveAppliedDetailsType extends XSDSimpleType
{
/**
* PaymentRequestID uniquely identifies a bucket. It is the "bucket id" in the
* world of EC API.
*/
var $PaymentRequestID;
/**
* The item id passed through by the merchant.
*/
var $ItemId;
/**
* The item transaction id passed through by the merchant.
*/
var $ExternalTxnId;
/**
* Discount offerred for this bucket or item.
*/
var $DiscountAmount;
function IncentiveAppliedDetailsType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'PaymentRequestID' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ItemId' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ExternalTxnId' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'DiscountAmount' =>
array (
'required' => false,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getPaymentRequestID()
{
return $this->PaymentRequestID;
}
function setPaymentRequestID($PaymentRequestID, $charset = 'iso-8859-1')
{
$this->PaymentRequestID = $PaymentRequestID;
$this->_elements['PaymentRequestID']['charset'] = $charset;
}
function getItemId()
{
return $this->ItemId;
}
function setItemId($ItemId, $charset = 'iso-8859-1')
{
$this->ItemId = $ItemId;
$this->_elements['ItemId']['charset'] = $charset;
}
function getExternalTxnId()
{
return $this->ExternalTxnId;
}
function setExternalTxnId($ExternalTxnId, $charset = 'iso-8859-1')
{
$this->ExternalTxnId = $ExternalTxnId;
$this->_elements['ExternalTxnId']['charset'] = $charset;
}
function getDiscountAmount()
{
return $this->DiscountAmount;
}
function setDiscountAmount($DiscountAmount, $charset = 'iso-8859-1')
{
$this->DiscountAmount = $DiscountAmount;
$this->_elements['DiscountAmount']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/IncentiveAppliedDetailsType.php | PHP | asf20 | 2,933 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* OptionDetailsType
*
* @package PayPal
*/
class OptionDetailsType extends XSDSimpleType
{
/**
* Option Name.
*/
var $OptionName;
var $OptionSelectionDetails;
function OptionDetailsType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'OptionName' =>
array (
'required' => true,
'type' => 'string',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'OptionSelectionDetails' =>
array (
'required' => false,
'type' => 'OptionSelectionDetailsType',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
));
}
function getOptionName()
{
return $this->OptionName;
}
function setOptionName($OptionName, $charset = 'iso-8859-1')
{
$this->OptionName = $OptionName;
$this->_elements['OptionName']['charset'] = $charset;
}
function getOptionSelectionDetails()
{
return $this->OptionSelectionDetails;
}
function setOptionSelectionDetails($OptionSelectionDetails, $charset = 'iso-8859-1')
{
$this->OptionSelectionDetails = $OptionSelectionDetails;
$this->_elements['OptionSelectionDetails']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/optiondetailstype.php | PHP | asf20 | 1,575 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractResponseType.php';
/**
* DoAuthorizationResponseType
*
* @package PayPal
*/
class DoAuthorizationResponseType extends AbstractResponseType
{
/**
* An authorization identification number.
*/
var $TransactionID;
/**
* The amount and currency you specified in the request.
*/
var $Amount;
var $AuthorizationInfo;
function DoAuthorizationResponseType()
{
parent::AbstractResponseType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'TransactionID' =>
array (
'required' => true,
'type' => 'string',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'Amount' =>
array (
'required' => true,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'AuthorizationInfo' =>
array (
'required' => false,
'type' => 'AuthorizationInfoType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getTransactionID()
{
return $this->TransactionID;
}
function setTransactionID($TransactionID, $charset = 'iso-8859-1')
{
$this->TransactionID = $TransactionID;
$this->_elements['TransactionID']['charset'] = $charset;
}
function getAmount()
{
return $this->Amount;
}
function setAmount($Amount, $charset = 'iso-8859-1')
{
$this->Amount = $Amount;
$this->_elements['Amount']['charset'] = $charset;
}
function getAuthorizationInfo()
{
return $this->AuthorizationInfo;
}
function setAuthorizationInfo($AuthorizationInfo, $charset = 'iso-8859-1')
{
$this->AuthorizationInfo = $AuthorizationInfo;
$this->_elements['AuthorizationInfo']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/DoAuthorizationResponseType.php | PHP | asf20 | 2,165 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractRequestType.php';
/**
* GetMobileStatusRequestType
*
* @package PayPal
*/
class GetMobileStatusRequestType extends AbstractRequestType
{
var $GetMobileStatusRequestDetails;
function GetMobileStatusRequestType()
{
parent::AbstractRequestType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'GetMobileStatusRequestDetails' =>
array (
'required' => true,
'type' => 'GetMobileStatusRequestDetailsType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getGetMobileStatusRequestDetails()
{
return $this->GetMobileStatusRequestDetails;
}
function setGetMobileStatusRequestDetails($GetMobileStatusRequestDetails, $charset = 'iso-8859-1')
{
$this->GetMobileStatusRequestDetails = $GetMobileStatusRequestDetails;
$this->_elements['GetMobileStatusRequestDetails']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/GetMobileStatusRequestType.php | PHP | asf20 | 1,186 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* EnhancedPaymentDataType
*
* @package PayPal
*/
class EnhancedPaymentDataType extends XSDSimpleType
{
function EnhancedPaymentDataType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:EnhancedDataTypes';
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/EnhancedPaymentDataType.php | PHP | asf20 | 392 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* FaultDetailsType
*
* @package PayPal
*/
class FaultDetailsType extends XSDSimpleType
{
/**
* Error code can be used by a receiving application to debugging a SOAP response
* message that contain one or more SOAP Fault detail objects, i.e., fault detail
* sub-elements. These codes will need to be uniquely defined for each fault
* scenario.
*/
var $ErrorCode;
/**
* Severity indicates whether the error is a serious fault or if it is
* informational error, i.e., warning.
*/
var $Severity;
var $DetailedMessage;
function FaultDetailsType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'ErrorCode' =>
array (
'required' => true,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Severity' =>
array (
'required' => true,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'DetailedMessage' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getErrorCode()
{
return $this->ErrorCode;
}
function setErrorCode($ErrorCode, $charset = 'iso-8859-1')
{
$this->ErrorCode = $ErrorCode;
$this->_elements['ErrorCode']['charset'] = $charset;
}
function getSeverity()
{
return $this->Severity;
}
function setSeverity($Severity, $charset = 'iso-8859-1')
{
$this->Severity = $Severity;
$this->_elements['Severity']['charset'] = $charset;
}
function getDetailedMessage()
{
return $this->DetailedMessage;
}
function setDetailedMessage($DetailedMessage, $charset = 'iso-8859-1')
{
$this->DetailedMessage = $DetailedMessage;
$this->_elements['DetailedMessage']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/FaultDetailsType.php | PHP | asf20 | 2,358 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* QuantityType
*
* @package PayPal
*/
class QuantityType extends XSDSimpleType
{
function QuantityType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:CoreComponentTypes';
$this->_attributes = array_merge($this->_attributes,
array (
'unit' =>
array (
'name' => 'unit',
'type' => 'xs:token',
'use' => 'optional',
),
));
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/QuantityType.php | PHP | asf20 | 630 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* ReceiverInfoType
*
* ReceiverInfoType Receiver information.
*
* @package PayPal
*/
class ReceiverInfoType extends XSDSimpleType
{
/**
* Email address or account ID of the payment recipient (the seller). Equivalent to
* Receiver if payment is sent to primary account.
*/
var $Business;
/**
* Primary email address of the payment recipient (the seller). If you are the
* recipient of the payment and the payment is sent to your non-primary email
* address, the value of Receiver is still your primary email address.
*/
var $Receiver;
/**
* Unique account ID of the payment recipient (the seller). This value is the same
* as the value of the recipient's referral ID.
*/
var $ReceiverID;
function ReceiverInfoType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'Business' =>
array (
'required' => true,
'type' => 'EmailAddressType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Receiver' =>
array (
'required' => true,
'type' => 'EmailAddressType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ReceiverID' =>
array (
'required' => true,
'type' => 'UserIDType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getBusiness()
{
return $this->Business;
}
function setBusiness($Business, $charset = 'iso-8859-1')
{
$this->Business = $Business;
$this->_elements['Business']['charset'] = $charset;
}
function getReceiver()
{
return $this->Receiver;
}
function setReceiver($Receiver, $charset = 'iso-8859-1')
{
$this->Receiver = $Receiver;
$this->_elements['Receiver']['charset'] = $charset;
}
function getReceiverID()
{
return $this->ReceiverID;
}
function setReceiverID($ReceiverID, $charset = 'iso-8859-1')
{
$this->ReceiverID = $ReceiverID;
$this->_elements['ReceiverID']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/ReceiverInfoType.php | PHP | asf20 | 2,523 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* ShippingOptionType
*
* Fallback shipping options type.
*
* @package PayPal
*/
class ShippingOptionType extends XSDSimpleType
{
var $ShippingOptionIsDefault;
var $ShippingOptionAmount;
var $ShippingOptionName;
function ShippingOptionType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'ShippingOptionIsDefault' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ShippingOptionAmount' =>
array (
'required' => false,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ShippingOptionName' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getShippingOptionIsDefault()
{
return $this->ShippingOptionIsDefault;
}
function setShippingOptionIsDefault($ShippingOptionIsDefault, $charset = 'iso-8859-1')
{
$this->ShippingOptionIsDefault = $ShippingOptionIsDefault;
$this->_elements['ShippingOptionIsDefault']['charset'] = $charset;
}
function getShippingOptionAmount()
{
return $this->ShippingOptionAmount;
}
function setShippingOptionAmount($ShippingOptionAmount, $charset = 'iso-8859-1')
{
$this->ShippingOptionAmount = $ShippingOptionAmount;
$this->_elements['ShippingOptionAmount']['charset'] = $charset;
}
function getShippingOptionName()
{
return $this->ShippingOptionName;
}
function setShippingOptionName($ShippingOptionName, $charset = 'iso-8859-1')
{
$this->ShippingOptionName = $ShippingOptionName;
$this->_elements['ShippingOptionName']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/shippingoptiontype.php | PHP | asf20 | 2,255 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractResponseType.php';
/**
* BMButtonSearchResponseType
*
* @package PayPal
*/
class BMButtonSearchResponseType extends AbstractResponseType
{
var $ButtonSearchResult;
function BMButtonSearchResponseType()
{
parent::AbstractResponseType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'ButtonSearchResult' =>
array (
'required' => false,
'type' => 'ButtonSearchResultType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getButtonSearchResult()
{
return $this->ButtonSearchResult;
}
function setButtonSearchResult($ButtonSearchResult, $charset = 'iso-8859-1')
{
$this->ButtonSearchResult = $ButtonSearchResult;
$this->_elements['ButtonSearchResult']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/bmbuttonsearchresponsetype.php | PHP | asf20 | 1,080 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* IncentiveDetailType
*
* @package PayPal
*/
class IncentiveDetailType extends XSDSimpleType
{
var $RedemptionCode;
var $DisplayCode;
var $ProgramId;
var $IncentiveType;
var $IncentiveDescription;
var $AppliedTo;
var $Status;
var $ErrorCode;
function IncentiveDetailType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'RedemptionCode' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'DisplayCode' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ProgramId' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'IncentiveType' =>
array (
'required' => false,
'type' => 'IncentiveTypeCodeType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'IncentiveDescription' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'AppliedTo' =>
array (
'required' => false,
'type' => 'IncentiveAppliedToType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Status' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ErrorCode' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getRedemptionCode()
{
return $this->RedemptionCode;
}
function setRedemptionCode($RedemptionCode, $charset = 'iso-8859-1')
{
$this->RedemptionCode = $RedemptionCode;
$this->_elements['RedemptionCode']['charset'] = $charset;
}
function getDisplayCode()
{
return $this->DisplayCode;
}
function setDisplayCode($DisplayCode, $charset = 'iso-8859-1')
{
$this->DisplayCode = $DisplayCode;
$this->_elements['DisplayCode']['charset'] = $charset;
}
function getProgramId()
{
return $this->ProgramId;
}
function setProgramId($ProgramId, $charset = 'iso-8859-1')
{
$this->ProgramId = $ProgramId;
$this->_elements['ProgramId']['charset'] = $charset;
}
function getIncentiveType()
{
return $this->IncentiveType;
}
function setIncentiveType($IncentiveType, $charset = 'iso-8859-1')
{
$this->IncentiveType = $IncentiveType;
$this->_elements['IncentiveType']['charset'] = $charset;
}
function getIncentiveDescription()
{
return $this->IncentiveDescription;
}
function setIncentiveDescription($IncentiveDescription, $charset = 'iso-8859-1')
{
$this->IncentiveDescription = $IncentiveDescription;
$this->_elements['IncentiveDescription']['charset'] = $charset;
}
function getAppliedTo()
{
return $this->AppliedTo;
}
function setAppliedTo($AppliedTo, $charset = 'iso-8859-1')
{
$this->AppliedTo = $AppliedTo;
$this->_elements['AppliedTo']['charset'] = $charset;
}
function getStatus()
{
return $this->Status;
}
function setStatus($Status, $charset = 'iso-8859-1')
{
$this->Status = $Status;
$this->_elements['Status']['charset'] = $charset;
}
function getErrorCode()
{
return $this->ErrorCode;
}
function setErrorCode($ErrorCode, $charset = 'iso-8859-1')
{
$this->ErrorCode = $ErrorCode;
$this->_elements['ErrorCode']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/IncentiveDetailType.php | PHP | asf20 | 4,491 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* UpdateRecurringPaymentsProfileRequestDetailsType
*
* @package PayPal
*/
class UpdateRecurringPaymentsProfileRequestDetailsType extends XSDSimpleType
{
var $ProfileID;
var $Note;
var $Description;
var $SubscriberName;
var $SubscriberShippingAddress;
var $ProfileReference;
var $AdditionalBillingCycles;
var $Amount;
var $ShippingAmount;
var $TaxAmount;
var $OutstandingBalance;
var $AutoBillOutstandingAmount;
var $MaxFailedPayments;
/**
* Information about the credit card to be charged (required if Direct Payment)
*/
var $CreditCard;
/**
* When does this Profile begin billing?
*/
var $BillingStartDate;
/**
* Trial period of this schedule
*/
var $TrialPeriod;
var $PaymentPeriod;
function UpdateRecurringPaymentsProfileRequestDetailsType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'ProfileID' =>
array (
'required' => true,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Note' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Description' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'SubscriberName' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'SubscriberShippingAddress' =>
array (
'required' => false,
'type' => 'AddressType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ProfileReference' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'AdditionalBillingCycles' =>
array (
'required' => false,
'type' => 'int',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Amount' =>
array (
'required' => false,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ShippingAmount' =>
array (
'required' => false,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'TaxAmount' =>
array (
'required' => false,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'OutstandingBalance' =>
array (
'required' => false,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'AutoBillOutstandingAmount' =>
array (
'required' => false,
'type' => 'AutoBillType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'MaxFailedPayments' =>
array (
'required' => false,
'type' => 'int',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'CreditCard' =>
array (
'required' => false,
'type' => 'CreditCardDetailsType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'BillingStartDate' =>
array (
'required' => false,
'type' => 'dateTime',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'TrialPeriod' =>
array (
'required' => false,
'type' => 'BillingPeriodDetailsType_Update',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'PaymentPeriod' =>
array (
'required' => false,
'type' => 'BillingPeriodDetailsType_Update',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getProfileID()
{
return $this->ProfileID;
}
function setProfileID($ProfileID, $charset = 'iso-8859-1')
{
$this->ProfileID = $ProfileID;
$this->_elements['ProfileID']['charset'] = $charset;
}
function getNote()
{
return $this->Note;
}
function setNote($Note, $charset = 'iso-8859-1')
{
$this->Note = $Note;
$this->_elements['Note']['charset'] = $charset;
}
function getDescription()
{
return $this->Description;
}
function setDescription($Description, $charset = 'iso-8859-1')
{
$this->Description = $Description;
$this->_elements['Description']['charset'] = $charset;
}
function getSubscriberName()
{
return $this->SubscriberName;
}
function setSubscriberName($SubscriberName, $charset = 'iso-8859-1')
{
$this->SubscriberName = $SubscriberName;
$this->_elements['SubscriberName']['charset'] = $charset;
}
function getSubscriberShippingAddress()
{
return $this->SubscriberShippingAddress;
}
function setSubscriberShippingAddress($SubscriberShippingAddress, $charset = 'iso-8859-1')
{
$this->SubscriberShippingAddress = $SubscriberShippingAddress;
$this->_elements['SubscriberShippingAddress']['charset'] = $charset;
}
function getProfileReference()
{
return $this->ProfileReference;
}
function setProfileReference($ProfileReference, $charset = 'iso-8859-1')
{
$this->ProfileReference = $ProfileReference;
$this->_elements['ProfileReference']['charset'] = $charset;
}
function getAdditionalBillingCycles()
{
return $this->AdditionalBillingCycles;
}
function setAdditionalBillingCycles($AdditionalBillingCycles, $charset = 'iso-8859-1')
{
$this->AdditionalBillingCycles = $AdditionalBillingCycles;
$this->_elements['AdditionalBillingCycles']['charset'] = $charset;
}
function getAmount()
{
return $this->Amount;
}
function setAmount($Amount, $charset = 'iso-8859-1')
{
$this->Amount = $Amount;
$this->_elements['Amount']['charset'] = $charset;
}
function getShippingAmount()
{
return $this->ShippingAmount;
}
function setShippingAmount($ShippingAmount, $charset = 'iso-8859-1')
{
$this->ShippingAmount = $ShippingAmount;
$this->_elements['ShippingAmount']['charset'] = $charset;
}
function getTaxAmount()
{
return $this->TaxAmount;
}
function setTaxAmount($TaxAmount, $charset = 'iso-8859-1')
{
$this->TaxAmount = $TaxAmount;
$this->_elements['TaxAmount']['charset'] = $charset;
}
function getOutstandingBalance()
{
return $this->OutstandingBalance;
}
function setOutstandingBalance($OutstandingBalance, $charset = 'iso-8859-1')
{
$this->OutstandingBalance = $OutstandingBalance;
$this->_elements['OutstandingBalance']['charset'] = $charset;
}
function getAutoBillOutstandingAmount()
{
return $this->AutoBillOutstandingAmount;
}
function setAutoBillOutstandingAmount($AutoBillOutstandingAmount, $charset = 'iso-8859-1')
{
$this->AutoBillOutstandingAmount = $AutoBillOutstandingAmount;
$this->_elements['AutoBillOutstandingAmount']['charset'] = $charset;
}
function getMaxFailedPayments()
{
return $this->MaxFailedPayments;
}
function setMaxFailedPayments($MaxFailedPayments, $charset = 'iso-8859-1')
{
$this->MaxFailedPayments = $MaxFailedPayments;
$this->_elements['MaxFailedPayments']['charset'] = $charset;
}
function getCreditCard()
{
return $this->CreditCard;
}
function setCreditCard($CreditCard, $charset = 'iso-8859-1')
{
$this->CreditCard = $CreditCard;
$this->_elements['CreditCard']['charset'] = $charset;
}
function getBillingStartDate()
{
return $this->BillingStartDate;
}
function setBillingStartDate($BillingStartDate, $charset = 'iso-8859-1')
{
$this->BillingStartDate = $BillingStartDate;
$this->_elements['BillingStartDate']['charset'] = $charset;
}
function getTrialPeriod()
{
return $this->TrialPeriod;
}
function setTrialPeriod($TrialPeriod, $charset = 'iso-8859-1')
{
$this->TrialPeriod = $TrialPeriod;
$this->_elements['TrialPeriod']['charset'] = $charset;
}
function getPaymentPeriod()
{
return $this->PaymentPeriod;
}
function setPaymentPeriod($PaymentPeriod, $charset = 'iso-8859-1')
{
$this->PaymentPeriod = $PaymentPeriod;
$this->_elements['PaymentPeriod']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/UpdateRecurringPaymentsProfileRequestDetailsType.php | PHP | asf20 | 9,782 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* ManageRecurringPaymentsProfileStatusResponseDetailsType
*
* @package PayPal
*/
class ManageRecurringPaymentsProfileStatusResponseDetailsType extends XSDSimpleType
{
var $ProfileID;
function ManageRecurringPaymentsProfileStatusResponseDetailsType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'ProfileID' =>
array (
'required' => true,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getProfileID()
{
return $this->ProfileID;
}
function setProfileID($ProfileID, $charset = 'iso-8859-1')
{
$this->ProfileID = $ProfileID;
$this->_elements['ProfileID']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/ManageRecurringPaymentsProfileStatusResponseDetailsType.php | PHP | asf20 | 1,057 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* SetEbayMobileCheckoutRequestDetailsType
*
* @package PayPal
*/
class SetEbayMobileCheckoutRequestDetailsType extends XSDSimpleType
{
/**
* The value 'Auction' indicates that user is coming to checkout after an auction
* ended. A value of 'BuyItNow' indicates if the user is coming to checkout by
* clicking on the 'buy it now' button in a chinese auction. A value of
* 'FixedPriceItem' indicates that user clicked on 'Buy it now' on a fixed price
* item. A value of Autopay indicates autopay (or immediate pay) which is not
* supported at the moment.
*/
var $CheckoutType;
/**
* An item number assigned to the item in eBay database.
*/
var $ItemId;
/**
* An Transaction id assigned to the item in eBay database. In case of Chinese
* auction Item Id itself indicates Transaction Id. Transaction Id in this case is
* Zero.
*/
var $TransactionId;
/**
* An id indicating the site on which the item was listed.
*/
var $SiteId;
/**
* Buyers ebay Id.
*/
var $BuyerId;
/**
* Indicating the client type. Weather it is WAP or J2ME. A value of 'WAP'
* indicates WAP. A value of 'J2MEClient' indicates J2ME client.
*/
var $ClientType;
/**
* The phone number of the buyer's mobile device, if available.
*/
var $BuyerPhone;
/**
* URL to which the customer's browser is returned after choosing to pay with
* PayPal. PayPal recommends that the value of ReturnURL be the final review page
* on which the customer confirms the order and payment.
*/
var $ReturnURL;
/**
* URL to which the customer is returned if he does not approve the use of PayPal
* to pay you. PayPal recommends that the value of CancelURL be the original page
* on which the customer chose to pay with PayPal.
*/
var $CancelURL;
/**
* Specify quantity in case it is an immediate pay (or autopay) item.
*/
var $Quantity;
/**
* Cost of this item before tax and shipping.You must set the currencyID attribute
* to one of the three-character currency codes for any of the supported PayPal
* currencies.Used only for autopay items.
*/
var $ItemAmount;
function SetEbayMobileCheckoutRequestDetailsType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'CheckoutType' =>
array (
'required' => true,
'type' => 'EbayCheckoutType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ItemId' =>
array (
'required' => true,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'TransactionId' =>
array (
'required' => true,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'SiteId' =>
array (
'required' => true,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'BuyerId' =>
array (
'required' => true,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ClientType' =>
array (
'required' => true,
'type' => 'DyneticClientType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'BuyerPhone' =>
array (
'required' => false,
'type' => 'PhoneNumberType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ReturnURL' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'CancelURL' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Quantity' =>
array (
'required' => false,
'type' => 'int',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ItemAmount' =>
array (
'required' => false,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getCheckoutType()
{
return $this->CheckoutType;
}
function setCheckoutType($CheckoutType, $charset = 'iso-8859-1')
{
$this->CheckoutType = $CheckoutType;
$this->_elements['CheckoutType']['charset'] = $charset;
}
function getItemId()
{
return $this->ItemId;
}
function setItemId($ItemId, $charset = 'iso-8859-1')
{
$this->ItemId = $ItemId;
$this->_elements['ItemId']['charset'] = $charset;
}
function getTransactionId()
{
return $this->TransactionId;
}
function setTransactionId($TransactionId, $charset = 'iso-8859-1')
{
$this->TransactionId = $TransactionId;
$this->_elements['TransactionId']['charset'] = $charset;
}
function getSiteId()
{
return $this->SiteId;
}
function setSiteId($SiteId, $charset = 'iso-8859-1')
{
$this->SiteId = $SiteId;
$this->_elements['SiteId']['charset'] = $charset;
}
function getBuyerId()
{
return $this->BuyerId;
}
function setBuyerId($BuyerId, $charset = 'iso-8859-1')
{
$this->BuyerId = $BuyerId;
$this->_elements['BuyerId']['charset'] = $charset;
}
function getClientType()
{
return $this->ClientType;
}
function setClientType($ClientType, $charset = 'iso-8859-1')
{
$this->ClientType = $ClientType;
$this->_elements['ClientType']['charset'] = $charset;
}
function getBuyerPhone()
{
return $this->BuyerPhone;
}
function setBuyerPhone($BuyerPhone, $charset = 'iso-8859-1')
{
$this->BuyerPhone = $BuyerPhone;
$this->_elements['BuyerPhone']['charset'] = $charset;
}
function getReturnURL()
{
return $this->ReturnURL;
}
function setReturnURL($ReturnURL, $charset = 'iso-8859-1')
{
$this->ReturnURL = $ReturnURL;
$this->_elements['ReturnURL']['charset'] = $charset;
}
function getCancelURL()
{
return $this->CancelURL;
}
function setCancelURL($CancelURL, $charset = 'iso-8859-1')
{
$this->CancelURL = $CancelURL;
$this->_elements['CancelURL']['charset'] = $charset;
}
function getQuantity()
{
return $this->Quantity;
}
function setQuantity($Quantity, $charset = 'iso-8859-1')
{
$this->Quantity = $Quantity;
$this->_elements['Quantity']['charset'] = $charset;
}
function getItemAmount()
{
return $this->ItemAmount;
}
function setItemAmount($ItemAmount, $charset = 'iso-8859-1')
{
$this->ItemAmount = $ItemAmount;
$this->_elements['ItemAmount']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/SetEbayMobileCheckoutRequestDetailsType.php | PHP | asf20 | 7,733 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractRequestType.php';
/**
* SetAuthFlowParamRequestType
*
* @package PayPal
*/
class SetAuthFlowParamRequestType extends AbstractRequestType
{
var $SetAuthFlowParamRequestDetails;
function SetAuthFlowParamRequestType()
{
parent::AbstractRequestType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'SetAuthFlowParamRequestDetails' =>
array (
'required' => true,
'type' => 'SetAuthFlowParamRequestDetailsType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getSetAuthFlowParamRequestDetails()
{
return $this->SetAuthFlowParamRequestDetails;
}
function setSetAuthFlowParamRequestDetails($SetAuthFlowParamRequestDetails, $charset = 'iso-8859-1')
{
$this->SetAuthFlowParamRequestDetails = $SetAuthFlowParamRequestDetails;
$this->_elements['SetAuthFlowParamRequestDetails']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/SetAuthFlowParamRequestType.php | PHP | asf20 | 1,199 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* SubscriptionTermsType
*
* SubscriptionTermsType Terms of a PayPal subscription.
*
* @package PayPal
*/
class SubscriptionTermsType extends XSDSimpleType
{
var $Amount;
function SubscriptionTermsType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'Amount' =>
array (
'required' => true,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
$this->_attributes = array_merge($this->_attributes,
array (
'period' =>
array (
'name' => 'period',
'type' => 'xs:string',
'use' => 'required',
),
));
}
function getAmount()
{
return $this->Amount;
}
function setAmount($Amount, $charset = 'iso-8859-1')
{
$this->Amount = $Amount;
$this->_elements['Amount']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/SubscriptionTermsType.php | PHP | asf20 | 1,273 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractResponseType.php';
/**
* DoReferenceTransactionResponseType
*
* @package PayPal
*/
class DoReferenceTransactionResponseType extends AbstractResponseType
{
var $DoReferenceTransactionResponseDetails;
var $FMFDetails;
function DoReferenceTransactionResponseType()
{
parent::AbstractResponseType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'DoReferenceTransactionResponseDetails' =>
array (
'required' => true,
'type' => 'DoReferenceTransactionResponseDetailsType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'FMFDetails' =>
array (
'required' => false,
'type' => 'FMFDetailsType',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
));
}
function getDoReferenceTransactionResponseDetails()
{
return $this->DoReferenceTransactionResponseDetails;
}
function setDoReferenceTransactionResponseDetails($DoReferenceTransactionResponseDetails, $charset = 'iso-8859-1')
{
$this->DoReferenceTransactionResponseDetails = $DoReferenceTransactionResponseDetails;
$this->_elements['DoReferenceTransactionResponseDetails']['charset'] = $charset;
}
function getFMFDetails()
{
return $this->FMFDetails;
}
function setFMFDetails($FMFDetails, $charset = 'iso-8859-1')
{
$this->FMFDetails = $FMFDetails;
$this->_elements['FMFDetails']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/DoReferenceTransactionResponseType.php | PHP | asf20 | 1,778 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractResponseType.php';
/**
* CancelRecoupResponseType
*
* @package PayPal
*/
class CancelRecoupResponseType extends AbstractResponseType
{
function CancelRecoupResponseType()
{
parent::AbstractResponseType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/CancelRecoupResponseType.php | PHP | asf20 | 407 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractResponseType.php';
/**
* GetRecurringPaymentsProfileDetailsResponseType
*
* @package PayPal
*/
class GetRecurringPaymentsProfileDetailsResponseType extends AbstractResponseType
{
var $GetRecurringPaymentsProfileDetailsResponseDetails;
function GetRecurringPaymentsProfileDetailsResponseType()
{
parent::AbstractResponseType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'GetRecurringPaymentsProfileDetailsResponseDetails' =>
array (
'required' => true,
'type' => 'GetRecurringPaymentsProfileDetailsResponseDetailsType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getGetRecurringPaymentsProfileDetailsResponseDetails()
{
return $this->GetRecurringPaymentsProfileDetailsResponseDetails;
}
function setGetRecurringPaymentsProfileDetailsResponseDetails($GetRecurringPaymentsProfileDetailsResponseDetails, $charset = 'iso-8859-1')
{
$this->GetRecurringPaymentsProfileDetailsResponseDetails = $GetRecurringPaymentsProfileDetailsResponseDetails;
$this->_elements['GetRecurringPaymentsProfileDetailsResponseDetails']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/GetRecurringPaymentsProfileDetailsResponseType.php | PHP | asf20 | 1,449 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractRequestType.php';
/**
* GetRecurringPaymentsProfileDetailsRequestType
*
* @package PayPal
*/
class GetRecurringPaymentsProfileDetailsRequestType extends AbstractRequestType
{
var $ProfileID;
function GetRecurringPaymentsProfileDetailsRequestType()
{
parent::AbstractRequestType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'ProfileID' =>
array (
'required' => true,
'type' => 'string',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
));
}
function getProfileID()
{
return $this->ProfileID;
}
function setProfileID($ProfileID, $charset = 'iso-8859-1')
{
$this->ProfileID = $ProfileID;
$this->_elements['ProfileID']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/GetRecurringPaymentsProfileDetailsRequestType.php | PHP | asf20 | 1,027 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* PaymentTransactionType
*
* PaymentTransactionType Information about a PayPal payment from the seller side
*
* @package PayPal
*/
class PaymentTransactionType extends XSDSimpleType
{
/**
* Information about the recipient of the payment
*/
var $ReceiverInfo;
/**
* Information about the payer
*/
var $PayerInfo;
/**
* Information about the transaction
*/
var $PaymentInfo;
/**
* Information about an individual item in the transaction
*/
var $PaymentItemInfo;
/**
* Information about the user selected options.
*/
var $UserSelectedOptions;
/**
* Information about the Gift message.
*/
var $GiftMessage;
/**
* Information about the Gift receipt.
*/
var $GiftReceipt;
/**
* Information about the Gift Wrap name.
*/
var $GiftWrapName;
/**
* Information about the Gift Wrap amount.
*/
var $GiftWrapAmount;
/**
* Information about the Buyer email.
*/
var $BuyerEmailOptIn;
/**
* Information about the survey question.
*/
var $SurveyQuestion;
/**
* Information about the survey choice selected by the user.
*/
var $SurveyChoiceSelected;
function PaymentTransactionType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'ReceiverInfo' =>
array (
'required' => true,
'type' => 'ReceiverInfoType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'PayerInfo' =>
array (
'required' => true,
'type' => 'PayerInfoType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'PaymentInfo' =>
array (
'required' => true,
'type' => 'PaymentInfoType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'PaymentItemInfo' =>
array (
'required' => false,
'type' => 'PaymentItemInfoType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'UserSelectedOptions' =>
array (
'required' => false,
'type' => 'UserSelectedOptionType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'GiftMessage' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'GiftReceipt' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'GiftWrapName' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'GiftWrapAmount' =>
array (
'required' => false,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'BuyerEmailOptIn' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'SurveyQuestion' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'SurveyChoiceSelected' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getReceiverInfo()
{
return $this->ReceiverInfo;
}
function setReceiverInfo($ReceiverInfo, $charset = 'iso-8859-1')
{
$this->ReceiverInfo = $ReceiverInfo;
$this->_elements['ReceiverInfo']['charset'] = $charset;
}
function getPayerInfo()
{
return $this->PayerInfo;
}
function setPayerInfo($PayerInfo, $charset = 'iso-8859-1')
{
$this->PayerInfo = $PayerInfo;
$this->_elements['PayerInfo']['charset'] = $charset;
}
function getPaymentInfo()
{
return $this->PaymentInfo;
}
function setPaymentInfo($PaymentInfo, $charset = 'iso-8859-1')
{
$this->PaymentInfo = $PaymentInfo;
$this->_elements['PaymentInfo']['charset'] = $charset;
}
function getPaymentItemInfo()
{
return $this->PaymentItemInfo;
}
function setPaymentItemInfo($PaymentItemInfo, $charset = 'iso-8859-1')
{
$this->PaymentItemInfo = $PaymentItemInfo;
$this->_elements['PaymentItemInfo']['charset'] = $charset;
}
function getUserSelectedOptions()
{
return $this->UserSelectedOptions;
}
function setUserSelectedOptions($UserSelectedOptions, $charset = 'iso-8859-1')
{
$this->UserSelectedOptions = $UserSelectedOptions;
$this->_elements['UserSelectedOptions']['charset'] = $charset;
}
function getGiftMessage()
{
return $this->GiftMessage;
}
function setGiftMessage($GiftMessage, $charset = 'iso-8859-1')
{
$this->GiftMessage = $GiftMessage;
$this->_elements['GiftMessage']['charset'] = $charset;
}
function getGiftReceipt()
{
return $this->GiftReceipt;
}
function setGiftReceipt($GiftReceipt, $charset = 'iso-8859-1')
{
$this->GiftReceipt = $GiftReceipt;
$this->_elements['GiftReceipt']['charset'] = $charset;
}
function getGiftWrapName()
{
return $this->GiftWrapName;
}
function setGiftWrapName($GiftWrapName, $charset = 'iso-8859-1')
{
$this->GiftWrapName = $GiftWrapName;
$this->_elements['GiftWrapName']['charset'] = $charset;
}
function getGiftWrapAmount()
{
return $this->GiftWrapAmount;
}
function setGiftWrapAmount($GiftWrapAmount, $charset = 'iso-8859-1')
{
$this->GiftWrapAmount = $GiftWrapAmount;
$this->_elements['GiftWrapAmount']['charset'] = $charset;
}
function getBuyerEmailOptIn()
{
return $this->BuyerEmailOptIn;
}
function setBuyerEmailOptIn($BuyerEmailOptIn, $charset = 'iso-8859-1')
{
$this->BuyerEmailOptIn = $BuyerEmailOptIn;
$this->_elements['BuyerEmailOptIn']['charset'] = $charset;
}
function getSurveyQuestion()
{
return $this->SurveyQuestion;
}
function setSurveyQuestion($SurveyQuestion, $charset = 'iso-8859-1')
{
$this->SurveyQuestion = $SurveyQuestion;
$this->_elements['SurveyQuestion']['charset'] = $charset;
}
function getSurveyChoiceSelected()
{
return $this->SurveyChoiceSelected;
}
function setSurveyChoiceSelected($SurveyChoiceSelected, $charset = 'iso-8859-1')
{
$this->SurveyChoiceSelected = $SurveyChoiceSelected;
$this->_elements['SurveyChoiceSelected']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/PaymentTransactionType.php | PHP | asf20 | 7,616 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* ErrorType
*
* @package PayPal
*/
class ErrorType extends XSDSimpleType
{
var $ShortMessage;
var $LongMessage;
/**
* Error code can be used by a receiving application to debugging a response
* message. These codes will need to be uniquely defined for each application.
*/
var $ErrorCode;
/**
* SeverityCode indicates whether the error is an application level error or if it
* is informational error, i.e., warning.
*/
var $SeverityCode;
/**
* This optional element may carry additional application-specific error variables
* that indicate specific information about the error condition particularly in the
* cases where there are multiple instances of the ErrorType which require
* additional context.
*/
var $ErrorParameters;
function ErrorType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'ShortMessage' =>
array (
'required' => true,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'LongMessage' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ErrorCode' =>
array (
'required' => true,
'type' => 'token',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'SeverityCode' =>
array (
'required' => true,
'type' => 'SeverityCodeType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ErrorParameters' =>
array (
'required' => false,
'type' => 'ErrorParameterType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getShortMessage()
{
return $this->ShortMessage;
}
function setShortMessage($ShortMessage, $charset = 'iso-8859-1')
{
$this->ShortMessage = $ShortMessage;
$this->_elements['ShortMessage']['charset'] = $charset;
}
function getLongMessage()
{
return $this->LongMessage;
}
function setLongMessage($LongMessage, $charset = 'iso-8859-1')
{
$this->LongMessage = $LongMessage;
$this->_elements['LongMessage']['charset'] = $charset;
}
function getErrorCode()
{
return $this->ErrorCode;
}
function setErrorCode($ErrorCode, $charset = 'iso-8859-1')
{
$this->ErrorCode = $ErrorCode;
$this->_elements['ErrorCode']['charset'] = $charset;
}
function getSeverityCode()
{
return $this->SeverityCode;
}
function setSeverityCode($SeverityCode, $charset = 'iso-8859-1')
{
$this->SeverityCode = $SeverityCode;
$this->_elements['SeverityCode']['charset'] = $charset;
}
function getErrorParameters()
{
return $this->ErrorParameters;
}
function setErrorParameters($ErrorParameters, $charset = 'iso-8859-1')
{
$this->ErrorParameters = $ErrorParameters;
$this->_elements['ErrorParameters']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/ErrorType.php | PHP | asf20 | 3,598 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* CharityType
*
* Contains information about a Charity listing.in case of revision - all data can
* be min occur = 0
*
* @package PayPal
*/
class CharityType extends XSDSimpleType
{
var $CharityName;
var $CharityNumber;
var $DonationPercent;
function CharityType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'CharityName' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'CharityNumber' =>
array (
'required' => false,
'type' => 'int',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'DonationPercent' =>
array (
'required' => false,
'type' => 'float',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getCharityName()
{
return $this->CharityName;
}
function setCharityName($CharityName, $charset = 'iso-8859-1')
{
$this->CharityName = $CharityName;
$this->_elements['CharityName']['charset'] = $charset;
}
function getCharityNumber()
{
return $this->CharityNumber;
}
function setCharityNumber($CharityNumber, $charset = 'iso-8859-1')
{
$this->CharityNumber = $CharityNumber;
$this->_elements['CharityNumber']['charset'] = $charset;
}
function getDonationPercent()
{
return $this->DonationPercent;
}
function setDonationPercent($DonationPercent, $charset = 'iso-8859-1')
{
$this->DonationPercent = $DonationPercent;
$this->_elements['DonationPercent']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/CharityType.php | PHP | asf20 | 2,091 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* DoExpressCheckoutPaymentRequestDetailsType
*
* @package PayPal
*/
class DoExpressCheckoutPaymentRequestDetailsType extends XSDSimpleType
{
/**
* How you want to obtain payment.
*/
var $PaymentAction;
/**
* The timestamped token value that was returned by SetExpressCheckoutResponse and
* passed on GetExpressCheckoutDetailsRequest.
*/
var $Token;
/**
* Encrypted PayPal customer account identification number as returned by
* GetExpressCheckoutDetailsResponse.
*/
var $PayerID;
/**
* URL on Merchant site pertaining to this invoice.
*/
var $OrderURL;
/**
* Information about the payment
*/
var $PaymentDetails;
/**
* Flag to indicate if previously set promoCode shall be overriden. Value 1
* indicates overriding.
*/
var $PromoOverrideFlag;
/**
* Promotional financing code for item. Overrides any previous PromoCode setting.
*/
var $PromoCode;
/**
* Contains data for enhanced data like Airline Itinerary Data.
*/
var $EnhancedData;
/**
* Soft Descriptor supported for Sale and Auth in DEC only. For Order this will be
* ignored.
*/
var $SoftDescriptor;
/**
* Information about the user selected options.
*/
var $UserSelectedOptions;
/**
* Information about the Gift message.
*/
var $GiftMessage;
/**
* Information about the Gift receipt enable.
*/
var $GiftReceiptEnable;
/**
* Information about the Gift Wrap name.
*/
var $GiftWrapName;
/**
* Information about the Gift Wrap amount.
*/
var $GiftWrapAmount;
/**
* Information about the Buyer marketing email.
*/
var $BuyerMarketingEmail;
/**
* Information about the survey question.
*/
var $SurveyQuestion;
/**
* Information about the survey choice selected by the user.
*/
var $SurveyChoiceSelected;
/**
* An identification code for use by third-party applications to identify
* transactions.
*/
var $ButtonSource;
/**
* Merchant specified flag which indicates whether to create billing agreement as
* part of DoEC or not.
*/
var $SkipBACreation;
function DoExpressCheckoutPaymentRequestDetailsType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'PaymentAction' =>
array (
'required' => false,
'type' => 'PaymentActionCodeType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Token' =>
array (
'required' => true,
'type' => 'ExpressCheckoutTokenType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'PayerID' =>
array (
'required' => true,
'type' => 'UserIDType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'OrderURL' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'PaymentDetails' =>
array (
'required' => false,
'type' => 'PaymentDetailsType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'PromoOverrideFlag' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'PromoCode' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'EnhancedData' =>
array (
'required' => false,
'type' => 'EnhancedDataType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'SoftDescriptor' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'UserSelectedOptions' =>
array (
'required' => false,
'type' => 'UserSelectedOptionType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'GiftMessage' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'GiftReceiptEnable' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'GiftWrapName' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'GiftWrapAmount' =>
array (
'required' => false,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'BuyerMarketingEmail' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'SurveyQuestion' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'SurveyChoiceSelected' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ButtonSource' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'SkipBACreation' =>
array (
'required' => false,
'type' => 'boolean',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getPaymentAction()
{
return $this->PaymentAction;
}
function setPaymentAction($PaymentAction, $charset = 'iso-8859-1')
{
$this->PaymentAction = $PaymentAction;
$this->_elements['PaymentAction']['charset'] = $charset;
}
function getToken()
{
return $this->Token;
}
function setToken($Token, $charset = 'iso-8859-1')
{
$this->Token = $Token;
$this->_elements['Token']['charset'] = $charset;
}
function getPayerID()
{
return $this->PayerID;
}
function setPayerID($PayerID, $charset = 'iso-8859-1')
{
$this->PayerID = $PayerID;
$this->_elements['PayerID']['charset'] = $charset;
}
function getOrderURL()
{
return $this->OrderURL;
}
function setOrderURL($OrderURL, $charset = 'iso-8859-1')
{
$this->OrderURL = $OrderURL;
$this->_elements['OrderURL']['charset'] = $charset;
}
function getPaymentDetails()
{
return $this->PaymentDetails;
}
function setPaymentDetails($PaymentDetails, $charset = 'iso-8859-1')
{
$this->PaymentDetails = $PaymentDetails;
$this->_elements['PaymentDetails']['charset'] = $charset;
}
function getPromoOverrideFlag()
{
return $this->PromoOverrideFlag;
}
function setPromoOverrideFlag($PromoOverrideFlag, $charset = 'iso-8859-1')
{
$this->PromoOverrideFlag = $PromoOverrideFlag;
$this->_elements['PromoOverrideFlag']['charset'] = $charset;
}
function getPromoCode()
{
return $this->PromoCode;
}
function setPromoCode($PromoCode, $charset = 'iso-8859-1')
{
$this->PromoCode = $PromoCode;
$this->_elements['PromoCode']['charset'] = $charset;
}
function getEnhancedData()
{
return $this->EnhancedData;
}
function setEnhancedData($EnhancedData, $charset = 'iso-8859-1')
{
$this->EnhancedData = $EnhancedData;
$this->_elements['EnhancedData']['charset'] = $charset;
}
function getSoftDescriptor()
{
return $this->SoftDescriptor;
}
function setSoftDescriptor($SoftDescriptor, $charset = 'iso-8859-1')
{
$this->SoftDescriptor = $SoftDescriptor;
$this->_elements['SoftDescriptor']['charset'] = $charset;
}
function getUserSelectedOptions()
{
return $this->UserSelectedOptions;
}
function setUserSelectedOptions($UserSelectedOptions, $charset = 'iso-8859-1')
{
$this->UserSelectedOptions = $UserSelectedOptions;
$this->_elements['UserSelectedOptions']['charset'] = $charset;
}
function getGiftMessage()
{
return $this->GiftMessage;
}
function setGiftMessage($GiftMessage, $charset = 'iso-8859-1')
{
$this->GiftMessage = $GiftMessage;
$this->_elements['GiftMessage']['charset'] = $charset;
}
function getGiftReceiptEnable()
{
return $this->GiftReceiptEnable;
}
function setGiftReceiptEnable($GiftReceiptEnable, $charset = 'iso-8859-1')
{
$this->GiftReceiptEnable = $GiftReceiptEnable;
$this->_elements['GiftReceiptEnable']['charset'] = $charset;
}
function getGiftWrapName()
{
return $this->GiftWrapName;
}
function setGiftWrapName($GiftWrapName, $charset = 'iso-8859-1')
{
$this->GiftWrapName = $GiftWrapName;
$this->_elements['GiftWrapName']['charset'] = $charset;
}
function getGiftWrapAmount()
{
return $this->GiftWrapAmount;
}
function setGiftWrapAmount($GiftWrapAmount, $charset = 'iso-8859-1')
{
$this->GiftWrapAmount = $GiftWrapAmount;
$this->_elements['GiftWrapAmount']['charset'] = $charset;
}
function getBuyerMarketingEmail()
{
return $this->BuyerMarketingEmail;
}
function setBuyerMarketingEmail($BuyerMarketingEmail, $charset = 'iso-8859-1')
{
$this->BuyerMarketingEmail = $BuyerMarketingEmail;
$this->_elements['BuyerMarketingEmail']['charset'] = $charset;
}
function getSurveyQuestion()
{
return $this->SurveyQuestion;
}
function setSurveyQuestion($SurveyQuestion, $charset = 'iso-8859-1')
{
$this->SurveyQuestion = $SurveyQuestion;
$this->_elements['SurveyQuestion']['charset'] = $charset;
}
function getSurveyChoiceSelected()
{
return $this->SurveyChoiceSelected;
}
function setSurveyChoiceSelected($SurveyChoiceSelected, $charset = 'iso-8859-1')
{
$this->SurveyChoiceSelected = $SurveyChoiceSelected;
$this->_elements['SurveyChoiceSelected']['charset'] = $charset;
}
function getButtonSource()
{
return $this->ButtonSource;
}
function setButtonSource($ButtonSource, $charset = 'iso-8859-1')
{
$this->ButtonSource = $ButtonSource;
$this->_elements['ButtonSource']['charset'] = $charset;
}
function getSkipBACreation()
{
return $this->SkipBACreation;
}
function setSkipBACreation($SkipBACreation, $charset = 'iso-8859-1')
{
$this->SkipBACreation = $SkipBACreation;
$this->_elements['SkipBACreation']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/DoExpressCheckoutPaymentRequestDetailsType.php | PHP | asf20 | 12,081 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* GetRecurringPaymentsProfileDetailsResponseDetailsType
*
* @package PayPal
*/
class GetRecurringPaymentsProfileDetailsResponseDetailsType extends XSDSimpleType
{
/**
* Recurring Billing Profile ID
*/
var $ProfileID;
var $ProfileStatus;
var $Description;
var $AutoBillOutstandingAmount;
var $MaxFailedPayments;
var $RecurringPaymentsProfileDetails;
var $CurrentRecurringPaymentsPeriod;
var $RecurringPaymentsSummary;
var $CreditCard;
var $TrialRecurringPaymentsPeriod;
var $RegularRecurringPaymentsPeriod;
var $TrialAmountPaid;
var $RegularAmountPaid;
var $AggregateAmount;
var $AggregateOptionalAmount;
var $FinalPaymentDueDate;
function GetRecurringPaymentsProfileDetailsResponseDetailsType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'ProfileID' =>
array (
'required' => true,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ProfileStatus' =>
array (
'required' => true,
'type' => 'RecurringPaymentsProfileStatusType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Description' =>
array (
'required' => true,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'AutoBillOutstandingAmount' =>
array (
'required' => true,
'type' => 'AutoBillType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'MaxFailedPayments' =>
array (
'required' => true,
'type' => 'int',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'RecurringPaymentsProfileDetails' =>
array (
'required' => true,
'type' => 'RecurringPaymentsProfileDetailsType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'CurrentRecurringPaymentsPeriod' =>
array (
'required' => false,
'type' => 'BillingPeriodDetailsType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'RecurringPaymentsSummary' =>
array (
'required' => true,
'type' => 'RecurringPaymentsSummaryType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'CreditCard' =>
array (
'required' => false,
'type' => 'CreditCardDetailsType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'TrialRecurringPaymentsPeriod' =>
array (
'required' => false,
'type' => 'BillingPeriodDetailsType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'RegularRecurringPaymentsPeriod' =>
array (
'required' => false,
'type' => 'BillingPeriodDetailsType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'TrialAmountPaid' =>
array (
'required' => false,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'RegularAmountPaid' =>
array (
'required' => false,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'AggregateAmount' =>
array (
'required' => false,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'AggregateOptionalAmount' =>
array (
'required' => false,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'FinalPaymentDueDate' =>
array (
'required' => false,
'type' => 'dateTime',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getProfileID()
{
return $this->ProfileID;
}
function setProfileID($ProfileID, $charset = 'iso-8859-1')
{
$this->ProfileID = $ProfileID;
$this->_elements['ProfileID']['charset'] = $charset;
}
function getProfileStatus()
{
return $this->ProfileStatus;
}
function setProfileStatus($ProfileStatus, $charset = 'iso-8859-1')
{
$this->ProfileStatus = $ProfileStatus;
$this->_elements['ProfileStatus']['charset'] = $charset;
}
function getDescription()
{
return $this->Description;
}
function setDescription($Description, $charset = 'iso-8859-1')
{
$this->Description = $Description;
$this->_elements['Description']['charset'] = $charset;
}
function getAutoBillOutstandingAmount()
{
return $this->AutoBillOutstandingAmount;
}
function setAutoBillOutstandingAmount($AutoBillOutstandingAmount, $charset = 'iso-8859-1')
{
$this->AutoBillOutstandingAmount = $AutoBillOutstandingAmount;
$this->_elements['AutoBillOutstandingAmount']['charset'] = $charset;
}
function getMaxFailedPayments()
{
return $this->MaxFailedPayments;
}
function setMaxFailedPayments($MaxFailedPayments, $charset = 'iso-8859-1')
{
$this->MaxFailedPayments = $MaxFailedPayments;
$this->_elements['MaxFailedPayments']['charset'] = $charset;
}
function getRecurringPaymentsProfileDetails()
{
return $this->RecurringPaymentsProfileDetails;
}
function setRecurringPaymentsProfileDetails($RecurringPaymentsProfileDetails, $charset = 'iso-8859-1')
{
$this->RecurringPaymentsProfileDetails = $RecurringPaymentsProfileDetails;
$this->_elements['RecurringPaymentsProfileDetails']['charset'] = $charset;
}
function getCurrentRecurringPaymentsPeriod()
{
return $this->CurrentRecurringPaymentsPeriod;
}
function setCurrentRecurringPaymentsPeriod($CurrentRecurringPaymentsPeriod, $charset = 'iso-8859-1')
{
$this->CurrentRecurringPaymentsPeriod = $CurrentRecurringPaymentsPeriod;
$this->_elements['CurrentRecurringPaymentsPeriod']['charset'] = $charset;
}
function getRecurringPaymentsSummary()
{
return $this->RecurringPaymentsSummary;
}
function setRecurringPaymentsSummary($RecurringPaymentsSummary, $charset = 'iso-8859-1')
{
$this->RecurringPaymentsSummary = $RecurringPaymentsSummary;
$this->_elements['RecurringPaymentsSummary']['charset'] = $charset;
}
function getCreditCard()
{
return $this->CreditCard;
}
function setCreditCard($CreditCard, $charset = 'iso-8859-1')
{
$this->CreditCard = $CreditCard;
$this->_elements['CreditCard']['charset'] = $charset;
}
function getTrialRecurringPaymentsPeriod()
{
return $this->TrialRecurringPaymentsPeriod;
}
function setTrialRecurringPaymentsPeriod($TrialRecurringPaymentsPeriod, $charset = 'iso-8859-1')
{
$this->TrialRecurringPaymentsPeriod = $TrialRecurringPaymentsPeriod;
$this->_elements['TrialRecurringPaymentsPeriod']['charset'] = $charset;
}
function getRegularRecurringPaymentsPeriod()
{
return $this->RegularRecurringPaymentsPeriod;
}
function setRegularRecurringPaymentsPeriod($RegularRecurringPaymentsPeriod, $charset = 'iso-8859-1')
{
$this->RegularRecurringPaymentsPeriod = $RegularRecurringPaymentsPeriod;
$this->_elements['RegularRecurringPaymentsPeriod']['charset'] = $charset;
}
function getTrialAmountPaid()
{
return $this->TrialAmountPaid;
}
function setTrialAmountPaid($TrialAmountPaid, $charset = 'iso-8859-1')
{
$this->TrialAmountPaid = $TrialAmountPaid;
$this->_elements['TrialAmountPaid']['charset'] = $charset;
}
function getRegularAmountPaid()
{
return $this->RegularAmountPaid;
}
function setRegularAmountPaid($RegularAmountPaid, $charset = 'iso-8859-1')
{
$this->RegularAmountPaid = $RegularAmountPaid;
$this->_elements['RegularAmountPaid']['charset'] = $charset;
}
function getAggregateAmount()
{
return $this->AggregateAmount;
}
function setAggregateAmount($AggregateAmount, $charset = 'iso-8859-1')
{
$this->AggregateAmount = $AggregateAmount;
$this->_elements['AggregateAmount']['charset'] = $charset;
}
function getAggregateOptionalAmount()
{
return $this->AggregateOptionalAmount;
}
function setAggregateOptionalAmount($AggregateOptionalAmount, $charset = 'iso-8859-1')
{
$this->AggregateOptionalAmount = $AggregateOptionalAmount;
$this->_elements['AggregateOptionalAmount']['charset'] = $charset;
}
function getFinalPaymentDueDate()
{
return $this->FinalPaymentDueDate;
}
function setFinalPaymentDueDate($FinalPaymentDueDate, $charset = 'iso-8859-1')
{
$this->FinalPaymentDueDate = $FinalPaymentDueDate;
$this->_elements['FinalPaymentDueDate']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/GetRecurringPaymentsProfileDetailsResponseDetailsType.php | PHP | asf20 | 9,998 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractResponseType.php';
/**
* DoReauthorizationResponseType
*
* @package PayPal
*/
class DoReauthorizationResponseType extends AbstractResponseType
{
/**
* A new authorization identification number.
*/
var $AuthorizationID;
var $AuthorizationInfo;
function DoReauthorizationResponseType()
{
parent::AbstractResponseType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'AuthorizationID' =>
array (
'required' => true,
'type' => 'string',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'AuthorizationInfo' =>
array (
'required' => false,
'type' => 'AuthorizationInfoType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getAuthorizationID()
{
return $this->AuthorizationID;
}
function setAuthorizationID($AuthorizationID, $charset = 'iso-8859-1')
{
$this->AuthorizationID = $AuthorizationID;
$this->_elements['AuthorizationID']['charset'] = $charset;
}
function getAuthorizationInfo()
{
return $this->AuthorizationInfo;
}
function setAuthorizationInfo($AuthorizationInfo, $charset = 'iso-8859-1')
{
$this->AuthorizationInfo = $AuthorizationInfo;
$this->_elements['AuthorizationInfo']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/DoReauthorizationResponseType.php | PHP | asf20 | 1,666 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* BusinessOwnerInfoType
*
* BusinessOwnerInfoType
*
* @package PayPal
*/
class BusinessOwnerInfoType extends XSDSimpleType
{
/**
* Details about the business owner
*/
var $Owner;
/**
* Business owner ’s home telephone number
*/
var $HomePhone;
/**
* Business owner ’s mobile telephone number
*/
var $MobilePhone;
/**
* Business owner ’s social security number
*/
var $SSN;
function BusinessOwnerInfoType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'Owner' =>
array (
'required' => false,
'type' => 'PayerInfoType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'HomePhone' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'MobilePhone' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'SSN' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getOwner()
{
return $this->Owner;
}
function setOwner($Owner, $charset = 'iso-8859-1')
{
$this->Owner = $Owner;
$this->_elements['Owner']['charset'] = $charset;
}
function getHomePhone()
{
return $this->HomePhone;
}
function setHomePhone($HomePhone, $charset = 'iso-8859-1')
{
$this->HomePhone = $HomePhone;
$this->_elements['HomePhone']['charset'] = $charset;
}
function getMobilePhone()
{
return $this->MobilePhone;
}
function setMobilePhone($MobilePhone, $charset = 'iso-8859-1')
{
$this->MobilePhone = $MobilePhone;
$this->_elements['MobilePhone']['charset'] = $charset;
}
function getSSN()
{
return $this->SSN;
}
function setSSN($SSN, $charset = 'iso-8859-1')
{
$this->SSN = $SSN;
$this->_elements['SSN']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/BusinessOwnerInfoType.php | PHP | asf20 | 2,605 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* OptionSelectionDetailsType
*
* @package PayPal
*/
class OptionSelectionDetailsType extends XSDSimpleType
{
/**
* Option Selection.
*/
var $OptionSelection;
/**
* Option Price.
*/
var $Price;
/**
* Option Type
*/
var $OptionType;
var $PaymentPeriod;
function OptionSelectionDetailsType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'OptionSelection' =>
array (
'required' => true,
'type' => 'string',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'Price' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'OptionType' =>
array (
'required' => false,
'type' => 'OptionTypeListType',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'PaymentPeriod' =>
array (
'required' => false,
'type' => 'InstallmentDetailsType',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
));
}
function getOptionSelection()
{
return $this->OptionSelection;
}
function setOptionSelection($OptionSelection, $charset = 'iso-8859-1')
{
$this->OptionSelection = $OptionSelection;
$this->_elements['OptionSelection']['charset'] = $charset;
}
function getPrice()
{
return $this->Price;
}
function setPrice($Price, $charset = 'iso-8859-1')
{
$this->Price = $Price;
$this->_elements['Price']['charset'] = $charset;
}
function getOptionType()
{
return $this->OptionType;
}
function setOptionType($OptionType, $charset = 'iso-8859-1')
{
$this->OptionType = $OptionType;
$this->_elements['OptionType']['charset'] = $charset;
}
function getPaymentPeriod()
{
return $this->PaymentPeriod;
}
function setPaymentPeriod($PaymentPeriod, $charset = 'iso-8859-1')
{
$this->PaymentPeriod = $PaymentPeriod;
$this->_elements['PaymentPeriod']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/optionselectiondetailstype.php | PHP | asf20 | 2,560 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractResponseType.php';
/**
* GetBalanceResponseType
*
* @package PayPal
*/
class GetBalanceResponseType extends AbstractResponseType
{
var $Balance;
var $BalanceTimeStamp;
var $BalanceHoldings;
function GetBalanceResponseType()
{
parent::AbstractResponseType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'Balance' =>
array (
'required' => true,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'BalanceTimeStamp' =>
array (
'required' => true,
'type' => 'dateTime',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'BalanceHoldings' =>
array (
'required' => false,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
));
}
function getBalance()
{
return $this->Balance;
}
function setBalance($Balance, $charset = 'iso-8859-1')
{
$this->Balance = $Balance;
$this->_elements['Balance']['charset'] = $charset;
}
function getBalanceTimeStamp()
{
return $this->BalanceTimeStamp;
}
function setBalanceTimeStamp($BalanceTimeStamp, $charset = 'iso-8859-1')
{
$this->BalanceTimeStamp = $BalanceTimeStamp;
$this->_elements['BalanceTimeStamp']['charset'] = $charset;
}
function getBalanceHoldings()
{
return $this->BalanceHoldings;
}
function setBalanceHoldings($BalanceHoldings, $charset = 'iso-8859-1')
{
$this->BalanceHoldings = $BalanceHoldings;
$this->_elements['BalanceHoldings']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/GetBalanceResponseType.php | PHP | asf20 | 2,015 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractRequestType.php';
/**
* GetAccessPermissionDetailsRequestType
*
* @package PayPal
*/
class GetAccessPermissionDetailsRequestType extends AbstractRequestType
{
/**
* A timestamped token, the value of which was returned by SetAuthFlowParam
* Response.
*/
var $Token;
function GetAccessPermissionDetailsRequestType()
{
parent::AbstractRequestType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'Token' =>
array (
'required' => true,
'type' => 'AuthFlowTokenType',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
));
}
function getToken()
{
return $this->Token;
}
function setToken($Token, $charset = 'iso-8859-1')
{
$this->Token = $Token;
$this->_elements['Token']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/GetAccessPermissionDetailsRequestType.php | PHP | asf20 | 1,091 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractResponseType.php';
/**
* RefundTransactionResponseType
*
* @package PayPal
*/
class RefundTransactionResponseType extends AbstractResponseType
{
/**
* Unique transaction ID of the refund.
*/
var $RefundTransactionID;
/**
* Amount subtracted from PayPal balance of original recipient of payment to make
* this refund
*/
var $NetRefundAmount;
/**
* Transaction fee refunded to original recipient of payment
*/
var $FeeRefundAmount;
/**
* Amount of money refunded to original payer
*/
var $GrossRefundAmount;
/**
* Total of all previous refunds
*/
var $TotalRefundedAmount;
function RefundTransactionResponseType()
{
parent::AbstractResponseType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'RefundTransactionID' =>
array (
'required' => false,
'type' => 'TransactionId',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'NetRefundAmount' =>
array (
'required' => false,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'FeeRefundAmount' =>
array (
'required' => false,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'GrossRefundAmount' =>
array (
'required' => false,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'TotalRefundedAmount' =>
array (
'required' => false,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
));
}
function getRefundTransactionID()
{
return $this->RefundTransactionID;
}
function setRefundTransactionID($RefundTransactionID, $charset = 'iso-8859-1')
{
$this->RefundTransactionID = $RefundTransactionID;
$this->_elements['RefundTransactionID']['charset'] = $charset;
}
function getNetRefundAmount()
{
return $this->NetRefundAmount;
}
function setNetRefundAmount($NetRefundAmount, $charset = 'iso-8859-1')
{
$this->NetRefundAmount = $NetRefundAmount;
$this->_elements['NetRefundAmount']['charset'] = $charset;
}
function getFeeRefundAmount()
{
return $this->FeeRefundAmount;
}
function setFeeRefundAmount($FeeRefundAmount, $charset = 'iso-8859-1')
{
$this->FeeRefundAmount = $FeeRefundAmount;
$this->_elements['FeeRefundAmount']['charset'] = $charset;
}
function getGrossRefundAmount()
{
return $this->GrossRefundAmount;
}
function setGrossRefundAmount($GrossRefundAmount, $charset = 'iso-8859-1')
{
$this->GrossRefundAmount = $GrossRefundAmount;
$this->_elements['GrossRefundAmount']['charset'] = $charset;
}
function getTotalRefundedAmount()
{
return $this->TotalRefundedAmount;
}
function setTotalRefundedAmount($TotalRefundedAmount, $charset = 'iso-8859-1')
{
$this->TotalRefundedAmount = $TotalRefundedAmount;
$this->_elements['TotalRefundedAmount']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/RefundTransactionResponseType.php | PHP | asf20 | 3,639 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* AdditionalAccountType
*
* The AdditionalAccount component represents historical data related to accounts
* that the user held with a country of residency other than the current one. eBay
* users can have one active account at a time. For users who change their country
* of residency and modify their eBay registration to reflect this change, the new
* country of residence becomes the currently active account. Any account
* associated with a previous country is treated as an additional account. Because
* the currency for these additional accounts are different than the active
* account, each additional account includes an indicator of the currency for that
* account. Users who never change their country of residence will not have any
* additional accounts.
*
* @package PayPal
*/
class AdditionalAccountType extends XSDSimpleType
{
var $Balance;
var $Currency;
var $AccountCode;
function AdditionalAccountType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'Balance' =>
array (
'required' => true,
'type' => NULL,
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Currency' =>
array (
'required' => true,
'type' => NULL,
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'AccountCode' =>
array (
'required' => true,
'type' => NULL,
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getBalance()
{
return $this->Balance;
}
function setBalance($Balance, $charset = 'iso-8859-1')
{
$this->Balance = $Balance;
$this->_elements['Balance']['charset'] = $charset;
}
function getCurrency()
{
return $this->Currency;
}
function setCurrency($Currency, $charset = 'iso-8859-1')
{
$this->Currency = $Currency;
$this->_elements['Currency']['charset'] = $charset;
}
function getAccountCode()
{
return $this->AccountCode;
}
function setAccountCode($AccountCode, $charset = 'iso-8859-1')
{
$this->AccountCode = $AccountCode;
$this->_elements['AccountCode']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/AdditionalAccountType.php | PHP | asf20 | 2,641 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractRequestType.php';
/**
* BMGetButtonDetailsRequestType
*
* @package PayPal
*/
class BMGetButtonDetailsRequestType extends AbstractRequestType
{
/**
* Button ID of button to return.
*/
var $HostedButtonID;
function BMGetButtonDetailsRequestType()
{
parent::AbstractRequestType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'HostedButtonID' =>
array (
'required' => true,
'type' => 'string',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
));
}
function getHostedButtonID()
{
return $this->HostedButtonID;
}
function setHostedButtonID($HostedButtonID, $charset = 'iso-8859-1')
{
$this->HostedButtonID = $HostedButtonID;
$this->_elements['HostedButtonID']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/bmgetbuttondetailsrequesttype.php | PHP | asf20 | 1,078 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* EnhancedItemDataType
*
* @package PayPal
*/
class EnhancedItemDataType extends XSDSimpleType
{
function EnhancedItemDataType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:EnhancedDataTypes';
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/EnhancedItemDataType.php | PHP | asf20 | 383 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* ButtonSearchResultType
*
* @package PayPal
*/
class ButtonSearchResultType extends XSDSimpleType
{
var $HostedButtonID;
var $ButtonType;
var $ItemName;
var $ModifyDate;
function ButtonSearchResultType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'HostedButtonID' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ButtonType' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ItemName' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ModifyDate' =>
array (
'required' => false,
'type' => 'dateTime',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getHostedButtonID()
{
return $this->HostedButtonID;
}
function setHostedButtonID($HostedButtonID, $charset = 'iso-8859-1')
{
$this->HostedButtonID = $HostedButtonID;
$this->_elements['HostedButtonID']['charset'] = $charset;
}
function getButtonType()
{
return $this->ButtonType;
}
function setButtonType($ButtonType, $charset = 'iso-8859-1')
{
$this->ButtonType = $ButtonType;
$this->_elements['ButtonType']['charset'] = $charset;
}
function getItemName()
{
return $this->ItemName;
}
function setItemName($ItemName, $charset = 'iso-8859-1')
{
$this->ItemName = $ItemName;
$this->_elements['ItemName']['charset'] = $charset;
}
function getModifyDate()
{
return $this->ModifyDate;
}
function setModifyDate($ModifyDate, $charset = 'iso-8859-1')
{
$this->ModifyDate = $ModifyDate;
$this->_elements['ModifyDate']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/buttonsearchresulttype.php | PHP | asf20 | 2,446 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractResponseType.php';
/**
* GetAccessPermissionDetailsResponseType
*
* @package PayPal
*/
class GetAccessPermissionDetailsResponseType extends AbstractResponseType
{
var $GetAccessPermissionDetailsResponseDetails;
function GetAccessPermissionDetailsResponseType()
{
parent::AbstractResponseType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'GetAccessPermissionDetailsResponseDetails' =>
array (
'required' => true,
'type' => 'GetAccessPermissionDetailsResponseDetailsType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getGetAccessPermissionDetailsResponseDetails()
{
return $this->GetAccessPermissionDetailsResponseDetails;
}
function setGetAccessPermissionDetailsResponseDetails($GetAccessPermissionDetailsResponseDetails, $charset = 'iso-8859-1')
{
$this->GetAccessPermissionDetailsResponseDetails = $GetAccessPermissionDetailsResponseDetails;
$this->_elements['GetAccessPermissionDetailsResponseDetails']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/GetAccessPermissionDetailsResponseType.php | PHP | asf20 | 1,345 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* DoNonReferencedCreditResponseDetailsType
*
* @package PayPal
*/
class DoNonReferencedCreditResponseDetailsType extends XSDSimpleType
{
var $Amount;
var $TransactionID;
function DoNonReferencedCreditResponseDetailsType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'Amount' =>
array (
'required' => true,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'TransactionID' =>
array (
'required' => true,
'type' => 'TransactionId',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getAmount()
{
return $this->Amount;
}
function setAmount($Amount, $charset = 'iso-8859-1')
{
$this->Amount = $Amount;
$this->_elements['Amount']['charset'] = $charset;
}
function getTransactionID()
{
return $this->TransactionID;
}
function setTransactionID($TransactionID, $charset = 'iso-8859-1')
{
$this->TransactionID = $TransactionID;
$this->_elements['TransactionID']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/DoNonReferencedCreditResponseDetailsType.php | PHP | asf20 | 1,513 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* CreditCardDetailsType
*
* CreditCardDetailsType Information about a Credit Card.
*
* @package PayPal
*/
class CreditCardDetailsType extends XSDSimpleType
{
var $CreditCardType;
var $CreditCardNumber;
var $ExpMonth;
var $ExpYear;
var $CardOwner;
var $CVV2;
var $StartMonth;
var $StartYear;
var $IssueNumber;
var $ThreeDSecureRequest;
function CreditCardDetailsType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'CreditCardType' =>
array (
'required' => false,
'type' => 'CreditCardTypeType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'CreditCardNumber' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ExpMonth' =>
array (
'required' => false,
'type' => 'int',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ExpYear' =>
array (
'required' => false,
'type' => 'int',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'CardOwner' =>
array (
'required' => false,
'type' => 'PayerInfoType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'CVV2' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'StartMonth' =>
array (
'required' => false,
'type' => 'int',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'StartYear' =>
array (
'required' => false,
'type' => 'int',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'IssueNumber' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ThreeDSecureRequest' =>
array (
'required' => false,
'type' => 'ThreeDSecureRequestType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getCreditCardType()
{
return $this->CreditCardType;
}
function setCreditCardType($CreditCardType, $charset = 'iso-8859-1')
{
$this->CreditCardType = $CreditCardType;
$this->_elements['CreditCardType']['charset'] = $charset;
}
function getCreditCardNumber()
{
return $this->CreditCardNumber;
}
function setCreditCardNumber($CreditCardNumber, $charset = 'iso-8859-1')
{
$this->CreditCardNumber = $CreditCardNumber;
$this->_elements['CreditCardNumber']['charset'] = $charset;
}
function getExpMonth()
{
return $this->ExpMonth;
}
function setExpMonth($ExpMonth, $charset = 'iso-8859-1')
{
$this->ExpMonth = $ExpMonth;
$this->_elements['ExpMonth']['charset'] = $charset;
}
function getExpYear()
{
return $this->ExpYear;
}
function setExpYear($ExpYear, $charset = 'iso-8859-1')
{
$this->ExpYear = $ExpYear;
$this->_elements['ExpYear']['charset'] = $charset;
}
function getCardOwner()
{
return $this->CardOwner;
}
function setCardOwner($CardOwner, $charset = 'iso-8859-1')
{
$this->CardOwner = $CardOwner;
$this->_elements['CardOwner']['charset'] = $charset;
}
function getCVV2()
{
return $this->CVV2;
}
function setCVV2($CVV2, $charset = 'iso-8859-1')
{
$this->CVV2 = $CVV2;
$this->_elements['CVV2']['charset'] = $charset;
}
function getStartMonth()
{
return $this->StartMonth;
}
function setStartMonth($StartMonth, $charset = 'iso-8859-1')
{
$this->StartMonth = $StartMonth;
$this->_elements['StartMonth']['charset'] = $charset;
}
function getStartYear()
{
return $this->StartYear;
}
function setStartYear($StartYear, $charset = 'iso-8859-1')
{
$this->StartYear = $StartYear;
$this->_elements['StartYear']['charset'] = $charset;
}
function getIssueNumber()
{
return $this->IssueNumber;
}
function setIssueNumber($IssueNumber, $charset = 'iso-8859-1')
{
$this->IssueNumber = $IssueNumber;
$this->_elements['IssueNumber']['charset'] = $charset;
}
function getThreeDSecureRequest()
{
return $this->ThreeDSecureRequest;
}
function setThreeDSecureRequest($ThreeDSecureRequest, $charset = 'iso-8859-1')
{
$this->ThreeDSecureRequest = $ThreeDSecureRequest;
$this->_elements['ThreeDSecureRequest']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/CreditCardDetailsType.php | PHP | asf20 | 5,488 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* OtherPaymentMethodDetailsType
*
* Lists the Payment Methods (other than PayPal) that the use can pay with e.g.
* Money Order.
*
* @package PayPal
*/
class OtherPaymentMethodDetailsType extends XSDSimpleType
{
/**
* The identifier of the Payment Method.
*/
var $OtherPaymentMethodId;
/**
* Valid values are 'Method', 'SubMethod'.
*/
var $OtherPaymentMethodType;
/**
* The name of the Payment Method.
*/
var $OtherPaymentMethodLabel;
/**
* The short description of the Payment Method, goes along with the label.
*/
var $OtherPaymentMethodLabelDescription;
/**
* The title for the long description.
*/
var $OtherPaymentMethodLongDescriptionTitle;
/**
* The long description of the Payment Method.
*/
var $OtherPaymentMethodLongDescription;
/**
* The icon of the Payment Method.
*/
var $OtherPaymentMethodIcon;
/**
* If this flag is true, then OtherPaymentMethodIcon is required to have a valid
* value; the label will be hidden and only ICON will be shown.
*/
var $OtherPaymentMethodHideLabel;
function OtherPaymentMethodDetailsType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'OtherPaymentMethodId' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'OtherPaymentMethodType' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'OtherPaymentMethodLabel' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'OtherPaymentMethodLabelDescription' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'OtherPaymentMethodLongDescriptionTitle' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'OtherPaymentMethodLongDescription' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'OtherPaymentMethodIcon' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'OtherPaymentMethodHideLabel' =>
array (
'required' => false,
'type' => 'boolean',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getOtherPaymentMethodId()
{
return $this->OtherPaymentMethodId;
}
function setOtherPaymentMethodId($OtherPaymentMethodId, $charset = 'iso-8859-1')
{
$this->OtherPaymentMethodId = $OtherPaymentMethodId;
$this->_elements['OtherPaymentMethodId']['charset'] = $charset;
}
function getOtherPaymentMethodType()
{
return $this->OtherPaymentMethodType;
}
function setOtherPaymentMethodType($OtherPaymentMethodType, $charset = 'iso-8859-1')
{
$this->OtherPaymentMethodType = $OtherPaymentMethodType;
$this->_elements['OtherPaymentMethodType']['charset'] = $charset;
}
function getOtherPaymentMethodLabel()
{
return $this->OtherPaymentMethodLabel;
}
function setOtherPaymentMethodLabel($OtherPaymentMethodLabel, $charset = 'iso-8859-1')
{
$this->OtherPaymentMethodLabel = $OtherPaymentMethodLabel;
$this->_elements['OtherPaymentMethodLabel']['charset'] = $charset;
}
function getOtherPaymentMethodLabelDescription()
{
return $this->OtherPaymentMethodLabelDescription;
}
function setOtherPaymentMethodLabelDescription($OtherPaymentMethodLabelDescription, $charset = 'iso-8859-1')
{
$this->OtherPaymentMethodLabelDescription = $OtherPaymentMethodLabelDescription;
$this->_elements['OtherPaymentMethodLabelDescription']['charset'] = $charset;
}
function getOtherPaymentMethodLongDescriptionTitle()
{
return $this->OtherPaymentMethodLongDescriptionTitle;
}
function setOtherPaymentMethodLongDescriptionTitle($OtherPaymentMethodLongDescriptionTitle, $charset = 'iso-8859-1')
{
$this->OtherPaymentMethodLongDescriptionTitle = $OtherPaymentMethodLongDescriptionTitle;
$this->_elements['OtherPaymentMethodLongDescriptionTitle']['charset'] = $charset;
}
function getOtherPaymentMethodLongDescription()
{
return $this->OtherPaymentMethodLongDescription;
}
function setOtherPaymentMethodLongDescription($OtherPaymentMethodLongDescription, $charset = 'iso-8859-1')
{
$this->OtherPaymentMethodLongDescription = $OtherPaymentMethodLongDescription;
$this->_elements['OtherPaymentMethodLongDescription']['charset'] = $charset;
}
function getOtherPaymentMethodIcon()
{
return $this->OtherPaymentMethodIcon;
}
function setOtherPaymentMethodIcon($OtherPaymentMethodIcon, $charset = 'iso-8859-1')
{
$this->OtherPaymentMethodIcon = $OtherPaymentMethodIcon;
$this->_elements['OtherPaymentMethodIcon']['charset'] = $charset;
}
function getOtherPaymentMethodHideLabel()
{
return $this->OtherPaymentMethodHideLabel;
}
function setOtherPaymentMethodHideLabel($OtherPaymentMethodHideLabel, $charset = 'iso-8859-1')
{
$this->OtherPaymentMethodHideLabel = $OtherPaymentMethodHideLabel;
$this->_elements['OtherPaymentMethodHideLabel']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/OtherPaymentMethodDetailsType.php | PHP | asf20 | 6,367 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractResponseType.php';
/**
* InitiateRecoupResponseType
*
* @package PayPal
*/
class InitiateRecoupResponseType extends AbstractResponseType
{
function InitiateRecoupResponseType()
{
parent::AbstractResponseType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/InitiateRecoupResponseType.php | PHP | asf20 | 413 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* VendorHostedPictureType
*
* @package PayPal
*/
class VendorHostedPictureType extends XSDSimpleType
{
/**
* URLs for item picture that are stored/hosted at eBay site.
*/
var $PictureURL;
/**
* URL for a picture for the gallery. If the GalleryFeatured argument is true, a
* value must be supplied for either the GalleryURL or the PictureURL argument. In
* either case: (a) If a URL is provided for only PictureURL, it is used as the
* Gallery thumbnail. (b) If a URL is provided for both GalleryURL and PictureURL,
* then the picture indicated in GalleryURL is used as the thumbnail. The image
* used for the Gallery thumbnail (specified in the GalleryURL or PictureURL
* argument) must be in one of the graphics formats JPEG, BMP, TIF, or GIF.
*/
var $GalleryURL;
/**
* This will be either "Featured" or "Gallery".
*/
var $GalleryType;
function VendorHostedPictureType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'PictureURL' =>
array (
'required' => false,
'type' => 'anyURI',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'GalleryURL' =>
array (
'required' => false,
'type' => 'anyURI',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'GalleryType' =>
array (
'required' => false,
'type' => 'GalleryTypeCodeType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getPictureURL()
{
return $this->PictureURL;
}
function setPictureURL($PictureURL, $charset = 'iso-8859-1')
{
$this->PictureURL = $PictureURL;
$this->_elements['PictureURL']['charset'] = $charset;
}
function getGalleryURL()
{
return $this->GalleryURL;
}
function setGalleryURL($GalleryURL, $charset = 'iso-8859-1')
{
$this->GalleryURL = $GalleryURL;
$this->_elements['GalleryURL']['charset'] = $charset;
}
function getGalleryType()
{
return $this->GalleryType;
}
function setGalleryType($GalleryType, $charset = 'iso-8859-1')
{
$this->GalleryType = $GalleryType;
$this->_elements['GalleryType']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/VendorHostedPictureType.php | PHP | asf20 | 2,719 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* EnhancedCompleteRecoupResponseDetailsType
*
* @package PayPal
*/
class EnhancedCompleteRecoupResponseDetailsType extends XSDSimpleType
{
function EnhancedCompleteRecoupResponseDetailsType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:EnhancedDataTypes';
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/EnhancedCompleteRecoupResponseDetailsType.php | PHP | asf20 | 446 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractResponseType.php';
/**
* ManageRecurringPaymentsProfileStatusResponseType
*
* @package PayPal
*/
class ManageRecurringPaymentsProfileStatusResponseType extends AbstractResponseType
{
var $ManageRecurringPaymentsProfileStatusResponseDetails;
function ManageRecurringPaymentsProfileStatusResponseType()
{
parent::AbstractResponseType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'ManageRecurringPaymentsProfileStatusResponseDetails' =>
array (
'required' => true,
'type' => 'ManageRecurringPaymentsProfileStatusResponseDetailsType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getManageRecurringPaymentsProfileStatusResponseDetails()
{
return $this->ManageRecurringPaymentsProfileStatusResponseDetails;
}
function setManageRecurringPaymentsProfileStatusResponseDetails($ManageRecurringPaymentsProfileStatusResponseDetails, $charset = 'iso-8859-1')
{
$this->ManageRecurringPaymentsProfileStatusResponseDetails = $ManageRecurringPaymentsProfileStatusResponseDetails;
$this->_elements['ManageRecurringPaymentsProfileStatusResponseDetails']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/ManageRecurringPaymentsProfileStatusResponseType.php | PHP | asf20 | 1,475 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractRequestType.php';
/**
* DoReferenceTransactionRequestType
*
* @package PayPal
*/
class DoReferenceTransactionRequestType extends AbstractRequestType
{
var $DoReferenceTransactionRequestDetails;
/**
* This flag indicates that the response should include FMFDetails
*/
var $ReturnFMFDetails;
function DoReferenceTransactionRequestType()
{
parent::AbstractRequestType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'DoReferenceTransactionRequestDetails' =>
array (
'required' => true,
'type' => 'DoReferenceTransactionRequestDetailsType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ReturnFMFDetails' =>
array (
'required' => false,
'type' => 'int',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
));
}
function getDoReferenceTransactionRequestDetails()
{
return $this->DoReferenceTransactionRequestDetails;
}
function setDoReferenceTransactionRequestDetails($DoReferenceTransactionRequestDetails, $charset = 'iso-8859-1')
{
$this->DoReferenceTransactionRequestDetails = $DoReferenceTransactionRequestDetails;
$this->_elements['DoReferenceTransactionRequestDetails']['charset'] = $charset;
}
function getReturnFMFDetails()
{
return $this->ReturnFMFDetails;
}
function setReturnFMFDetails($ReturnFMFDetails, $charset = 'iso-8859-1')
{
$this->ReturnFMFDetails = $ReturnFMFDetails;
$this->_elements['ReturnFMFDetails']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/DoReferenceTransactionRequestType.php | PHP | asf20 | 1,892 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* SetExpressCheckoutRequestDetailsType
*
* @package PayPal
*/
class SetExpressCheckoutRequestDetailsType extends XSDSimpleType
{
/**
* The total cost of the order to the customer. If shipping cost and tax charges
* are known, include them in OrderTotal; if not, OrderTotal should be the current
* sub-total of the order.
*/
var $OrderTotal;
/**
* URL to which the customer's browser is returned after choosing to pay with
* PayPal. PayPal recommends that the value of ReturnURL be the final review page
* on which the customer confirms the order and payment.
*/
var $ReturnURL;
/**
* URL to which the customer is returned if he does not approve the use of PayPal
* to pay you. PayPal recommends that the value of CancelURL be the original page
* on which the customer chose to pay with PayPal.
*/
var $CancelURL;
/**
* Tracking URL for ebay.
*/
var $TrackingImageURL;
/**
* URL to which the customer's browser is returned after paying with giropay
* online.
*/
var $giropaySuccessURL;
/**
* URL to which the customer's browser is returned after fail to pay with giropay
* online.
*/
var $giropayCancelURL;
/**
* URL to which the customer's browser can be returned in the mEFT done page.
*/
var $BanktxnPendingURL;
/**
* On your first invocation of SetExpressCheckoutRequest, the value of this token
* is returned by SetExpressCheckoutResponse.
*/
var $Token;
/**
* The expected maximum total amount of the complete order, including shipping cost
* and tax charges.
*/
var $MaxAmount;
/**
* Description of items the customer is purchasing.
*/
var $OrderDescription;
/**
* A free-form field for your own use, such as a tracking number or other value you
* want PayPal to return on GetExpressCheckoutDetailsResponse and
* DoExpressCheckoutPaymentResponse.
*/
var $Custom;
/**
* Your own unique invoice or tracking number. PayPal returns this value to you on
* DoExpressCheckoutPaymentResponse.
*/
var $InvoiceID;
/**
* The value 1 indicates that you require that the customer's shipping address on
* file with PayPal be a confirmed address. Any value other than 1 indicates that
* the customer's shipping address on file with PayPal need NOT be a confirmed
* address. Setting this element overrides the setting you have specified in the
* recipient's Merchant Account Profile.
*/
var $ReqConfirmShipping;
/**
* The value 1 indicates that you require that the customer's billing address on
* file. Setting this element overrides the setting you have specified in Admin.
*/
var $ReqBillingAddress;
/**
* The billing address for the buyer.
*/
var $BillingAddress;
/**
* The value 1 indicates that on the PayPal pages, no shipping address fields
* should be displayed whatsoever.
*/
var $NoShipping;
/**
* The value 1 indicates that the PayPal pages should display the shipping address
* set by you in the Address element on this SetExpressCheckoutRequest, not the
* shipping address on file with PayPal for this customer. Displaying the PayPal
* street address on file does not allow the customer to edit that address.
*/
var $AddressOverride;
/**
* Locale of pages displayed by PayPal during Express Checkout.
*/
var $LocaleCode;
/**
* Sets the Custom Payment Page Style for payment pages associated with this
* button/link. PageStyle corresponds to the HTML variable page_style for
* customizing payment pages. The value is the same as the Page Style Name you
* chose when adding or editing the page style from the Profile subtab of the My
* Account tab of your PayPal account.
*/
var $PageStyle;
/**
* A URL for the image you want to appear at the top left of the payment page. The
* image has a maximum size of 750 pixels wide by 90 pixels high. PayPal recommends
* that you provide an image that is stored on a secure (https) server.
*/
var $cpp_header_image;
/**
* Sets the border color around the header of the payment page. The border is a
* 2-pixel perimeter around the header space, which is 750 pixels wide by 90 pixels
* high.
*/
var $cpp_header_border_color;
/**
* Sets the background color for the header of the payment page.
*/
var $cpp_header_back_color;
/**
* Sets the background color for the payment page.
*/
var $cpp_payflow_color;
/**
* Sets the cart gradient color for the Mini Cart on 1X flow.
*/
var $cpp_cart_border_color;
/**
* A URL for the image you want to appear above the mini-cart. The image has a
* maximum size of 190 pixels wide by 60 pixels high. PayPal recommends that you
* provide an image that is stored on a secure (https) server.
*/
var $cpp_logo_image;
/**
* Customer's shipping address.
*/
var $Address;
/**
* How you want to obtain payment.
*/
var $PaymentAction;
/**
* This will indicate which flow you are choosing (expresschecheckout or
* expresscheckout optional)
*/
var $SolutionType;
/**
* This indicates Which page to display for ExpressO (Billing or Login)
*/
var $LandingPage;
/**
* Email address of the buyer as entered during checkout. PayPal uses this value to
* pre-fill the PayPal membership sign-up portion of the PayPal login page.
*/
var $BuyerEmail;
var $ChannelType;
var $BillingAgreementDetails;
/**
* Promo Code
*/
var $PromoCodes;
/**
* Default Funding option for PayLater Checkout button.
*/
var $PayPalCheckOutBtnType;
var $ProductCategory;
var $ShippingMethod;
/**
* Date and time (in GMT in the format yyyy-MM-ddTHH:mm:ssZ) at which address was
* changed by the user.
*/
var $ProfileAddressChangeDate;
/**
* The value 1 indicates that the customer may enter a note to the merchant on the
* PayPal page during checkout. The note is returned in the
* GetExpressCheckoutDetails response and the DoExpressCheckoutPayment response.
*/
var $AllowNote;
/**
* Funding source preferences.
*/
var $FundingSourceDetails;
/**
* The label that needs to be displayed on the cancel links in the PayPal hosted
* checkout pages.
*/
var $BrandName;
/**
* URL for PayPal to use to retrieve shipping, handling, insurance, and tax details
* from your website.
*/
var $CallbackURL;
/**
* Enhanced data for different industry segments.
*/
var $EnhancedCheckoutData;
/**
* List of other payment methods the user can pay with. Optional Refer to the
* OtherPaymentMethodDetailsType for more details.
*/
var $OtherPaymentMethods;
/**
* Details about the buyer's account.
*/
var $BuyerDetails;
/**
* Information about the payment.
*/
var $PaymentDetails;
/**
* List of Fall Back Shipping options provided by merchant.
*/
var $FlatRateShippingOptions;
/**
* Information about the call back timeout override.
*/
var $CallbackTimeout;
/**
* Information about the call back version.
*/
var $CallbackVersion;
/**
* Information about the Customer service number.
*/
var $CustomerServiceNumber;
/**
* Information about the Gift message enable.
*/
var $GiftMessageEnable;
/**
* Information about the Gift receipt enable.
*/
var $GiftReceiptEnable;
/**
* Information about the Gift Wrap enable.
*/
var $GiftWrapEnable;
/**
* Information about the Gift Wrap name.
*/
var $GiftWrapName;
/**
* Information about the Gift Wrap amount.
*/
var $GiftWrapAmount;
/**
* Information about the Buyer email option enable .
*/
var $BuyerEmailOptInEnable;
/**
* Information about the survey enable.
*/
var $SurveyEnable;
/**
* Information about the survey question.
*/
var $SurveyQuestion;
/**
* Information about the survey choices for survey question.
*/
var $SurveyChoice;
var $TotalType;
/**
* Any message the seller would like to be displayed in the Mini Cart for UX.
*/
var $NoteToBuyer;
/**
* Incentive Code
*/
var $Incentives;
function SetExpressCheckoutRequestDetailsType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'OrderTotal' =>
array (
'required' => false,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ReturnURL' =>
array (
'required' => true,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'CancelURL' =>
array (
'required' => true,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'TrackingImageURL' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'giropaySuccessURL' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'giropayCancelURL' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'BanktxnPendingURL' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Token' =>
array (
'required' => false,
'type' => 'ExpressCheckoutTokenType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'MaxAmount' =>
array (
'required' => false,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'OrderDescription' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Custom' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'InvoiceID' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ReqConfirmShipping' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ReqBillingAddress' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'BillingAddress' =>
array (
'required' => false,
'type' => 'AddressType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'NoShipping' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'AddressOverride' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'LocaleCode' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'PageStyle' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'cpp_header_image' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'cpp_header_border_color' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'cpp_header_back_color' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'cpp_payflow_color' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'cpp_cart_border_color' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'cpp_logo_image' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Address' =>
array (
'required' => false,
'type' => 'AddressType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'PaymentAction' =>
array (
'required' => false,
'type' => 'PaymentActionCodeType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'SolutionType' =>
array (
'required' => false,
'type' => 'SolutionTypeType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'LandingPage' =>
array (
'required' => false,
'type' => 'LandingPageType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'BuyerEmail' =>
array (
'required' => false,
'type' => 'EmailAddressType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ChannelType' =>
array (
'required' => false,
'type' => 'ChannelType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'BillingAgreementDetails' =>
array (
'required' => false,
'type' => 'BillingAgreementDetailsType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'PromoCodes' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'PayPalCheckOutBtnType' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ProductCategory' =>
array (
'required' => false,
'type' => 'ProductCategoryType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ShippingMethod' =>
array (
'required' => false,
'type' => 'ShippingServiceCodeType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ProfileAddressChangeDate' =>
array (
'required' => false,
'type' => 'dateTime',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'AllowNote' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'FundingSourceDetails' =>
array (
'required' => false,
'type' => 'FundingSourceDetailsType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'BrandName' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'CallbackURL' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'EnhancedCheckoutData' =>
array (
'required' => false,
'type' => 'EnhancedCheckoutDataType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'OtherPaymentMethods' =>
array (
'required' => false,
'type' => 'OtherPaymentMethodDetailsType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'BuyerDetails' =>
array (
'required' => false,
'type' => 'BuyerDetailsType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'PaymentDetails' =>
array (
'required' => false,
'type' => 'PaymentDetailsType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'FlatRateShippingOptions' =>
array (
'required' => false,
'type' => 'ShippingOptionType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'CallbackTimeout' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'CallbackVersion' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'CustomerServiceNumber' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'GiftMessageEnable' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'GiftReceiptEnable' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'GiftWrapEnable' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'GiftWrapName' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'GiftWrapAmount' =>
array (
'required' => false,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'BuyerEmailOptInEnable' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'SurveyEnable' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'SurveyQuestion' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'SurveyChoice' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'TotalType' =>
array (
'required' => false,
'type' => 'TotalType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'NoteToBuyer' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Incentives' =>
array (
'required' => false,
'type' => 'IncentiveInfoType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getOrderTotal()
{
return $this->OrderTotal;
}
function setOrderTotal($OrderTotal, $charset = 'iso-8859-1')
{
$this->OrderTotal = $OrderTotal;
$this->_elements['OrderTotal']['charset'] = $charset;
}
function getReturnURL()
{
return $this->ReturnURL;
}
function setReturnURL($ReturnURL, $charset = 'iso-8859-1')
{
$this->ReturnURL = $ReturnURL;
$this->_elements['ReturnURL']['charset'] = $charset;
}
function getCancelURL()
{
return $this->CancelURL;
}
function setCancelURL($CancelURL, $charset = 'iso-8859-1')
{
$this->CancelURL = $CancelURL;
$this->_elements['CancelURL']['charset'] = $charset;
}
function getTrackingImageURL()
{
return $this->TrackingImageURL;
}
function setTrackingImageURL($TrackingImageURL, $charset = 'iso-8859-1')
{
$this->TrackingImageURL = $TrackingImageURL;
$this->_elements['TrackingImageURL']['charset'] = $charset;
}
function getgiropaySuccessURL()
{
return $this->giropaySuccessURL;
}
function setgiropaySuccessURL($giropaySuccessURL, $charset = 'iso-8859-1')
{
$this->giropaySuccessURL = $giropaySuccessURL;
$this->_elements['giropaySuccessURL']['charset'] = $charset;
}
function getgiropayCancelURL()
{
return $this->giropayCancelURL;
}
function setgiropayCancelURL($giropayCancelURL, $charset = 'iso-8859-1')
{
$this->giropayCancelURL = $giropayCancelURL;
$this->_elements['giropayCancelURL']['charset'] = $charset;
}
function getBanktxnPendingURL()
{
return $this->BanktxnPendingURL;
}
function setBanktxnPendingURL($BanktxnPendingURL, $charset = 'iso-8859-1')
{
$this->BanktxnPendingURL = $BanktxnPendingURL;
$this->_elements['BanktxnPendingURL']['charset'] = $charset;
}
function getToken()
{
return $this->Token;
}
function setToken($Token, $charset = 'iso-8859-1')
{
$this->Token = $Token;
$this->_elements['Token']['charset'] = $charset;
}
function getMaxAmount()
{
return $this->MaxAmount;
}
function setMaxAmount($MaxAmount, $charset = 'iso-8859-1')
{
$this->MaxAmount = $MaxAmount;
$this->_elements['MaxAmount']['charset'] = $charset;
}
function getOrderDescription()
{
return $this->OrderDescription;
}
function setOrderDescription($OrderDescription, $charset = 'iso-8859-1')
{
$this->OrderDescription = $OrderDescription;
$this->_elements['OrderDescription']['charset'] = $charset;
}
function getCustom()
{
return $this->Custom;
}
function setCustom($Custom, $charset = 'iso-8859-1')
{
$this->Custom = $Custom;
$this->_elements['Custom']['charset'] = $charset;
}
function getInvoiceID()
{
return $this->InvoiceID;
}
function setInvoiceID($InvoiceID, $charset = 'iso-8859-1')
{
$this->InvoiceID = $InvoiceID;
$this->_elements['InvoiceID']['charset'] = $charset;
}
function getReqConfirmShipping()
{
return $this->ReqConfirmShipping;
}
function setReqConfirmShipping($ReqConfirmShipping, $charset = 'iso-8859-1')
{
$this->ReqConfirmShipping = $ReqConfirmShipping;
$this->_elements['ReqConfirmShipping']['charset'] = $charset;
}
function getReqBillingAddress()
{
return $this->ReqBillingAddress;
}
function setReqBillingAddress($ReqBillingAddress, $charset = 'iso-8859-1')
{
$this->ReqBillingAddress = $ReqBillingAddress;
$this->_elements['ReqBillingAddress']['charset'] = $charset;
}
function getBillingAddress()
{
return $this->BillingAddress;
}
function setBillingAddress($BillingAddress, $charset = 'iso-8859-1')
{
$this->BillingAddress = $BillingAddress;
$this->_elements['BillingAddress']['charset'] = $charset;
}
function getNoShipping()
{
return $this->NoShipping;
}
function setNoShipping($NoShipping, $charset = 'iso-8859-1')
{
$this->NoShipping = $NoShipping;
$this->_elements['NoShipping']['charset'] = $charset;
}
function getAddressOverride()
{
return $this->AddressOverride;
}
function setAddressOverride($AddressOverride, $charset = 'iso-8859-1')
{
$this->AddressOverride = $AddressOverride;
$this->_elements['AddressOverride']['charset'] = $charset;
}
function getLocaleCode()
{
return $this->LocaleCode;
}
function setLocaleCode($LocaleCode, $charset = 'iso-8859-1')
{
$this->LocaleCode = $LocaleCode;
$this->_elements['LocaleCode']['charset'] = $charset;
}
function getPageStyle()
{
return $this->PageStyle;
}
function setPageStyle($PageStyle, $charset = 'iso-8859-1')
{
$this->PageStyle = $PageStyle;
$this->_elements['PageStyle']['charset'] = $charset;
}
function getcpp_header_image()
{
return $this->cpp_header_image;
}
function setcpp_header_image($cpp_header_image, $charset = 'iso-8859-1')
{
$this->cpp_header_image = $cpp_header_image;
$this->_elements['cpp_header_image']['charset'] = $charset;
}
function getcpp_header_border_color()
{
return $this->cpp_header_border_color;
}
function setcpp_header_border_color($cpp_header_border_color, $charset = 'iso-8859-1')
{
$this->cpp_header_border_color = $cpp_header_border_color;
$this->_elements['cpp_header_border_color']['charset'] = $charset;
}
function getcpp_header_back_color()
{
return $this->cpp_header_back_color;
}
function setcpp_header_back_color($cpp_header_back_color, $charset = 'iso-8859-1')
{
$this->cpp_header_back_color = $cpp_header_back_color;
$this->_elements['cpp_header_back_color']['charset'] = $charset;
}
function getcpp_payflow_color()
{
return $this->cpp_payflow_color;
}
function setcpp_payflow_color($cpp_payflow_color, $charset = 'iso-8859-1')
{
$this->cpp_payflow_color = $cpp_payflow_color;
$this->_elements['cpp_payflow_color']['charset'] = $charset;
}
function getcpp_cart_border_color()
{
return $this->cpp_cart_border_color;
}
function setcpp_cart_border_color($cpp_cart_border_color, $charset = 'iso-8859-1')
{
$this->cpp_cart_border_color = $cpp_cart_border_color;
$this->_elements['cpp_cart_border_color']['charset'] = $charset;
}
function getcpp_logo_image()
{
return $this->cpp_logo_image;
}
function setcpp_logo_image($cpp_logo_image, $charset = 'iso-8859-1')
{
$this->cpp_logo_image = $cpp_logo_image;
$this->_elements['cpp_logo_image']['charset'] = $charset;
}
function getAddress()
{
return $this->Address;
}
function setAddress($Address, $charset = 'iso-8859-1')
{
$this->Address = $Address;
$this->_elements['Address']['charset'] = $charset;
}
function getPaymentAction()
{
return $this->PaymentAction;
}
function setPaymentAction($PaymentAction, $charset = 'iso-8859-1')
{
$this->PaymentAction = $PaymentAction;
$this->_elements['PaymentAction']['charset'] = $charset;
}
function getSolutionType()
{
return $this->SolutionType;
}
function setSolutionType($SolutionType, $charset = 'iso-8859-1')
{
$this->SolutionType = $SolutionType;
$this->_elements['SolutionType']['charset'] = $charset;
}
function getLandingPage()
{
return $this->LandingPage;
}
function setLandingPage($LandingPage, $charset = 'iso-8859-1')
{
$this->LandingPage = $LandingPage;
$this->_elements['LandingPage']['charset'] = $charset;
}
function getBuyerEmail()
{
return $this->BuyerEmail;
}
function setBuyerEmail($BuyerEmail, $charset = 'iso-8859-1')
{
$this->BuyerEmail = $BuyerEmail;
$this->_elements['BuyerEmail']['charset'] = $charset;
}
function getChannelType()
{
return $this->ChannelType;
}
function setChannelType($ChannelType, $charset = 'iso-8859-1')
{
$this->ChannelType = $ChannelType;
$this->_elements['ChannelType']['charset'] = $charset;
}
function getBillingAgreementDetails()
{
return $this->BillingAgreementDetails;
}
function setBillingAgreementDetails($BillingAgreementDetails, $charset = 'iso-8859-1')
{
$this->BillingAgreementDetails = $BillingAgreementDetails;
$this->_elements['BillingAgreementDetails']['charset'] = $charset;
}
function getPromoCodes()
{
return $this->PromoCodes;
}
function setPromoCodes($PromoCodes, $charset = 'iso-8859-1')
{
$this->PromoCodes = $PromoCodes;
$this->_elements['PromoCodes']['charset'] = $charset;
}
function getPayPalCheckOutBtnType()
{
return $this->PayPalCheckOutBtnType;
}
function setPayPalCheckOutBtnType($PayPalCheckOutBtnType, $charset = 'iso-8859-1')
{
$this->PayPalCheckOutBtnType = $PayPalCheckOutBtnType;
$this->_elements['PayPalCheckOutBtnType']['charset'] = $charset;
}
function getProductCategory()
{
return $this->ProductCategory;
}
function setProductCategory($ProductCategory, $charset = 'iso-8859-1')
{
$this->ProductCategory = $ProductCategory;
$this->_elements['ProductCategory']['charset'] = $charset;
}
function getShippingMethod()
{
return $this->ShippingMethod;
}
function setShippingMethod($ShippingMethod, $charset = 'iso-8859-1')
{
$this->ShippingMethod = $ShippingMethod;
$this->_elements['ShippingMethod']['charset'] = $charset;
}
function getProfileAddressChangeDate()
{
return $this->ProfileAddressChangeDate;
}
function setProfileAddressChangeDate($ProfileAddressChangeDate, $charset = 'iso-8859-1')
{
$this->ProfileAddressChangeDate = $ProfileAddressChangeDate;
$this->_elements['ProfileAddressChangeDate']['charset'] = $charset;
}
function getAllowNote()
{
return $this->AllowNote;
}
function setAllowNote($AllowNote, $charset = 'iso-8859-1')
{
$this->AllowNote = $AllowNote;
$this->_elements['AllowNote']['charset'] = $charset;
}
function getFundingSourceDetails()
{
return $this->FundingSourceDetails;
}
function setFundingSourceDetails($FundingSourceDetails, $charset = 'iso-8859-1')
{
$this->FundingSourceDetails = $FundingSourceDetails;
$this->_elements['FundingSourceDetails']['charset'] = $charset;
}
function getBrandName()
{
return $this->BrandName;
}
function setBrandName($BrandName, $charset = 'iso-8859-1')
{
$this->BrandName = $BrandName;
$this->_elements['BrandName']['charset'] = $charset;
}
function getCallbackURL()
{
return $this->CallbackURL;
}
function setCallbackURL($CallbackURL, $charset = 'iso-8859-1')
{
$this->CallbackURL = $CallbackURL;
$this->_elements['CallbackURL']['charset'] = $charset;
}
function getEnhancedCheckoutData()
{
return $this->EnhancedCheckoutData;
}
function setEnhancedCheckoutData($EnhancedCheckoutData, $charset = 'iso-8859-1')
{
$this->EnhancedCheckoutData = $EnhancedCheckoutData;
$this->_elements['EnhancedCheckoutData']['charset'] = $charset;
}
function getOtherPaymentMethods()
{
return $this->OtherPaymentMethods;
}
function setOtherPaymentMethods($OtherPaymentMethods, $charset = 'iso-8859-1')
{
$this->OtherPaymentMethods = $OtherPaymentMethods;
$this->_elements['OtherPaymentMethods']['charset'] = $charset;
}
function getBuyerDetails()
{
return $this->BuyerDetails;
}
function setBuyerDetails($BuyerDetails, $charset = 'iso-8859-1')
{
$this->BuyerDetails = $BuyerDetails;
$this->_elements['BuyerDetails']['charset'] = $charset;
}
function getPaymentDetails()
{
return $this->PaymentDetails;
}
function setPaymentDetails($PaymentDetails, $charset = 'iso-8859-1')
{
$this->PaymentDetails = $PaymentDetails;
$this->_elements['PaymentDetails']['charset'] = $charset;
}
function getFlatRateShippingOptions()
{
return $this->FlatRateShippingOptions;
}
function setFlatRateShippingOptions($FlatRateShippingOptions, $charset = 'iso-8859-1')
{
$this->FlatRateShippingOptions = $FlatRateShippingOptions;
$this->_elements['FlatRateShippingOptions']['charset'] = $charset;
}
function getCallbackTimeout()
{
return $this->CallbackTimeout;
}
function setCallbackTimeout($CallbackTimeout, $charset = 'iso-8859-1')
{
$this->CallbackTimeout = $CallbackTimeout;
$this->_elements['CallbackTimeout']['charset'] = $charset;
}
function getCallbackVersion()
{
return $this->CallbackVersion;
}
function setCallbackVersion($CallbackVersion, $charset = 'iso-8859-1')
{
$this->CallbackVersion = $CallbackVersion;
$this->_elements['CallbackVersion']['charset'] = $charset;
}
function getCustomerServiceNumber()
{
return $this->CustomerServiceNumber;
}
function setCustomerServiceNumber($CustomerServiceNumber, $charset = 'iso-8859-1')
{
$this->CustomerServiceNumber = $CustomerServiceNumber;
$this->_elements['CustomerServiceNumber']['charset'] = $charset;
}
function getGiftMessageEnable()
{
return $this->GiftMessageEnable;
}
function setGiftMessageEnable($GiftMessageEnable, $charset = 'iso-8859-1')
{
$this->GiftMessageEnable = $GiftMessageEnable;
$this->_elements['GiftMessageEnable']['charset'] = $charset;
}
function getGiftReceiptEnable()
{
return $this->GiftReceiptEnable;
}
function setGiftReceiptEnable($GiftReceiptEnable, $charset = 'iso-8859-1')
{
$this->GiftReceiptEnable = $GiftReceiptEnable;
$this->_elements['GiftReceiptEnable']['charset'] = $charset;
}
function getGiftWrapEnable()
{
return $this->GiftWrapEnable;
}
function setGiftWrapEnable($GiftWrapEnable, $charset = 'iso-8859-1')
{
$this->GiftWrapEnable = $GiftWrapEnable;
$this->_elements['GiftWrapEnable']['charset'] = $charset;
}
function getGiftWrapName()
{
return $this->GiftWrapName;
}
function setGiftWrapName($GiftWrapName, $charset = 'iso-8859-1')
{
$this->GiftWrapName = $GiftWrapName;
$this->_elements['GiftWrapName']['charset'] = $charset;
}
function getGiftWrapAmount()
{
return $this->GiftWrapAmount;
}
function setGiftWrapAmount($GiftWrapAmount, $charset = 'iso-8859-1')
{
$this->GiftWrapAmount = $GiftWrapAmount;
$this->_elements['GiftWrapAmount']['charset'] = $charset;
}
function getBuyerEmailOptInEnable()
{
return $this->BuyerEmailOptInEnable;
}
function setBuyerEmailOptInEnable($BuyerEmailOptInEnable, $charset = 'iso-8859-1')
{
$this->BuyerEmailOptInEnable = $BuyerEmailOptInEnable;
$this->_elements['BuyerEmailOptInEnable']['charset'] = $charset;
}
function getSurveyEnable()
{
return $this->SurveyEnable;
}
function setSurveyEnable($SurveyEnable, $charset = 'iso-8859-1')
{
$this->SurveyEnable = $SurveyEnable;
$this->_elements['SurveyEnable']['charset'] = $charset;
}
function getSurveyQuestion()
{
return $this->SurveyQuestion;
}
function setSurveyQuestion($SurveyQuestion, $charset = 'iso-8859-1')
{
$this->SurveyQuestion = $SurveyQuestion;
$this->_elements['SurveyQuestion']['charset'] = $charset;
}
function getSurveyChoice()
{
return $this->SurveyChoice;
}
function setSurveyChoice($SurveyChoice, $charset = 'iso-8859-1')
{
$this->SurveyChoice = $SurveyChoice;
$this->_elements['SurveyChoice']['charset'] = $charset;
}
function getTotalType()
{
return $this->TotalType;
}
function setTotalType($TotalType, $charset = 'iso-8859-1')
{
$this->TotalType = $TotalType;
$this->_elements['TotalType']['charset'] = $charset;
}
function getNoteToBuyer()
{
return $this->NoteToBuyer;
}
function setNoteToBuyer($NoteToBuyer, $charset = 'iso-8859-1')
{
$this->NoteToBuyer = $NoteToBuyer;
$this->_elements['NoteToBuyer']['charset'] = $charset;
}
function getIncentives()
{
return $this->Incentives;
}
function setIncentives($Incentives, $charset = 'iso-8859-1')
{
$this->Incentives = $Incentives;
$this->_elements['Incentives']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/SetExpressCheckoutRequestDetailsType.php | PHP | asf20 | 39,747 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* ItemTrackingDetailsType
*
* @package PayPal
*/
class ItemTrackingDetailsType extends XSDSimpleType
{
/**
* Item Number.
*/
var $ItemNumber;
/**
* Option Quantity.
*/
var $ItemQty;
/**
* Item Quantity Delta.
*/
var $ItemQtyDelta;
/**
* Item Alert.
*/
var $ItemAlert;
/**
* Item Cost.
*/
var $ItemCost;
function ItemTrackingDetailsType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'ItemNumber' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ItemQty' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ItemQtyDelta' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ItemAlert' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ItemCost' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getItemNumber()
{
return $this->ItemNumber;
}
function setItemNumber($ItemNumber, $charset = 'iso-8859-1')
{
$this->ItemNumber = $ItemNumber;
$this->_elements['ItemNumber']['charset'] = $charset;
}
function getItemQty()
{
return $this->ItemQty;
}
function setItemQty($ItemQty, $charset = 'iso-8859-1')
{
$this->ItemQty = $ItemQty;
$this->_elements['ItemQty']['charset'] = $charset;
}
function getItemQtyDelta()
{
return $this->ItemQtyDelta;
}
function setItemQtyDelta($ItemQtyDelta, $charset = 'iso-8859-1')
{
$this->ItemQtyDelta = $ItemQtyDelta;
$this->_elements['ItemQtyDelta']['charset'] = $charset;
}
function getItemAlert()
{
return $this->ItemAlert;
}
function setItemAlert($ItemAlert, $charset = 'iso-8859-1')
{
$this->ItemAlert = $ItemAlert;
$this->_elements['ItemAlert']['charset'] = $charset;
}
function getItemCost()
{
return $this->ItemCost;
}
function setItemCost($ItemCost, $charset = 'iso-8859-1')
{
$this->ItemCost = $ItemCost;
$this->_elements['ItemCost']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/itemtrackingdetailstype.php | PHP | asf20 | 3,068 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* ShippingInfoType
*
* @package PayPal
*/
class ShippingInfoType extends XSDSimpleType
{
var $ShippingMethod;
var $ShippingCarrier;
var $ShippingAmount;
var $HandlingAmount;
var $InsuranceAmount;
function ShippingInfoType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'ShippingMethod' =>
array (
'required' => true,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ShippingCarrier' =>
array (
'required' => true,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ShippingAmount' =>
array (
'required' => true,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'HandlingAmount' =>
array (
'required' => true,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'InsuranceAmount' =>
array (
'required' => true,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getShippingMethod()
{
return $this->ShippingMethod;
}
function setShippingMethod($ShippingMethod, $charset = 'iso-8859-1')
{
$this->ShippingMethod = $ShippingMethod;
$this->_elements['ShippingMethod']['charset'] = $charset;
}
function getShippingCarrier()
{
return $this->ShippingCarrier;
}
function setShippingCarrier($ShippingCarrier, $charset = 'iso-8859-1')
{
$this->ShippingCarrier = $ShippingCarrier;
$this->_elements['ShippingCarrier']['charset'] = $charset;
}
function getShippingAmount()
{
return $this->ShippingAmount;
}
function setShippingAmount($ShippingAmount, $charset = 'iso-8859-1')
{
$this->ShippingAmount = $ShippingAmount;
$this->_elements['ShippingAmount']['charset'] = $charset;
}
function getHandlingAmount()
{
return $this->HandlingAmount;
}
function setHandlingAmount($HandlingAmount, $charset = 'iso-8859-1')
{
$this->HandlingAmount = $HandlingAmount;
$this->_elements['HandlingAmount']['charset'] = $charset;
}
function getInsuranceAmount()
{
return $this->InsuranceAmount;
}
function setInsuranceAmount($InsuranceAmount, $charset = 'iso-8859-1')
{
$this->InsuranceAmount = $InsuranceAmount;
$this->_elements['InsuranceAmount']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/ShippingInfoType.php | PHP | asf20 | 3,114 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractResponseType.php';
/**
* DoMobileCheckoutPaymentResponseType
*
* @package PayPal
*/
class DoMobileCheckoutPaymentResponseType extends AbstractResponseType
{
var $DoMobileCheckoutPaymentResponseDetails;
function DoMobileCheckoutPaymentResponseType()
{
parent::AbstractResponseType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'DoMobileCheckoutPaymentResponseDetails' =>
array (
'required' => true,
'type' => 'DoMobileCheckoutPaymentResponseDetailsType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getDoMobileCheckoutPaymentResponseDetails()
{
return $this->DoMobileCheckoutPaymentResponseDetails;
}
function setDoMobileCheckoutPaymentResponseDetails($DoMobileCheckoutPaymentResponseDetails, $charset = 'iso-8859-1')
{
$this->DoMobileCheckoutPaymentResponseDetails = $DoMobileCheckoutPaymentResponseDetails;
$this->_elements['DoMobileCheckoutPaymentResponseDetails']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/DoMobileCheckoutPaymentResponseType.php | PHP | asf20 | 1,306 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* PaymentItemInfoType
*
* PaymentItemInfoType Information about a PayPal item.
*
* @package PayPal
*/
class PaymentItemInfoType extends XSDSimpleType
{
/**
* Invoice number you set in the original transaction.
*/
var $InvoiceID;
/**
* Custom field you set in the original transaction.
*/
var $Custom;
/**
* Memo entered by your customer in PayPal Website Payments note field.
*/
var $Memo;
/**
* Amount of tax charged on transaction
*/
var $SalesTax;
/**
* Details about the indivudal purchased item
*/
var $PaymentItem;
/**
* Information about the transaction if it was created via PayPal Subcriptions
*/
var $Subscription;
/**
* Information about the transaction if it was created via an auction
*/
var $Auction;
function PaymentItemInfoType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'InvoiceID' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Custom' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Memo' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'SalesTax' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'PaymentItem' =>
array (
'required' => false,
'type' => 'PaymentItemType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Subscription' =>
array (
'required' => false,
'type' => 'SubscriptionInfoType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Auction' =>
array (
'required' => false,
'type' => 'AuctionInfoType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getInvoiceID()
{
return $this->InvoiceID;
}
function setInvoiceID($InvoiceID, $charset = 'iso-8859-1')
{
$this->InvoiceID = $InvoiceID;
$this->_elements['InvoiceID']['charset'] = $charset;
}
function getCustom()
{
return $this->Custom;
}
function setCustom($Custom, $charset = 'iso-8859-1')
{
$this->Custom = $Custom;
$this->_elements['Custom']['charset'] = $charset;
}
function getMemo()
{
return $this->Memo;
}
function setMemo($Memo, $charset = 'iso-8859-1')
{
$this->Memo = $Memo;
$this->_elements['Memo']['charset'] = $charset;
}
function getSalesTax()
{
return $this->SalesTax;
}
function setSalesTax($SalesTax, $charset = 'iso-8859-1')
{
$this->SalesTax = $SalesTax;
$this->_elements['SalesTax']['charset'] = $charset;
}
function getPaymentItem()
{
return $this->PaymentItem;
}
function setPaymentItem($PaymentItem, $charset = 'iso-8859-1')
{
$this->PaymentItem = $PaymentItem;
$this->_elements['PaymentItem']['charset'] = $charset;
}
function getSubscription()
{
return $this->Subscription;
}
function setSubscription($Subscription, $charset = 'iso-8859-1')
{
$this->Subscription = $Subscription;
$this->_elements['Subscription']['charset'] = $charset;
}
function getAuction()
{
return $this->Auction;
}
function setAuction($Auction, $charset = 'iso-8859-1')
{
$this->Auction = $Auction;
$this->_elements['Auction']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/PaymentItemInfoType.php | PHP | asf20 | 4,405 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* BuyerDetailsType
*
* Details about the buyer's account passed in by the merchant or partner.
*
* @package PayPal
*/
class BuyerDetailsType extends XSDSimpleType
{
/**
* The client's unique ID for this user.
*/
var $BuyerId;
/**
* The user name of the user at the marketplaces site.
*/
var $BuyerUserName;
/**
* Date when the user registered with the marketplace.
*/
var $BuyerRegistrationDate;
function BuyerDetailsType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'BuyerId' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'BuyerUserName' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'BuyerRegistrationDate' =>
array (
'required' => false,
'type' => 'dateTime',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getBuyerId()
{
return $this->BuyerId;
}
function setBuyerId($BuyerId, $charset = 'iso-8859-1')
{
$this->BuyerId = $BuyerId;
$this->_elements['BuyerId']['charset'] = $charset;
}
function getBuyerUserName()
{
return $this->BuyerUserName;
}
function setBuyerUserName($BuyerUserName, $charset = 'iso-8859-1')
{
$this->BuyerUserName = $BuyerUserName;
$this->_elements['BuyerUserName']['charset'] = $charset;
}
function getBuyerRegistrationDate()
{
return $this->BuyerRegistrationDate;
}
function setBuyerRegistrationDate($BuyerRegistrationDate, $charset = 'iso-8859-1')
{
$this->BuyerRegistrationDate = $BuyerRegistrationDate;
$this->_elements['BuyerRegistrationDate']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/BuyerDetailsType.php | PHP | asf20 | 2,313 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractResponseType.php';
/**
* AddressVerifyResponseType
*
* @package PayPal
*/
class AddressVerifyResponseType extends AbstractResponseType
{
/**
* Confirmation of a match, with one of the following tokens:
*/
var $ConfirmationCode;
/**
* PayPal has compared the postal address you want to verify with the postal
* address on file at PayPal.
*/
var $StreetMatch;
/**
* PayPal has compared the zip code you want to verify with the zip code on file
* for the email address.
*/
var $ZipMatch;
/**
* Two-character country code (ISO 3166) on file for the PayPal email address.
*/
var $CountryCode;
/**
* The token prevents a buyer from using any street address other than the address
* on file at PayPal during additional purchases he might make from the merchant.
* It contains encrypted information about the user ’s street address and email
* address. You can pass the value of the token with the Buy Now button HTML
* address_api_token variable so that PayPal prevents the buyer from using any
* street address or email address other than those verified by PayPal. The token
* is valid for 24 hours.
*/
var $PayPalToken;
function AddressVerifyResponseType()
{
parent::AbstractResponseType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'ConfirmationCode' =>
array (
'required' => true,
'type' => 'AddressStatusCodeType',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'StreetMatch' =>
array (
'required' => true,
'type' => 'MatchStatusCodeType',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'ZipMatch' =>
array (
'required' => false,
'type' => 'MatchStatusCodeType',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'CountryCode' =>
array (
'required' => false,
'type' => 'CountryCodeType',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'PayPalToken' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
));
}
function getConfirmationCode()
{
return $this->ConfirmationCode;
}
function setConfirmationCode($ConfirmationCode, $charset = 'iso-8859-1')
{
$this->ConfirmationCode = $ConfirmationCode;
$this->_elements['ConfirmationCode']['charset'] = $charset;
}
function getStreetMatch()
{
return $this->StreetMatch;
}
function setStreetMatch($StreetMatch, $charset = 'iso-8859-1')
{
$this->StreetMatch = $StreetMatch;
$this->_elements['StreetMatch']['charset'] = $charset;
}
function getZipMatch()
{
return $this->ZipMatch;
}
function setZipMatch($ZipMatch, $charset = 'iso-8859-1')
{
$this->ZipMatch = $ZipMatch;
$this->_elements['ZipMatch']['charset'] = $charset;
}
function getCountryCode()
{
return $this->CountryCode;
}
function setCountryCode($CountryCode, $charset = 'iso-8859-1')
{
$this->CountryCode = $CountryCode;
$this->_elements['CountryCode']['charset'] = $charset;
}
function getPayPalToken()
{
return $this->PayPalToken;
}
function setPayPalToken($PayPalToken, $charset = 'iso-8859-1')
{
$this->PayPalToken = $PayPalToken;
$this->_elements['PayPalToken']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/AddressVerifyResponseType.php | PHP | asf20 | 3,997 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* EnhancedCancelRecoupRequestDetailsType
*
* @package PayPal
*/
class EnhancedCancelRecoupRequestDetailsType extends XSDSimpleType
{
function EnhancedCancelRecoupRequestDetailsType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:EnhancedDataTypes';
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/EnhancedCancelRecoupRequestDetailsType.php | PHP | asf20 | 437 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractRequestType.php';
/**
* BMGetInventoryRequestType
*
* @package PayPal
*/
class BMGetInventoryRequestType extends AbstractRequestType
{
/**
* Hosted Button ID of the button to return inventory for.
*/
var $HostedButtonID;
function BMGetInventoryRequestType()
{
parent::AbstractRequestType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'HostedButtonID' =>
array (
'required' => true,
'type' => 'string',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
));
}
function getHostedButtonID()
{
return $this->HostedButtonID;
}
function setHostedButtonID($HostedButtonID, $charset = 'iso-8859-1')
{
$this->HostedButtonID = $HostedButtonID;
$this->_elements['HostedButtonID']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/bmgetinventoryrequesttype.php | PHP | asf20 | 1,091 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractRequestType.php';
/**
* GetIncentiveEvaluationRequestType
*
* @package PayPal
*/
class GetIncentiveEvaluationRequestType extends AbstractRequestType
{
var $GetIncentiveEvaluationRequestDetails;
function GetIncentiveEvaluationRequestType()
{
parent::AbstractRequestType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'GetIncentiveEvaluationRequestDetails' =>
array (
'required' => true,
'type' => 'GetIncentiveEvaluationRequestDetailsType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getGetIncentiveEvaluationRequestDetails()
{
return $this->GetIncentiveEvaluationRequestDetails;
}
function setGetIncentiveEvaluationRequestDetails($GetIncentiveEvaluationRequestDetails, $charset = 'iso-8859-1')
{
$this->GetIncentiveEvaluationRequestDetails = $GetIncentiveEvaluationRequestDetails;
$this->_elements['GetIncentiveEvaluationRequestDetails']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/GetIncentiveEvaluationRequestType.php | PHP | asf20 | 1,277 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* PersonNameType
*
* @package PayPal
*/
class PersonNameType extends XSDSimpleType
{
var $Salutation;
var $FirstName;
var $MiddleName;
var $LastName;
var $Suffix;
function PersonNameType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'Salutation' =>
array (
'required' => false,
'type' => 'SalutationType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'FirstName' =>
array (
'required' => false,
'type' => 'NameType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'MiddleName' =>
array (
'required' => false,
'type' => 'NameType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'LastName' =>
array (
'required' => false,
'type' => 'NameType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Suffix' =>
array (
'required' => false,
'type' => 'SuffixType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getSalutation()
{
return $this->Salutation;
}
function setSalutation($Salutation, $charset = 'iso-8859-1')
{
$this->Salutation = $Salutation;
$this->_elements['Salutation']['charset'] = $charset;
}
function getFirstName()
{
return $this->FirstName;
}
function setFirstName($FirstName, $charset = 'iso-8859-1')
{
$this->FirstName = $FirstName;
$this->_elements['FirstName']['charset'] = $charset;
}
function getMiddleName()
{
return $this->MiddleName;
}
function setMiddleName($MiddleName, $charset = 'iso-8859-1')
{
$this->MiddleName = $MiddleName;
$this->_elements['MiddleName']['charset'] = $charset;
}
function getLastName()
{
return $this->LastName;
}
function setLastName($LastName, $charset = 'iso-8859-1')
{
$this->LastName = $LastName;
$this->_elements['LastName']['charset'] = $charset;
}
function getSuffix()
{
return $this->Suffix;
}
function setSuffix($Suffix, $charset = 'iso-8859-1')
{
$this->Suffix = $Suffix;
$this->_elements['Suffix']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/PersonNameType.php | PHP | asf20 | 2,843 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* MerchantPullInfoType
*
* MerchantPullInfoType Information about the merchant pull.
*
* @package PayPal
*/
class MerchantPullInfoType extends XSDSimpleType
{
/**
* Current status of billing agreement
*/
var $MpStatus;
/**
* Monthly maximum payment amount
*/
var $MpMax;
/**
* The value of the mp_custom variable that you specified in a FORM submission to
* PayPal during the creation or updating of a customer billing agreement
*/
var $MpCustom;
/**
* The value of the mp_desc variable (description of goods or services) associated
* with the billing agreement
*/
var $Desc;
/**
* Invoice value as set by BillUserRequest API call
*/
var $Invoice;
/**
* Custom field as set by BillUserRequest API call
*/
var $Custom;
/**
* Note: This field is no longer used and is always empty.
*/
var $PaymentSourceID;
function MerchantPullInfoType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'MpStatus' =>
array (
'required' => true,
'type' => 'MerchantPullStatusCodeType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'MpMax' =>
array (
'required' => true,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'MpCustom' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Desc' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Invoice' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Custom' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'PaymentSourceID' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getMpStatus()
{
return $this->MpStatus;
}
function setMpStatus($MpStatus, $charset = 'iso-8859-1')
{
$this->MpStatus = $MpStatus;
$this->_elements['MpStatus']['charset'] = $charset;
}
function getMpMax()
{
return $this->MpMax;
}
function setMpMax($MpMax, $charset = 'iso-8859-1')
{
$this->MpMax = $MpMax;
$this->_elements['MpMax']['charset'] = $charset;
}
function getMpCustom()
{
return $this->MpCustom;
}
function setMpCustom($MpCustom, $charset = 'iso-8859-1')
{
$this->MpCustom = $MpCustom;
$this->_elements['MpCustom']['charset'] = $charset;
}
function getDesc()
{
return $this->Desc;
}
function setDesc($Desc, $charset = 'iso-8859-1')
{
$this->Desc = $Desc;
$this->_elements['Desc']['charset'] = $charset;
}
function getInvoice()
{
return $this->Invoice;
}
function setInvoice($Invoice, $charset = 'iso-8859-1')
{
$this->Invoice = $Invoice;
$this->_elements['Invoice']['charset'] = $charset;
}
function getCustom()
{
return $this->Custom;
}
function setCustom($Custom, $charset = 'iso-8859-1')
{
$this->Custom = $Custom;
$this->_elements['Custom']['charset'] = $charset;
}
function getPaymentSourceID()
{
return $this->PaymentSourceID;
}
function setPaymentSourceID($PaymentSourceID, $charset = 'iso-8859-1')
{
$this->PaymentSourceID = $PaymentSourceID;
$this->_elements['PaymentSourceID']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/MerchantPullInfoType.php | PHP | asf20 | 4,469 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractRequestType.php';
/**
* RefundTransactionRequestType
*
* @package PayPal
*/
class RefundTransactionRequestType extends AbstractRequestType
{
/**
* Unique identifier of the transaction you are refunding.
*/
var $TransactionID;
/**
* Invoice number corresponding to transaction details for tracking the refund of a
* payment. This parameter is passed by the merchant or recipient while refunding
* the transaction. This parameter does not affect the business logic, it is
* persisted in the DB for transaction reference
*/
var $InvoiceID;
/**
* Type of refund you are making
*/
var $RefundType;
/**
* Refund amount.
*/
var $Amount;
/**
* Custom memo about the refund.
*/
var $Memo;
/**
* The maximum time till which refund must be tried.
*/
var $RetryUntil;
/**
* The type of funding source for refund.
*/
var $RefundSource;
function RefundTransactionRequestType()
{
parent::AbstractRequestType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'TransactionID' =>
array (
'required' => true,
'type' => 'TransactionId',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'InvoiceID' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'RefundType' =>
array (
'required' => false,
'type' => 'RefundType',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'Amount' =>
array (
'required' => false,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'Memo' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'RetryUntil' =>
array (
'required' => false,
'type' => 'dateTime',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'RefundSource' =>
array (
'required' => false,
'type' => 'RefundSourceCodeType',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
));
}
function getTransactionID()
{
return $this->TransactionID;
}
function setTransactionID($TransactionID, $charset = 'iso-8859-1')
{
$this->TransactionID = $TransactionID;
$this->_elements['TransactionID']['charset'] = $charset;
}
function getInvoiceID()
{
return $this->InvoiceID;
}
function setInvoiceID($InvoiceID, $charset = 'iso-8859-1')
{
$this->InvoiceID = $InvoiceID;
$this->_elements['InvoiceID']['charset'] = $charset;
}
function getRefundType()
{
return $this->RefundType;
}
function setRefundType($RefundType, $charset = 'iso-8859-1')
{
$this->RefundType = $RefundType;
$this->_elements['RefundType']['charset'] = $charset;
}
function getAmount()
{
return $this->Amount;
}
function setAmount($Amount, $charset = 'iso-8859-1')
{
$this->Amount = $Amount;
$this->_elements['Amount']['charset'] = $charset;
}
function getMemo()
{
return $this->Memo;
}
function setMemo($Memo, $charset = 'iso-8859-1')
{
$this->Memo = $Memo;
$this->_elements['Memo']['charset'] = $charset;
}
function getRetryUntil()
{
return $this->RetryUntil;
}
function setRetryUntil($RetryUntil, $charset = 'iso-8859-1')
{
$this->RetryUntil = $RetryUntil;
$this->_elements['RetryUntil']['charset'] = $charset;
}
function getRefundSource()
{
return $this->RefundSource;
}
function setRefundSource($RefundSource, $charset = 'iso-8859-1')
{
$this->RefundSource = $RefundSource;
$this->_elements['RefundSource']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/RefundTransactionRequestType.php | PHP | asf20 | 4,511 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* InstallmentDetailsType
*
* @package PayPal
*/
class InstallmentDetailsType extends XSDSimpleType
{
/**
* Installment Period.
*/
var $BillingPeriod;
/**
* Installment Frequency.
*/
var $BillingFrequency;
/**
* Installment Cycles.
*/
var $TotalBillingCycles;
/**
* Installment Amount.
*/
var $Amount;
/**
* Installment Amount.
*/
var $ShippingAmount;
/**
* Installment Amount.
*/
var $TaxAmount;
function InstallmentDetailsType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'BillingPeriod' =>
array (
'required' => false,
'type' => 'BillingPeriodType',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'BillingFrequency' =>
array (
'required' => false,
'type' => 'int',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'TotalBillingCycles' =>
array (
'required' => false,
'type' => 'int',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'Amount' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'ShippingAmount' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'TaxAmount' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
));
}
function getBillingPeriod()
{
return $this->BillingPeriod;
}
function setBillingPeriod($BillingPeriod, $charset = 'iso-8859-1')
{
$this->BillingPeriod = $BillingPeriod;
$this->_elements['BillingPeriod']['charset'] = $charset;
}
function getBillingFrequency()
{
return $this->BillingFrequency;
}
function setBillingFrequency($BillingFrequency, $charset = 'iso-8859-1')
{
$this->BillingFrequency = $BillingFrequency;
$this->_elements['BillingFrequency']['charset'] = $charset;
}
function getTotalBillingCycles()
{
return $this->TotalBillingCycles;
}
function setTotalBillingCycles($TotalBillingCycles, $charset = 'iso-8859-1')
{
$this->TotalBillingCycles = $TotalBillingCycles;
$this->_elements['TotalBillingCycles']['charset'] = $charset;
}
function getAmount()
{
return $this->Amount;
}
function setAmount($Amount, $charset = 'iso-8859-1')
{
$this->Amount = $Amount;
$this->_elements['Amount']['charset'] = $charset;
}
function getShippingAmount()
{
return $this->ShippingAmount;
}
function setShippingAmount($ShippingAmount, $charset = 'iso-8859-1')
{
$this->ShippingAmount = $ShippingAmount;
$this->_elements['ShippingAmount']['charset'] = $charset;
}
function getTaxAmount()
{
return $this->TaxAmount;
}
function setTaxAmount($TaxAmount, $charset = 'iso-8859-1')
{
$this->TaxAmount = $TaxAmount;
$this->_elements['TaxAmount']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/InstallmentDetailsType.php | PHP | asf20 | 3,745 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractRequestType.php';
/**
* BMManageButtonStatusRequestType
*
* @package PayPal
*/
class BMManageButtonStatusRequestType extends AbstractRequestType
{
/**
* Button ID of Hosted button.
*/
var $HostedButtonID;
/**
* Requested Status change for hosted button.
*/
var $ButtonStatus;
function BMManageButtonStatusRequestType()
{
parent::AbstractRequestType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'HostedButtonID' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'ButtonStatus' =>
array (
'required' => false,
'type' => 'ButtonStatusType',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
));
}
function getHostedButtonID()
{
return $this->HostedButtonID;
}
function setHostedButtonID($HostedButtonID, $charset = 'iso-8859-1')
{
$this->HostedButtonID = $HostedButtonID;
$this->_elements['HostedButtonID']['charset'] = $charset;
}
function getButtonStatus()
{
return $this->ButtonStatus;
}
function setButtonStatus($ButtonStatus, $charset = 'iso-8859-1')
{
$this->ButtonStatus = $ButtonStatus;
$this->_elements['ButtonStatus']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/bmmanagebuttonstatusrequesttype.php | PHP | asf20 | 1,653 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* CategoryType
*
* Container for data on the primary category of listing.
*
* @package PayPal
*/
class CategoryType extends XSDSimpleType
{
var $AutoPayEnabled;
var $B2BVATEnabled;
var $CatalogEnabled;
var $CategoryID;
var $CategoryLevel;
var $CategoryName;
var $CategoryParentID;
var $CategoryParentName;
/**
* CSIDList is not present if Attributes enabled.
*/
var $CSIDList;
var $Expired;
var $IntlAutosFixedCat;
var $LeafCategory;
var $Virtual;
function CategoryType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'AutoPayEnabled' =>
array (
'required' => false,
'type' => 'boolean',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'B2BVATEnabled' =>
array (
'required' => false,
'type' => 'boolean',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'CatalogEnabled' =>
array (
'required' => false,
'type' => 'boolean',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'CategoryID' =>
array (
'required' => true,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'CategoryLevel' =>
array (
'required' => false,
'type' => 'int',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'CategoryName' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'CategoryParentID' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'CategoryParentName' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'CSIDList' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Expired' =>
array (
'required' => false,
'type' => 'boolean',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'IntlAutosFixedCat' =>
array (
'required' => false,
'type' => 'boolean',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'LeafCategory' =>
array (
'required' => false,
'type' => 'boolean',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Virtual' =>
array (
'required' => false,
'type' => 'boolean',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getAutoPayEnabled()
{
return $this->AutoPayEnabled;
}
function setAutoPayEnabled($AutoPayEnabled, $charset = 'iso-8859-1')
{
$this->AutoPayEnabled = $AutoPayEnabled;
$this->_elements['AutoPayEnabled']['charset'] = $charset;
}
function getB2BVATEnabled()
{
return $this->B2BVATEnabled;
}
function setB2BVATEnabled($B2BVATEnabled, $charset = 'iso-8859-1')
{
$this->B2BVATEnabled = $B2BVATEnabled;
$this->_elements['B2BVATEnabled']['charset'] = $charset;
}
function getCatalogEnabled()
{
return $this->CatalogEnabled;
}
function setCatalogEnabled($CatalogEnabled, $charset = 'iso-8859-1')
{
$this->CatalogEnabled = $CatalogEnabled;
$this->_elements['CatalogEnabled']['charset'] = $charset;
}
function getCategoryID()
{
return $this->CategoryID;
}
function setCategoryID($CategoryID, $charset = 'iso-8859-1')
{
$this->CategoryID = $CategoryID;
$this->_elements['CategoryID']['charset'] = $charset;
}
function getCategoryLevel()
{
return $this->CategoryLevel;
}
function setCategoryLevel($CategoryLevel, $charset = 'iso-8859-1')
{
$this->CategoryLevel = $CategoryLevel;
$this->_elements['CategoryLevel']['charset'] = $charset;
}
function getCategoryName()
{
return $this->CategoryName;
}
function setCategoryName($CategoryName, $charset = 'iso-8859-1')
{
$this->CategoryName = $CategoryName;
$this->_elements['CategoryName']['charset'] = $charset;
}
function getCategoryParentID()
{
return $this->CategoryParentID;
}
function setCategoryParentID($CategoryParentID, $charset = 'iso-8859-1')
{
$this->CategoryParentID = $CategoryParentID;
$this->_elements['CategoryParentID']['charset'] = $charset;
}
function getCategoryParentName()
{
return $this->CategoryParentName;
}
function setCategoryParentName($CategoryParentName, $charset = 'iso-8859-1')
{
$this->CategoryParentName = $CategoryParentName;
$this->_elements['CategoryParentName']['charset'] = $charset;
}
function getCSIDList()
{
return $this->CSIDList;
}
function setCSIDList($CSIDList, $charset = 'iso-8859-1')
{
$this->CSIDList = $CSIDList;
$this->_elements['CSIDList']['charset'] = $charset;
}
function getExpired()
{
return $this->Expired;
}
function setExpired($Expired, $charset = 'iso-8859-1')
{
$this->Expired = $Expired;
$this->_elements['Expired']['charset'] = $charset;
}
function getIntlAutosFixedCat()
{
return $this->IntlAutosFixedCat;
}
function setIntlAutosFixedCat($IntlAutosFixedCat, $charset = 'iso-8859-1')
{
$this->IntlAutosFixedCat = $IntlAutosFixedCat;
$this->_elements['IntlAutosFixedCat']['charset'] = $charset;
}
function getLeafCategory()
{
return $this->LeafCategory;
}
function setLeafCategory($LeafCategory, $charset = 'iso-8859-1')
{
$this->LeafCategory = $LeafCategory;
$this->_elements['LeafCategory']['charset'] = $charset;
}
function getVirtual()
{
return $this->Virtual;
}
function setVirtual($Virtual, $charset = 'iso-8859-1')
{
$this->Virtual = $Virtual;
$this->_elements['Virtual']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/CategoryType.php | PHP | asf20 | 7,184 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractRequestType.php';
/**
* AddressVerifyRequestType
*
* @package PayPal
*/
class AddressVerifyRequestType extends AbstractRequestType
{
/**
* Email address of buyer to be verified.
*/
var $Email;
/**
* First line of buyer ’s billing or shipping street address to be verified.
*/
var $Street;
/**
* Postal code to be verified.
*/
var $Zip;
function AddressVerifyRequestType()
{
parent::AbstractRequestType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'Email' =>
array (
'required' => true,
'type' => 'EmailAddressType',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'Street' =>
array (
'required' => true,
'type' => 'string',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'Zip' =>
array (
'required' => true,
'type' => 'string',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
));
}
function getEmail()
{
return $this->Email;
}
function setEmail($Email, $charset = 'iso-8859-1')
{
$this->Email = $Email;
$this->_elements['Email']['charset'] = $charset;
}
function getStreet()
{
return $this->Street;
}
function setStreet($Street, $charset = 'iso-8859-1')
{
$this->Street = $Street;
$this->_elements['Street']['charset'] = $charset;
}
function getZip()
{
return $this->Zip;
}
function setZip($Zip, $charset = 'iso-8859-1')
{
$this->Zip = $Zip;
$this->_elements['Zip']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/AddressVerifyRequestType.php | PHP | asf20 | 2,003 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* CreditCardNumberTypeType
*
* @package PayPal
*/
class CreditCardNumberTypeType extends XSDSimpleType
{
var $CreditCardType;
var $CreditCardNumber;
function CreditCardNumberTypeType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'CreditCardType' =>
array (
'required' => false,
'type' => 'CreditCardTypeType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'CreditCardNumber' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getCreditCardType()
{
return $this->CreditCardType;
}
function setCreditCardType($CreditCardType, $charset = 'iso-8859-1')
{
$this->CreditCardType = $CreditCardType;
$this->_elements['CreditCardType']['charset'] = $charset;
}
function getCreditCardNumber()
{
return $this->CreditCardNumber;
}
function setCreditCardNumber($CreditCardNumber, $charset = 'iso-8859-1')
{
$this->CreditCardNumber = $CreditCardNumber;
$this->_elements['CreditCardNumber']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/CreditCardNumberTypeType.php | PHP | asf20 | 1,562 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* AirlineItineraryType
*
* AID for Airlines
*
* @package PayPal
*/
class AirlineItineraryType extends XSDSimpleType
{
var $PassengerName;
var $IssueDate;
var $TravelAgencyName;
var $TravelAgencyCode;
var $TicketNumber;
var $IssuingCarrierCode;
var $CustomerCode;
var $TotalFare;
var $TotalTaxes;
var $TotalFee;
var $RestrictedTicket;
var $ClearingSequence;
var $ClearingCount;
var $FlightDetails;
function AirlineItineraryType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'PassengerName' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'IssueDate' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'TravelAgencyName' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'TravelAgencyCode' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'TicketNumber' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'IssuingCarrierCode' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'CustomerCode' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'TotalFare' =>
array (
'required' => false,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'TotalTaxes' =>
array (
'required' => false,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'TotalFee' =>
array (
'required' => false,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'RestrictedTicket' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ClearingSequence' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ClearingCount' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'FlightDetails' =>
array (
'required' => false,
'type' => 'FlightDetailsType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getPassengerName()
{
return $this->PassengerName;
}
function setPassengerName($PassengerName, $charset = 'iso-8859-1')
{
$this->PassengerName = $PassengerName;
$this->_elements['PassengerName']['charset'] = $charset;
}
function getIssueDate()
{
return $this->IssueDate;
}
function setIssueDate($IssueDate, $charset = 'iso-8859-1')
{
$this->IssueDate = $IssueDate;
$this->_elements['IssueDate']['charset'] = $charset;
}
function getTravelAgencyName()
{
return $this->TravelAgencyName;
}
function setTravelAgencyName($TravelAgencyName, $charset = 'iso-8859-1')
{
$this->TravelAgencyName = $TravelAgencyName;
$this->_elements['TravelAgencyName']['charset'] = $charset;
}
function getTravelAgencyCode()
{
return $this->TravelAgencyCode;
}
function setTravelAgencyCode($TravelAgencyCode, $charset = 'iso-8859-1')
{
$this->TravelAgencyCode = $TravelAgencyCode;
$this->_elements['TravelAgencyCode']['charset'] = $charset;
}
function getTicketNumber()
{
return $this->TicketNumber;
}
function setTicketNumber($TicketNumber, $charset = 'iso-8859-1')
{
$this->TicketNumber = $TicketNumber;
$this->_elements['TicketNumber']['charset'] = $charset;
}
function getIssuingCarrierCode()
{
return $this->IssuingCarrierCode;
}
function setIssuingCarrierCode($IssuingCarrierCode, $charset = 'iso-8859-1')
{
$this->IssuingCarrierCode = $IssuingCarrierCode;
$this->_elements['IssuingCarrierCode']['charset'] = $charset;
}
function getCustomerCode()
{
return $this->CustomerCode;
}
function setCustomerCode($CustomerCode, $charset = 'iso-8859-1')
{
$this->CustomerCode = $CustomerCode;
$this->_elements['CustomerCode']['charset'] = $charset;
}
function getTotalFare()
{
return $this->TotalFare;
}
function setTotalFare($TotalFare, $charset = 'iso-8859-1')
{
$this->TotalFare = $TotalFare;
$this->_elements['TotalFare']['charset'] = $charset;
}
function getTotalTaxes()
{
return $this->TotalTaxes;
}
function setTotalTaxes($TotalTaxes, $charset = 'iso-8859-1')
{
$this->TotalTaxes = $TotalTaxes;
$this->_elements['TotalTaxes']['charset'] = $charset;
}
function getTotalFee()
{
return $this->TotalFee;
}
function setTotalFee($TotalFee, $charset = 'iso-8859-1')
{
$this->TotalFee = $TotalFee;
$this->_elements['TotalFee']['charset'] = $charset;
}
function getRestrictedTicket()
{
return $this->RestrictedTicket;
}
function setRestrictedTicket($RestrictedTicket, $charset = 'iso-8859-1')
{
$this->RestrictedTicket = $RestrictedTicket;
$this->_elements['RestrictedTicket']['charset'] = $charset;
}
function getClearingSequence()
{
return $this->ClearingSequence;
}
function setClearingSequence($ClearingSequence, $charset = 'iso-8859-1')
{
$this->ClearingSequence = $ClearingSequence;
$this->_elements['ClearingSequence']['charset'] = $charset;
}
function getClearingCount()
{
return $this->ClearingCount;
}
function setClearingCount($ClearingCount, $charset = 'iso-8859-1')
{
$this->ClearingCount = $ClearingCount;
$this->_elements['ClearingCount']['charset'] = $charset;
}
function getFlightDetails()
{
return $this->FlightDetails;
}
function setFlightDetails($FlightDetails, $charset = 'iso-8859-1')
{
$this->FlightDetails = $FlightDetails;
$this->_elements['FlightDetails']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/AirlineItineraryType.php | PHP | asf20 | 7,711 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* ListingDesignerType
*
* Identifies the Layout and the Theme template associated with the item. in case
* of revision - all data can be min occur = 0
*
* @package PayPal
*/
class ListingDesignerType extends XSDSimpleType
{
/**
* Identifies the Layout template associated with the item.
*/
var $LayoutID;
/**
* A value of true for OptimalPictureSize indicates that the picture URL will be
* enlarged to fit description of the item.
*/
var $OptimalPictureSize;
/**
* Identifies the Theme template associated with the item.
*/
var $ThemeID;
function ListingDesignerType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'LayoutID' =>
array (
'required' => false,
'type' => 'int',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'OptimalPictureSize' =>
array (
'required' => false,
'type' => 'boolean',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ThemeID' =>
array (
'required' => false,
'type' => 'int',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getLayoutID()
{
return $this->LayoutID;
}
function setLayoutID($LayoutID, $charset = 'iso-8859-1')
{
$this->LayoutID = $LayoutID;
$this->_elements['LayoutID']['charset'] = $charset;
}
function getOptimalPictureSize()
{
return $this->OptimalPictureSize;
}
function setOptimalPictureSize($OptimalPictureSize, $charset = 'iso-8859-1')
{
$this->OptimalPictureSize = $OptimalPictureSize;
$this->_elements['OptimalPictureSize']['charset'] = $charset;
}
function getThemeID()
{
return $this->ThemeID;
}
function setThemeID($ThemeID, $charset = 'iso-8859-1')
{
$this->ThemeID = $ThemeID;
$this->_elements['ThemeID']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/ListingDesignerType.php | PHP | asf20 | 2,394 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* GetExpressCheckoutDetailsResponseDetailsType
*
* @package PayPal
*/
class GetExpressCheckoutDetailsResponseDetailsType extends XSDSimpleType
{
/**
* The timestamped token value that was returned by SetExpressCheckoutResponse and
* passed on GetExpressCheckoutDetailsRequest.
*/
var $Token;
/**
* Information about the payer
*/
var $PayerInfo;
/**
* A free-form field for your own use, as set by you in the Custom element of
* SetExpressCheckoutRequest.
*/
var $Custom;
/**
* Your own invoice or tracking number, as set by you in the InvoiceID element of
* SetExpressCheckoutRequest.
*/
var $InvoiceID;
/**
* Payer's contact telephone number. PayPal returns a contact telephone number only
* if your Merchant account profile settings require that the buyer enter one.
*/
var $ContactPhone;
var $BillingAgreementAcceptedStatus;
var $RedirectRequired;
/**
* Customer's billing address.
*/
var $BillingAddress;
/**
* Text note entered by the buyer in PayPal flow.
*/
var $Note;
/**
* Returns the status of the EC checkout session.
*/
var $CheckoutStatus;
/**
* PayPal may offer a discount or gift certificate to the buyer, which will be
* represented by a negativeamount. If the buyer has a negative balance, PayPal
* will add that amount to the current charges, which will be represented as a
* positive amount.
*/
var $PayPalAdjustment;
/**
* Information about the individual purchased items.
*/
var $PaymentDetails;
/**
* Information about the user selected options.
*/
var $UserSelectedOptions;
/**
* Information about the incentives that were applied from Ebay RYP page and PayPal
* RYP page.
*/
var $IncentiveDetails;
/**
* Information about the Gift message.
*/
var $GiftMessage;
/**
* Information about the Gift receipt enable.
*/
var $GiftReceiptEnable;
/**
* Information about the Gift Wrap name.
*/
var $GiftWrapName;
/**
* Information about the Gift Wrap amount.
*/
var $GiftWrapAmount;
/**
* Information about the Buyer marketing email.
*/
var $BuyerMarketingEmail;
/**
* Information about the survey question.
*/
var $SurveyQuestion;
/**
* Information about the survey choice selected by the user.
*/
var $SurveyChoiceSelected;
/**
* Contains payment request information about each bucket in the cart.
*/
var $PaymentRequestInfo;
function GetExpressCheckoutDetailsResponseDetailsType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'Token' =>
array (
'required' => true,
'type' => 'ExpressCheckoutTokenType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'PayerInfo' =>
array (
'required' => true,
'type' => 'PayerInfoType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Custom' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'InvoiceID' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ContactPhone' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'BillingAgreementAcceptedStatus' =>
array (
'required' => false,
'type' => 'boolean',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'RedirectRequired' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'BillingAddress' =>
array (
'required' => false,
'type' => 'AddressType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Note' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'CheckoutStatus' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'PayPalAdjustment' =>
array (
'required' => false,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'PaymentDetails' =>
array (
'required' => false,
'type' => 'PaymentDetailsType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'UserSelectedOptions' =>
array (
'required' => false,
'type' => 'UserSelectedOptionType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'IncentiveDetails' =>
array (
'required' => false,
'type' => 'IncentiveDetailsType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'GiftMessage' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'GiftReceiptEnable' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'GiftWrapName' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'GiftWrapAmount' =>
array (
'required' => false,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'BuyerMarketingEmail' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'SurveyQuestion' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'SurveyChoiceSelected' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'PaymentRequestInfo' =>
array (
'required' => false,
'type' => 'PaymentRequestInfoType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getToken()
{
return $this->Token;
}
function setToken($Token, $charset = 'iso-8859-1')
{
$this->Token = $Token;
$this->_elements['Token']['charset'] = $charset;
}
function getPayerInfo()
{
return $this->PayerInfo;
}
function setPayerInfo($PayerInfo, $charset = 'iso-8859-1')
{
$this->PayerInfo = $PayerInfo;
$this->_elements['PayerInfo']['charset'] = $charset;
}
function getCustom()
{
return $this->Custom;
}
function setCustom($Custom, $charset = 'iso-8859-1')
{
$this->Custom = $Custom;
$this->_elements['Custom']['charset'] = $charset;
}
function getInvoiceID()
{
return $this->InvoiceID;
}
function setInvoiceID($InvoiceID, $charset = 'iso-8859-1')
{
$this->InvoiceID = $InvoiceID;
$this->_elements['InvoiceID']['charset'] = $charset;
}
function getContactPhone()
{
return $this->ContactPhone;
}
function setContactPhone($ContactPhone, $charset = 'iso-8859-1')
{
$this->ContactPhone = $ContactPhone;
$this->_elements['ContactPhone']['charset'] = $charset;
}
function getBillingAgreementAcceptedStatus()
{
return $this->BillingAgreementAcceptedStatus;
}
function setBillingAgreementAcceptedStatus($BillingAgreementAcceptedStatus, $charset = 'iso-8859-1')
{
$this->BillingAgreementAcceptedStatus = $BillingAgreementAcceptedStatus;
$this->_elements['BillingAgreementAcceptedStatus']['charset'] = $charset;
}
function getRedirectRequired()
{
return $this->RedirectRequired;
}
function setRedirectRequired($RedirectRequired, $charset = 'iso-8859-1')
{
$this->RedirectRequired = $RedirectRequired;
$this->_elements['RedirectRequired']['charset'] = $charset;
}
function getBillingAddress()
{
return $this->BillingAddress;
}
function setBillingAddress($BillingAddress, $charset = 'iso-8859-1')
{
$this->BillingAddress = $BillingAddress;
$this->_elements['BillingAddress']['charset'] = $charset;
}
function getNote()
{
return $this->Note;
}
function setNote($Note, $charset = 'iso-8859-1')
{
$this->Note = $Note;
$this->_elements['Note']['charset'] = $charset;
}
function getCheckoutStatus()
{
return $this->CheckoutStatus;
}
function setCheckoutStatus($CheckoutStatus, $charset = 'iso-8859-1')
{
$this->CheckoutStatus = $CheckoutStatus;
$this->_elements['CheckoutStatus']['charset'] = $charset;
}
function getPayPalAdjustment()
{
return $this->PayPalAdjustment;
}
function setPayPalAdjustment($PayPalAdjustment, $charset = 'iso-8859-1')
{
$this->PayPalAdjustment = $PayPalAdjustment;
$this->_elements['PayPalAdjustment']['charset'] = $charset;
}
function getPaymentDetails()
{
return $this->PaymentDetails;
}
function setPaymentDetails($PaymentDetails, $charset = 'iso-8859-1')
{
$this->PaymentDetails = $PaymentDetails;
$this->_elements['PaymentDetails']['charset'] = $charset;
}
function getUserSelectedOptions()
{
return $this->UserSelectedOptions;
}
function setUserSelectedOptions($UserSelectedOptions, $charset = 'iso-8859-1')
{
$this->UserSelectedOptions = $UserSelectedOptions;
$this->_elements['UserSelectedOptions']['charset'] = $charset;
}
function getIncentiveDetails()
{
return $this->IncentiveDetails;
}
function setIncentiveDetails($IncentiveDetails, $charset = 'iso-8859-1')
{
$this->IncentiveDetails = $IncentiveDetails;
$this->_elements['IncentiveDetails']['charset'] = $charset;
}
function getGiftMessage()
{
return $this->GiftMessage;
}
function setGiftMessage($GiftMessage, $charset = 'iso-8859-1')
{
$this->GiftMessage = $GiftMessage;
$this->_elements['GiftMessage']['charset'] = $charset;
}
function getGiftReceiptEnable()
{
return $this->GiftReceiptEnable;
}
function setGiftReceiptEnable($GiftReceiptEnable, $charset = 'iso-8859-1')
{
$this->GiftReceiptEnable = $GiftReceiptEnable;
$this->_elements['GiftReceiptEnable']['charset'] = $charset;
}
function getGiftWrapName()
{
return $this->GiftWrapName;
}
function setGiftWrapName($GiftWrapName, $charset = 'iso-8859-1')
{
$this->GiftWrapName = $GiftWrapName;
$this->_elements['GiftWrapName']['charset'] = $charset;
}
function getGiftWrapAmount()
{
return $this->GiftWrapAmount;
}
function setGiftWrapAmount($GiftWrapAmount, $charset = 'iso-8859-1')
{
$this->GiftWrapAmount = $GiftWrapAmount;
$this->_elements['GiftWrapAmount']['charset'] = $charset;
}
function getBuyerMarketingEmail()
{
return $this->BuyerMarketingEmail;
}
function setBuyerMarketingEmail($BuyerMarketingEmail, $charset = 'iso-8859-1')
{
$this->BuyerMarketingEmail = $BuyerMarketingEmail;
$this->_elements['BuyerMarketingEmail']['charset'] = $charset;
}
function getSurveyQuestion()
{
return $this->SurveyQuestion;
}
function setSurveyQuestion($SurveyQuestion, $charset = 'iso-8859-1')
{
$this->SurveyQuestion = $SurveyQuestion;
$this->_elements['SurveyQuestion']['charset'] = $charset;
}
function getSurveyChoiceSelected()
{
return $this->SurveyChoiceSelected;
}
function setSurveyChoiceSelected($SurveyChoiceSelected, $charset = 'iso-8859-1')
{
$this->SurveyChoiceSelected = $SurveyChoiceSelected;
$this->_elements['SurveyChoiceSelected']['charset'] = $charset;
}
function getPaymentRequestInfo()
{
return $this->PaymentRequestInfo;
}
function setPaymentRequestInfo($PaymentRequestInfo, $charset = 'iso-8859-1')
{
$this->PaymentRequestInfo = $PaymentRequestInfo;
$this->_elements['PaymentRequestInfo']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/GetExpressCheckoutDetailsResponseDetailsType.php | PHP | asf20 | 14,100 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractRequestType.php';
/**
* BMCreateButtonRequestType
*
* @package PayPal
*/
class BMCreateButtonRequestType extends AbstractRequestType
{
/**
* Type of Button to create.
*/
var $ButtonType;
/**
* button code.
*/
var $ButtonCode;
/**
* Button sub type.
*/
var $ButtonSubType;
/**
* Button Variable information
*/
var $ButtonVar;
var $OptionDetails;
/**
* Details of each option for the button.
*/
var $TextBox;
/**
* Button image to use.
*/
var $ButtonImage;
/**
* Button URL for custom button image.
*/
var $ButtonImageURL;
/**
* Text to use on Buy Now Button.
*/
var $BuyNowText;
/**
* Text to use on Subscribe button.
*/
var $SubscribeText;
/**
* Button Country.
*/
var $ButtonCountry;
/**
* Button language code.
*/
var $ButtonLanguage;
function BMCreateButtonRequestType()
{
parent::AbstractRequestType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'ButtonType' =>
array (
'required' => false,
'type' => 'ButtonTypeType',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'ButtonCode' =>
array (
'required' => false,
'type' => 'ButtonCodeType',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'ButtonSubType' =>
array (
'required' => false,
'type' => 'ButtonSubTypeType',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'ButtonVar' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'OptionDetails' =>
array (
'required' => false,
'type' => 'OptionDetailsType',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'TextBox' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'ButtonImage' =>
array (
'required' => false,
'type' => 'ButtonImageType',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'ButtonImageURL' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'BuyNowText' =>
array (
'required' => false,
'type' => 'BuyNowTextType',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'SubscribeText' =>
array (
'required' => false,
'type' => 'SubscribeTextType',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'ButtonCountry' =>
array (
'required' => false,
'type' => 'CountryCodeType',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'ButtonLanguage' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
));
}
function getButtonType()
{
return $this->ButtonType;
}
function setButtonType($ButtonType, $charset = 'iso-8859-1')
{
$this->ButtonType = $ButtonType;
$this->_elements['ButtonType']['charset'] = $charset;
}
function getButtonCode()
{
return $this->ButtonCode;
}
function setButtonCode($ButtonCode, $charset = 'iso-8859-1')
{
$this->ButtonCode = $ButtonCode;
$this->_elements['ButtonCode']['charset'] = $charset;
}
function getButtonSubType()
{
return $this->ButtonSubType;
}
function setButtonSubType($ButtonSubType, $charset = 'iso-8859-1')
{
$this->ButtonSubType = $ButtonSubType;
$this->_elements['ButtonSubType']['charset'] = $charset;
}
function getButtonVar()
{
return $this->ButtonVar;
}
function setButtonVar($ButtonVar, $charset = 'iso-8859-1')
{
$this->ButtonVar = $ButtonVar;
$this->_elements['ButtonVar']['charset'] = $charset;
}
function getOptionDetails()
{
return $this->OptionDetails;
}
function setOptionDetails($OptionDetails, $charset = 'iso-8859-1')
{
$this->OptionDetails = $OptionDetails;
$this->_elements['OptionDetails']['charset'] = $charset;
}
function getTextBox()
{
return $this->TextBox;
}
function setTextBox($TextBox, $charset = 'iso-8859-1')
{
$this->TextBox = $TextBox;
$this->_elements['TextBox']['charset'] = $charset;
}
function getButtonImage()
{
return $this->ButtonImage;
}
function setButtonImage($ButtonImage, $charset = 'iso-8859-1')
{
$this->ButtonImage = $ButtonImage;
$this->_elements['ButtonImage']['charset'] = $charset;
}
function getButtonImageURL()
{
return $this->ButtonImageURL;
}
function setButtonImageURL($ButtonImageURL, $charset = 'iso-8859-1')
{
$this->ButtonImageURL = $ButtonImageURL;
$this->_elements['ButtonImageURL']['charset'] = $charset;
}
function getBuyNowText()
{
return $this->BuyNowText;
}
function setBuyNowText($BuyNowText, $charset = 'iso-8859-1')
{
$this->BuyNowText = $BuyNowText;
$this->_elements['BuyNowText']['charset'] = $charset;
}
function getSubscribeText()
{
return $this->SubscribeText;
}
function setSubscribeText($SubscribeText, $charset = 'iso-8859-1')
{
$this->SubscribeText = $SubscribeText;
$this->_elements['SubscribeText']['charset'] = $charset;
}
function getButtonCountry()
{
return $this->ButtonCountry;
}
function setButtonCountry($ButtonCountry, $charset = 'iso-8859-1')
{
$this->ButtonCountry = $ButtonCountry;
$this->_elements['ButtonCountry']['charset'] = $charset;
}
function getButtonLanguage()
{
return $this->ButtonLanguage;
}
function setButtonLanguage($ButtonLanguage, $charset = 'iso-8859-1')
{
$this->ButtonLanguage = $ButtonLanguage;
$this->_elements['ButtonLanguage']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/bmcreatebuttonrequesttype.php | PHP | asf20 | 6,987 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractResponseType.php';
/**
* BAUpdateResponseType
*
* @package PayPal
*/
class BAUpdateResponseType extends AbstractResponseType
{
var $BAUpdateResponseDetails;
function BAUpdateResponseType()
{
parent::AbstractResponseType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'BAUpdateResponseDetails' =>
array (
'required' => true,
'type' => 'BAUpdateResponseDetailsType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getBAUpdateResponseDetails()
{
return $this->BAUpdateResponseDetails;
}
function setBAUpdateResponseDetails($BAUpdateResponseDetails, $charset = 'iso-8859-1')
{
$this->BAUpdateResponseDetails = $BAUpdateResponseDetails;
$this->_elements['BAUpdateResponseDetails']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/BAUpdateResponseType.php | PHP | asf20 | 1,111 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* FundingSourceDetailsType
*
* @package PayPal
*/
class FundingSourceDetailsType extends XSDSimpleType
{
/**
* Allowable values: 0,1
*/
var $AllowPushFunding;
/**
* Allowable values: ELV, CreditCard, ChinaUnionPay
*/
var $UserSelectedFundingSource;
function FundingSourceDetailsType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'AllowPushFunding' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'UserSelectedFundingSource' =>
array (
'required' => false,
'type' => 'UserSelectedFundingSourceType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getAllowPushFunding()
{
return $this->AllowPushFunding;
}
function setAllowPushFunding($AllowPushFunding, $charset = 'iso-8859-1')
{
$this->AllowPushFunding = $AllowPushFunding;
$this->_elements['AllowPushFunding']['charset'] = $charset;
}
function getUserSelectedFundingSource()
{
return $this->UserSelectedFundingSource;
}
function setUserSelectedFundingSource($UserSelectedFundingSource, $charset = 'iso-8859-1')
{
$this->UserSelectedFundingSource = $UserSelectedFundingSource;
$this->_elements['UserSelectedFundingSource']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/FundingSourceDetailsType.php | PHP | asf20 | 1,789 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractRequestType.php';
/**
* SetAccessPermissionsRequestType
*
* @package PayPal
*/
class SetAccessPermissionsRequestType extends AbstractRequestType
{
var $SetAccessPermissionsRequestDetails;
function SetAccessPermissionsRequestType()
{
parent::AbstractRequestType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'SetAccessPermissionsRequestDetails' =>
array (
'required' => true,
'type' => 'SetAccessPermissionsRequestDetailsType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getSetAccessPermissionsRequestDetails()
{
return $this->SetAccessPermissionsRequestDetails;
}
function setSetAccessPermissionsRequestDetails($SetAccessPermissionsRequestDetails, $charset = 'iso-8859-1')
{
$this->SetAccessPermissionsRequestDetails = $SetAccessPermissionsRequestDetails;
$this->_elements['SetAccessPermissionsRequestDetails']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/SetAccessPermissionsRequestType.php | PHP | asf20 | 1,251 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* PaymentItemType
*
* PaymentItemType Information about a Payment Item.
*
* @package PayPal
*/
class PaymentItemType extends XSDSimpleType
{
/**
* Item name set by you or entered by the customer.
*/
var $Name;
/**
* Item number set by you.
*/
var $Number;
/**
* Quantity set by you or entered by the customer.
*/
var $Quantity;
/**
* Amount of tax charged on payment
*/
var $SalesTax;
/**
* Amount of shipping charged on payment
*/
var $ShippingAmount;
/**
* Amount of handling charged on payment
*/
var $HandlingAmount;
/**
* Cost of item
*/
var $Amount;
/**
* Item options selected in PayPal shopping cart
*/
var $Options;
function PaymentItemType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'Name' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Number' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Quantity' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'SalesTax' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ShippingAmount' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'HandlingAmount' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Amount' =>
array (
'required' => false,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Options' =>
array (
'required' => false,
'type' => 'OptionType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getName()
{
return $this->Name;
}
function setName($Name, $charset = 'iso-8859-1')
{
$this->Name = $Name;
$this->_elements['Name']['charset'] = $charset;
}
function getNumber()
{
return $this->Number;
}
function setNumber($Number, $charset = 'iso-8859-1')
{
$this->Number = $Number;
$this->_elements['Number']['charset'] = $charset;
}
function getQuantity()
{
return $this->Quantity;
}
function setQuantity($Quantity, $charset = 'iso-8859-1')
{
$this->Quantity = $Quantity;
$this->_elements['Quantity']['charset'] = $charset;
}
function getSalesTax()
{
return $this->SalesTax;
}
function setSalesTax($SalesTax, $charset = 'iso-8859-1')
{
$this->SalesTax = $SalesTax;
$this->_elements['SalesTax']['charset'] = $charset;
}
function getShippingAmount()
{
return $this->ShippingAmount;
}
function setShippingAmount($ShippingAmount, $charset = 'iso-8859-1')
{
$this->ShippingAmount = $ShippingAmount;
$this->_elements['ShippingAmount']['charset'] = $charset;
}
function getHandlingAmount()
{
return $this->HandlingAmount;
}
function setHandlingAmount($HandlingAmount, $charset = 'iso-8859-1')
{
$this->HandlingAmount = $HandlingAmount;
$this->_elements['HandlingAmount']['charset'] = $charset;
}
function getAmount()
{
return $this->Amount;
}
function setAmount($Amount, $charset = 'iso-8859-1')
{
$this->Amount = $Amount;
$this->_elements['Amount']['charset'] = $charset;
}
function getOptions()
{
return $this->Options;
}
function setOptions($Options, $charset = 'iso-8859-1')
{
$this->Options = $Options;
$this->_elements['Options']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/PaymentItemType.php | PHP | asf20 | 4,775 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractRequestType.php';
/**
* DoAuthorizationRequestType
*
* @package PayPal
*/
class DoAuthorizationRequestType extends AbstractRequestType
{
/**
* The value of the order ’s transaction identification number returned by a
* PayPal product.
*/
var $TransactionID;
/**
* Type of transaction to authorize. The only allowable value is
*/
var $TransactionEntity;
/**
* Amount to authorize.
*/
var $Amount;
function DoAuthorizationRequestType()
{
parent::AbstractRequestType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'TransactionID' =>
array (
'required' => true,
'type' => 'string',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'TransactionEntity' =>
array (
'required' => false,
'type' => 'TransactionEntityType',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'Amount' =>
array (
'required' => true,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
));
}
function getTransactionID()
{
return $this->TransactionID;
}
function setTransactionID($TransactionID, $charset = 'iso-8859-1')
{
$this->TransactionID = $TransactionID;
$this->_elements['TransactionID']['charset'] = $charset;
}
function getTransactionEntity()
{
return $this->TransactionEntity;
}
function setTransactionEntity($TransactionEntity, $charset = 'iso-8859-1')
{
$this->TransactionEntity = $TransactionEntity;
$this->_elements['TransactionEntity']['charset'] = $charset;
}
function getAmount()
{
return $this->Amount;
}
function setAmount($Amount, $charset = 'iso-8859-1')
{
$this->Amount = $Amount;
$this->_elements['Amount']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/DoAuthorizationRequestType.php | PHP | asf20 | 2,261 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractResponseType.php';
/**
* CompleteRecoupResponseType
*
* @package PayPal
*/
class CompleteRecoupResponseType extends AbstractResponseType
{
var $EnhancedCompleteRecoupResponseDetails;
function CompleteRecoupResponseType()
{
parent::AbstractResponseType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'EnhancedCompleteRecoupResponseDetails' =>
array (
'required' => true,
'type' => 'EnhancedCompleteRecoupResponseDetailsType',
'namespace' => 'urn:ebay:apis:EnhancedDataTypes',
),
));
}
function getEnhancedCompleteRecoupResponseDetails()
{
return $this->EnhancedCompleteRecoupResponseDetails;
}
function setEnhancedCompleteRecoupResponseDetails($EnhancedCompleteRecoupResponseDetails, $charset = 'iso-8859-1')
{
$this->EnhancedCompleteRecoupResponseDetails = $EnhancedCompleteRecoupResponseDetails;
$this->_elements['EnhancedCompleteRecoupResponseDetails']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/CompleteRecoupResponseType.php | PHP | asf20 | 1,269 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractResponseType.php';
/**
* SetMobileCheckoutResponseType
*
* @package PayPal
*/
class SetMobileCheckoutResponseType extends AbstractResponseType
{
/**
* A timestamped token by which you identify to PayPal that you are processing this
* payment with Mobile Checkout. The token expires after three hours.
*/
var $Token;
function SetMobileCheckoutResponseType()
{
parent::AbstractResponseType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'Token' =>
array (
'required' => true,
'type' => 'string',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
));
}
function getToken()
{
return $this->Token;
}
function setToken($Token, $charset = 'iso-8859-1')
{
$this->Token = $Token;
$this->_elements['Token']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/SetMobileCheckoutResponseType.php | PHP | asf20 | 1,124 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractResponseType.php';
/**
* CreateRecurringPaymentsProfileResponseType
*
* @package PayPal
*/
class CreateRecurringPaymentsProfileResponseType extends AbstractResponseType
{
var $CreateRecurringPaymentsProfileResponseDetails;
function CreateRecurringPaymentsProfileResponseType()
{
parent::AbstractResponseType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'CreateRecurringPaymentsProfileResponseDetails' =>
array (
'required' => true,
'type' => 'CreateRecurringPaymentsProfileResponseDetailsType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getCreateRecurringPaymentsProfileResponseDetails()
{
return $this->CreateRecurringPaymentsProfileResponseDetails;
}
function setCreateRecurringPaymentsProfileResponseDetails($CreateRecurringPaymentsProfileResponseDetails, $charset = 'iso-8859-1')
{
$this->CreateRecurringPaymentsProfileResponseDetails = $CreateRecurringPaymentsProfileResponseDetails;
$this->_elements['CreateRecurringPaymentsProfileResponseDetails']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/CreateRecurringPaymentsProfileResponseType.php | PHP | asf20 | 1,397 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* ShippingCarrierDetailsType
*
* @package PayPal
*/
class ShippingCarrierDetailsType extends XSDSimpleType
{
/**
* Calculated cost of shipping, based on shipping parameters and selected shipping
* service. Only returned if ShippingType = 2 (i.e., calculated shipping rate).
*/
var $CarrierShippingFee;
var $InsuranceFee;
var $InsuranceOption;
/**
* Optional fees a seller might assess for the shipping of the item.
*/
var $PackagingHandlingCosts;
/**
* Describes any error message associated with the attempt to calculate shipping
* rates. If there was no error, returns "No Error" (without the quotation marks).
*/
var $ShippingRateErrorMessage;
/**
* is unique identified of shipping carrier, without this element the whole node
* makes no sence
*/
var $ShippingService;
function ShippingCarrierDetailsType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'CarrierShippingFee' =>
array (
'required' => false,
'type' => 'AmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'InsuranceFee' =>
array (
'required' => false,
'type' => NULL,
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'InsuranceOption' =>
array (
'required' => false,
'type' => NULL,
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'PackagingHandlingCosts' =>
array (
'required' => false,
'type' => 'AmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ShippingRateErrorMessage' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ShippingService' =>
array (
'required' => true,
'type' => NULL,
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getCarrierShippingFee()
{
return $this->CarrierShippingFee;
}
function setCarrierShippingFee($CarrierShippingFee, $charset = 'iso-8859-1')
{
$this->CarrierShippingFee = $CarrierShippingFee;
$this->_elements['CarrierShippingFee']['charset'] = $charset;
}
function getInsuranceFee()
{
return $this->InsuranceFee;
}
function setInsuranceFee($InsuranceFee, $charset = 'iso-8859-1')
{
$this->InsuranceFee = $InsuranceFee;
$this->_elements['InsuranceFee']['charset'] = $charset;
}
function getInsuranceOption()
{
return $this->InsuranceOption;
}
function setInsuranceOption($InsuranceOption, $charset = 'iso-8859-1')
{
$this->InsuranceOption = $InsuranceOption;
$this->_elements['InsuranceOption']['charset'] = $charset;
}
function getPackagingHandlingCosts()
{
return $this->PackagingHandlingCosts;
}
function setPackagingHandlingCosts($PackagingHandlingCosts, $charset = 'iso-8859-1')
{
$this->PackagingHandlingCosts = $PackagingHandlingCosts;
$this->_elements['PackagingHandlingCosts']['charset'] = $charset;
}
function getShippingRateErrorMessage()
{
return $this->ShippingRateErrorMessage;
}
function setShippingRateErrorMessage($ShippingRateErrorMessage, $charset = 'iso-8859-1')
{
$this->ShippingRateErrorMessage = $ShippingRateErrorMessage;
$this->_elements['ShippingRateErrorMessage']['charset'] = $charset;
}
function getShippingService()
{
return $this->ShippingService;
}
function setShippingService($ShippingService, $charset = 'iso-8859-1')
{
$this->ShippingService = $ShippingService;
$this->_elements['ShippingService']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/ShippingCarrierDetailsType.php | PHP | asf20 | 4,406 |