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';
/**
* PaymentType
*
* @package PayPal
*/
class PaymentType extends XSDSimpleType
{
var $PaymentMeans;
function PaymentType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'PaymentMeans' =>
array (
'required' => true,
'type' => 'PaymentMeansType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getPaymentMeans()
{
return $this->PaymentMeans;
}
function setPaymentMeans($PaymentMeans, $charset = 'iso-8859-1')
{
$this->PaymentMeans = $PaymentMeans;
$this->_elements['PaymentMeans']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/PaymentType.php | PHP | asf20 | 962 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* CategoryArrayType
*
* @package PayPal
*/
class CategoryArrayType extends XSDSimpleType
{
var $Category;
function CategoryArrayType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'Category' =>
array (
'required' => false,
'type' => NULL,
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getCategory()
{
return $this->Category;
}
function setCategory($Category, $charset = 'iso-8859-1')
{
$this->Category = $Category;
$this->_elements['Category']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/CategoryArrayType.php | PHP | asf20 | 931 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractRequestType.php';
/**
* BillUserRequestType
*
* @package PayPal
*/
class BillUserRequestType extends AbstractRequestType
{
var $MerchantPullPaymentDetails;
/**
* This flag indicates that the response should include FMFDetails
*/
var $ReturnFMFDetails;
function BillUserRequestType()
{
parent::AbstractRequestType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'MerchantPullPaymentDetails' =>
array (
'required' => true,
'type' => 'MerchantPullPaymentType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ReturnFMFDetails' =>
array (
'required' => false,
'type' => 'int',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
));
}
function getMerchantPullPaymentDetails()
{
return $this->MerchantPullPaymentDetails;
}
function setMerchantPullPaymentDetails($MerchantPullPaymentDetails, $charset = 'iso-8859-1')
{
$this->MerchantPullPaymentDetails = $MerchantPullPaymentDetails;
$this->_elements['MerchantPullPaymentDetails']['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/BillUserRequestType.php | PHP | asf20 | 1,743 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractResponseType.php';
/**
* EnterBoardingResponseType
*
* @package PayPal
*/
class EnterBoardingResponseType extends AbstractResponseType
{
/**
* A unique token that identifies this boarding session. Use this token with the
* GetBoarding Details API call.
*/
var $Token;
function EnterBoardingResponseType()
{
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/EnterBoardingResponseType.php | PHP | asf20 | 1,090 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* RiskFilterDetailsType
*
* Details of Risk Filter.
*
* @package PayPal
*/
class RiskFilterDetailsType extends XSDSimpleType
{
var $Id;
var $Name;
var $Description;
function RiskFilterDetailsType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'Id' =>
array (
'required' => true,
'type' => 'int',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Name' =>
array (
'required' => true,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Description' =>
array (
'required' => true,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getId()
{
return $this->Id;
}
function setId($Id, $charset = 'iso-8859-1')
{
$this->Id = $Id;
$this->_elements['Id']['charset'] = $charset;
}
function getName()
{
return $this->Name;
}
function setName($Name, $charset = 'iso-8859-1')
{
$this->Name = $Name;
$this->_elements['Name']['charset'] = $charset;
}
function getDescription()
{
return $this->Description;
}
function setDescription($Description, $charset = 'iso-8859-1')
{
$this->Description = $Description;
$this->_elements['Description']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/RiskFilterDetailsType.php | PHP | asf20 | 1,845 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* VATDetailsType
*
* Contains information required To list a business item. BusinessSeller - only for
* add item, the RestrictedToBusiness and VATPercent for both get and add, for
* revise all must be optional
*
* @package PayPal
*/
class VATDetailsType extends XSDSimpleType
{
var $BusinessSeller;
var $RestrictedToBusiness;
var $VATPercent;
function VATDetailsType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'BusinessSeller' =>
array (
'required' => false,
'type' => 'boolean',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'RestrictedToBusiness' =>
array (
'required' => false,
'type' => 'boolean',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'VATPercent' =>
array (
'required' => false,
'type' => 'float',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getBusinessSeller()
{
return $this->BusinessSeller;
}
function setBusinessSeller($BusinessSeller, $charset = 'iso-8859-1')
{
$this->BusinessSeller = $BusinessSeller;
$this->_elements['BusinessSeller']['charset'] = $charset;
}
function getRestrictedToBusiness()
{
return $this->RestrictedToBusiness;
}
function setRestrictedToBusiness($RestrictedToBusiness, $charset = 'iso-8859-1')
{
$this->RestrictedToBusiness = $RestrictedToBusiness;
$this->_elements['RestrictedToBusiness']['charset'] = $charset;
}
function getVATPercent()
{
return $this->VATPercent;
}
function setVATPercent($VATPercent, $charset = 'iso-8859-1')
{
$this->VATPercent = $VATPercent;
$this->_elements['VATPercent']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/VATDetailsType.php | PHP | asf20 | 2,241 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractRequestType.php';
/**
* DoDirectPaymentRequestType
*
* @package PayPal
*/
class DoDirectPaymentRequestType extends AbstractRequestType
{
var $DoDirectPaymentRequestDetails;
/**
* This flag indicates that the response should include FMFDetails
*/
var $ReturnFMFDetails;
function DoDirectPaymentRequestType()
{
parent::AbstractRequestType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'DoDirectPaymentRequestDetails' =>
array (
'required' => true,
'type' => 'DoDirectPaymentRequestDetailsType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ReturnFMFDetails' =>
array (
'required' => false,
'type' => 'int',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
));
}
function getDoDirectPaymentRequestDetails()
{
return $this->DoDirectPaymentRequestDetails;
}
function setDoDirectPaymentRequestDetails($DoDirectPaymentRequestDetails, $charset = 'iso-8859-1')
{
$this->DoDirectPaymentRequestDetails = $DoDirectPaymentRequestDetails;
$this->_elements['DoDirectPaymentRequestDetails']['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/DoDirectPaymentRequestType.php | PHP | asf20 | 1,801 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* BusinessInfoType
*
* BusinessInfoType
*
* @package PayPal
*/
class BusinessInfoType extends XSDSimpleType
{
/**
* Type of business, such as corporation or sole proprietorship
*/
var $Type;
/**
* Official name of business
*/
var $Name;
/**
* Merchant ’s business postal address
*/
var $Address;
/**
* Business ’s primary telephone number
*/
var $WorkPhone;
/**
* Line of business, as defined in the enumerations
*/
var $Category;
/**
* Business sub-category, as defined in the enumerations
*/
var $SubCategory;
/**
* Average transaction price, as defined by the enumerations.
*/
var $AveragePrice;
/**
* Average monthly sales volume, as defined by the enumerations.
*/
var $AverageMonthlyVolume;
/**
* Main sales venue, such as eBay
*/
var $SalesVenue;
/**
* Primary URL of business
*/
var $Website;
/**
* Percentage of revenue attributable to online sales, as defined by the
* enumerations
*/
var $RevenueFromOnlineSales;
/**
* Date the merchant ’s business was established
*/
var $BusinessEstablished;
/**
* Email address to contact business ’s customer service
*/
var $CustomerServiceEmail;
/**
* Telephone number to contact business ’s customer service
*/
var $CustomerServicePhone;
function BusinessInfoType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'Type' =>
array (
'required' => false,
'type' => 'BusinessTypeType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Name' =>
array (
'required' => false,
'type' => 'NameType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Address' =>
array (
'required' => false,
'type' => 'AddressType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'WorkPhone' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Category' =>
array (
'required' => false,
'type' => 'BusinessCategoryType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'SubCategory' =>
array (
'required' => false,
'type' => 'BusinessSubCategoryType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'AveragePrice' =>
array (
'required' => false,
'type' => 'AverageTransactionPriceType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'AverageMonthlyVolume' =>
array (
'required' => false,
'type' => 'AverageMonthlyVolumeType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'SalesVenue' =>
array (
'required' => false,
'type' => 'SalesVenueType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Website' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'RevenueFromOnlineSales' =>
array (
'required' => false,
'type' => 'PercentageRevenueFromOnlineSalesType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'BusinessEstablished' =>
array (
'required' => false,
'type' => 'dateTime',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'CustomerServiceEmail' =>
array (
'required' => false,
'type' => 'EmailAddressType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'CustomerServicePhone' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getType()
{
return $this->Type;
}
function setType($Type, $charset = 'iso-8859-1')
{
$this->Type = $Type;
$this->_elements['Type']['charset'] = $charset;
}
function getName()
{
return $this->Name;
}
function setName($Name, $charset = 'iso-8859-1')
{
$this->Name = $Name;
$this->_elements['Name']['charset'] = $charset;
}
function getAddress()
{
return $this->Address;
}
function setAddress($Address, $charset = 'iso-8859-1')
{
$this->Address = $Address;
$this->_elements['Address']['charset'] = $charset;
}
function getWorkPhone()
{
return $this->WorkPhone;
}
function setWorkPhone($WorkPhone, $charset = 'iso-8859-1')
{
$this->WorkPhone = $WorkPhone;
$this->_elements['WorkPhone']['charset'] = $charset;
}
function getCategory()
{
return $this->Category;
}
function setCategory($Category, $charset = 'iso-8859-1')
{
$this->Category = $Category;
$this->_elements['Category']['charset'] = $charset;
}
function getSubCategory()
{
return $this->SubCategory;
}
function setSubCategory($SubCategory, $charset = 'iso-8859-1')
{
$this->SubCategory = $SubCategory;
$this->_elements['SubCategory']['charset'] = $charset;
}
function getAveragePrice()
{
return $this->AveragePrice;
}
function setAveragePrice($AveragePrice, $charset = 'iso-8859-1')
{
$this->AveragePrice = $AveragePrice;
$this->_elements['AveragePrice']['charset'] = $charset;
}
function getAverageMonthlyVolume()
{
return $this->AverageMonthlyVolume;
}
function setAverageMonthlyVolume($AverageMonthlyVolume, $charset = 'iso-8859-1')
{
$this->AverageMonthlyVolume = $AverageMonthlyVolume;
$this->_elements['AverageMonthlyVolume']['charset'] = $charset;
}
function getSalesVenue()
{
return $this->SalesVenue;
}
function setSalesVenue($SalesVenue, $charset = 'iso-8859-1')
{
$this->SalesVenue = $SalesVenue;
$this->_elements['SalesVenue']['charset'] = $charset;
}
function getWebsite()
{
return $this->Website;
}
function setWebsite($Website, $charset = 'iso-8859-1')
{
$this->Website = $Website;
$this->_elements['Website']['charset'] = $charset;
}
function getRevenueFromOnlineSales()
{
return $this->RevenueFromOnlineSales;
}
function setRevenueFromOnlineSales($RevenueFromOnlineSales, $charset = 'iso-8859-1')
{
$this->RevenueFromOnlineSales = $RevenueFromOnlineSales;
$this->_elements['RevenueFromOnlineSales']['charset'] = $charset;
}
function getBusinessEstablished()
{
return $this->BusinessEstablished;
}
function setBusinessEstablished($BusinessEstablished, $charset = 'iso-8859-1')
{
$this->BusinessEstablished = $BusinessEstablished;
$this->_elements['BusinessEstablished']['charset'] = $charset;
}
function getCustomerServiceEmail()
{
return $this->CustomerServiceEmail;
}
function setCustomerServiceEmail($CustomerServiceEmail, $charset = 'iso-8859-1')
{
$this->CustomerServiceEmail = $CustomerServiceEmail;
$this->_elements['CustomerServiceEmail']['charset'] = $charset;
}
function getCustomerServicePhone()
{
return $this->CustomerServicePhone;
}
function setCustomerServicePhone($CustomerServicePhone, $charset = 'iso-8859-1')
{
$this->CustomerServicePhone = $CustomerServicePhone;
$this->_elements['CustomerServicePhone']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/BusinessInfoType.php | PHP | asf20 | 8,744 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* ScheduleDetailsType
*
* @package PayPal
*/
class ScheduleDetailsType extends XSDSimpleType
{
/**
* Schedule details for the Recurring Payment
*/
var $Description;
/**
* Trial period of this schedule
*/
var $TrialPeriod;
var $PaymentPeriod;
/**
* The max number of payments the buyer can fail before this Recurring Payments
* profile is cancelled
*/
var $MaxFailedPayments;
var $ActivationDetails;
var $AutoBillOutstandingAmount;
function ScheduleDetailsType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'Description' =>
array (
'required' => true,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'TrialPeriod' =>
array (
'required' => false,
'type' => 'BillingPeriodDetailsType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'PaymentPeriod' =>
array (
'required' => true,
'type' => 'BillingPeriodDetailsType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'MaxFailedPayments' =>
array (
'required' => false,
'type' => 'int',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ActivationDetails' =>
array (
'required' => false,
'type' => 'ActivationDetailsType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'AutoBillOutstandingAmount' =>
array (
'required' => false,
'type' => 'AutoBillType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getDescription()
{
return $this->Description;
}
function setDescription($Description, $charset = 'iso-8859-1')
{
$this->Description = $Description;
$this->_elements['Description']['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;
}
function getMaxFailedPayments()
{
return $this->MaxFailedPayments;
}
function setMaxFailedPayments($MaxFailedPayments, $charset = 'iso-8859-1')
{
$this->MaxFailedPayments = $MaxFailedPayments;
$this->_elements['MaxFailedPayments']['charset'] = $charset;
}
function getActivationDetails()
{
return $this->ActivationDetails;
}
function setActivationDetails($ActivationDetails, $charset = 'iso-8859-1')
{
$this->ActivationDetails = $ActivationDetails;
$this->_elements['ActivationDetails']['charset'] = $charset;
}
function getAutoBillOutstandingAmount()
{
return $this->AutoBillOutstandingAmount;
}
function setAutoBillOutstandingAmount($AutoBillOutstandingAmount, $charset = 'iso-8859-1')
{
$this->AutoBillOutstandingAmount = $AutoBillOutstandingAmount;
$this->_elements['AutoBillOutstandingAmount']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/ScheduleDetailsType.php | PHP | asf20 | 3,994 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* PaginationResultType
*
* @package PayPal
*/
class PaginationResultType extends XSDSimpleType
{
var $TotalNumberOfPages;
var $TotalNumberOfEntries;
function PaginationResultType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'TotalNumberOfPages' =>
array (
'required' => false,
'type' => 'int',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'TotalNumberOfEntries' =>
array (
'required' => false,
'type' => 'int',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getTotalNumberOfPages()
{
return $this->TotalNumberOfPages;
}
function setTotalNumberOfPages($TotalNumberOfPages, $charset = 'iso-8859-1')
{
$this->TotalNumberOfPages = $TotalNumberOfPages;
$this->_elements['TotalNumberOfPages']['charset'] = $charset;
}
function getTotalNumberOfEntries()
{
return $this->TotalNumberOfEntries;
}
function setTotalNumberOfEntries($TotalNumberOfEntries, $charset = 'iso-8859-1')
{
$this->TotalNumberOfEntries = $TotalNumberOfEntries;
$this->_elements['TotalNumberOfEntries']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/PaginationResultType.php | PHP | asf20 | 1,604 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* SalesTaxType
*
* @package PayPal
*/
class SalesTaxType extends XSDSimpleType
{
/**
* Amount of the sales tax to be collected for the transaction. Sales tax is only
* for US.
*/
var $SalesTaxPercent;
/**
* Sales tax for the transaction, expressed as a percentage. Should be empty for
* items listed on international sites (hence, this is US-only element).
*/
var $SalesTaxState;
/**
* Indicates whether shipping is included in the tax. Applicable if ShippingType =
* 1 or 2. This element is used for US-only.
*/
var $ShippingIncludedInTax;
function SalesTaxType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'SalesTaxPercent' =>
array (
'required' => false,
'type' => 'float',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'SalesTaxState' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ShippingIncludedInTax' =>
array (
'required' => false,
'type' => 'boolean',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getSalesTaxPercent()
{
return $this->SalesTaxPercent;
}
function setSalesTaxPercent($SalesTaxPercent, $charset = 'iso-8859-1')
{
$this->SalesTaxPercent = $SalesTaxPercent;
$this->_elements['SalesTaxPercent']['charset'] = $charset;
}
function getSalesTaxState()
{
return $this->SalesTaxState;
}
function setSalesTaxState($SalesTaxState, $charset = 'iso-8859-1')
{
$this->SalesTaxState = $SalesTaxState;
$this->_elements['SalesTaxState']['charset'] = $charset;
}
function getShippingIncludedInTax()
{
return $this->ShippingIncludedInTax;
}
function setShippingIncludedInTax($ShippingIncludedInTax, $charset = 'iso-8859-1')
{
$this->ShippingIncludedInTax = $ShippingIncludedInTax;
$this->_elements['ShippingIncludedInTax']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/SalesTaxType.php | PHP | asf20 | 2,528 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* IncentiveRequestDetailsType
*
* @package PayPal
*/
class IncentiveRequestDetailsType extends XSDSimpleType
{
var $RequestId;
var $RequestType;
var $RequestDetailLevel;
function IncentiveRequestDetailsType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'RequestId' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'RequestType' =>
array (
'required' => false,
'type' => 'IncentiveRequestCodeType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'RequestDetailLevel' =>
array (
'required' => false,
'type' => 'IncentiveRequestDetailLevelCodeType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getRequestId()
{
return $this->RequestId;
}
function setRequestId($RequestId, $charset = 'iso-8859-1')
{
$this->RequestId = $RequestId;
$this->_elements['RequestId']['charset'] = $charset;
}
function getRequestType()
{
return $this->RequestType;
}
function setRequestType($RequestType, $charset = 'iso-8859-1')
{
$this->RequestType = $RequestType;
$this->_elements['RequestType']['charset'] = $charset;
}
function getRequestDetailLevel()
{
return $this->RequestDetailLevel;
}
function setRequestDetailLevel($RequestDetailLevel, $charset = 'iso-8859-1')
{
$this->RequestDetailLevel = $RequestDetailLevel;
$this->_elements['RequestDetailLevel']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/IncentiveRequestDetailsType.php | PHP | asf20 | 2,074 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractResponseType.php';
/**
* GetBoardingDetailsResponseType
*
* @package PayPal
*/
class GetBoardingDetailsResponseType extends AbstractResponseType
{
var $GetBoardingDetailsResponseDetails;
function GetBoardingDetailsResponseType()
{
parent::AbstractResponseType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'GetBoardingDetailsResponseDetails' =>
array (
'required' => true,
'type' => 'GetBoardingDetailsResponseDetailsType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getGetBoardingDetailsResponseDetails()
{
return $this->GetBoardingDetailsResponseDetails;
}
function setGetBoardingDetailsResponseDetails($GetBoardingDetailsResponseDetails, $charset = 'iso-8859-1')
{
$this->GetBoardingDetailsResponseDetails = $GetBoardingDetailsResponseDetails;
$this->_elements['GetBoardingDetailsResponseDetails']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/GetBoardingDetailsResponseType.php | PHP | asf20 | 1,241 |
<?php
/**
* This is one of two base Type files that are not automatically
* generated from the WSDL.
*
* @package PayPal
*/
/**
* Base Type classs that allows for conversion of types into
* SOAP_Value objects.
*
* @package PayPal
*/
class XSDType
{
/**
* Information about all of the member variables of this type.
*
* @access protected
*
* @var array $_elements
*/
var $_elements = array();
/**
* Information about all of the attributes of this type.
*
* @access protected
*
* @var array $_attributes
*/
var $_attributes = array();
/**
* Actual values of any attributes for this type.
*
* @access protected
*
* @var array $_attributeValues
*/
var $_attributeValues = array();
/**
* What namespace is this type in?
*
* @access protected
*
* @var string $_namespace
*/
var $_namespace;
/**
* Constructor. Base class constructor is empty.
*/
function XSDType()
{
}
/**
* Turn this type into a SOAP_Value object useable with
* SOAP_Client.
*
* @param string $name The name to use for the value.
* @param string $ns The namespace of the parent value.
*
* @return SOAP_Value A SOAP_Value object representing this type instance.
*/
function &getSoapValue($name, $ns = null)
{
include_once 'PayPal/SOAP/Value.php';
$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 an attribute on this object.
*/
function setattr($attribute, $value)
{
$this->_attributeValues[$attribute] = $value;
}
/**
* Get the value of an attribute on this object.
*/
function getattr($attribute)
{
return isset($this->_attributeValues[$attribute]) ?
$this->_attributeValues[$attribute] :
null;
}
/**
* Callback for SOAP_Base::_decode() to set attributes during
* response decoding.
*/
function __set_attribute($key, $value)
{
return $this->setattr($key, $value);
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/XSDType.php | PHP | asf20 | 3,881 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractRequestType.php';
/**
* GetBillingAgreementCustomerDetailsRequestType
*
* @package PayPal
*/
class GetBillingAgreementCustomerDetailsRequestType extends AbstractRequestType
{
var $Token;
function GetBillingAgreementCustomerDetailsRequestType()
{
parent::AbstractRequestType();
$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/GetBillingAgreementCustomerDetailsRequestType.php | PHP | asf20 | 1,009 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* GetIncentiveEvaluationRequestDetailsType
*
* @package PayPal
*/
class GetIncentiveEvaluationRequestDetailsType extends XSDSimpleType
{
var $ExternalBuyerId;
var $IncentiveCodes;
var $ApplyIndication;
var $Buckets;
var $CartTotalAmt;
var $RequestDetails;
function GetIncentiveEvaluationRequestDetailsType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'ExternalBuyerId' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'IncentiveCodes' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ApplyIndication' =>
array (
'required' => false,
'type' => 'IncentiveApplyIndicationType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Buckets' =>
array (
'required' => false,
'type' => 'IncentiveBucketType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'CartTotalAmt' =>
array (
'required' => false,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'RequestDetails' =>
array (
'required' => false,
'type' => 'IncentiveRequestDetailsType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getExternalBuyerId()
{
return $this->ExternalBuyerId;
}
function setExternalBuyerId($ExternalBuyerId, $charset = 'iso-8859-1')
{
$this->ExternalBuyerId = $ExternalBuyerId;
$this->_elements['ExternalBuyerId']['charset'] = $charset;
}
function getIncentiveCodes()
{
return $this->IncentiveCodes;
}
function setIncentiveCodes($IncentiveCodes, $charset = 'iso-8859-1')
{
$this->IncentiveCodes = $IncentiveCodes;
$this->_elements['IncentiveCodes']['charset'] = $charset;
}
function getApplyIndication()
{
return $this->ApplyIndication;
}
function setApplyIndication($ApplyIndication, $charset = 'iso-8859-1')
{
$this->ApplyIndication = $ApplyIndication;
$this->_elements['ApplyIndication']['charset'] = $charset;
}
function getBuckets()
{
return $this->Buckets;
}
function setBuckets($Buckets, $charset = 'iso-8859-1')
{
$this->Buckets = $Buckets;
$this->_elements['Buckets']['charset'] = $charset;
}
function getCartTotalAmt()
{
return $this->CartTotalAmt;
}
function setCartTotalAmt($CartTotalAmt, $charset = 'iso-8859-1')
{
$this->CartTotalAmt = $CartTotalAmt;
$this->_elements['CartTotalAmt']['charset'] = $charset;
}
function getRequestDetails()
{
return $this->RequestDetails;
}
function setRequestDetails($RequestDetails, $charset = 'iso-8859-1')
{
$this->RequestDetails = $RequestDetails;
$this->_elements['RequestDetails']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/GetIncentiveEvaluationRequestDetailsType.php | PHP | asf20 | 3,670 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* ActivationDetailsType
*
* @package PayPal
*/
class ActivationDetailsType extends XSDSimpleType
{
var $InitialAmount;
var $FailedInitialAmountAction;
function ActivationDetailsType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'InitialAmount' =>
array (
'required' => true,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'FailedInitialAmountAction' =>
array (
'required' => false,
'type' => 'FailedPaymentActionType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getInitialAmount()
{
return $this->InitialAmount;
}
function setInitialAmount($InitialAmount, $charset = 'iso-8859-1')
{
$this->InitialAmount = $InitialAmount;
$this->_elements['InitialAmount']['charset'] = $charset;
}
function getFailedInitialAmountAction()
{
return $this->FailedInitialAmountAction;
}
function setFailedInitialAmountAction($FailedInitialAmountAction, $charset = 'iso-8859-1')
{
$this->FailedInitialAmountAction = $FailedInitialAmountAction;
$this->_elements['FailedInitialAmountAction']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/ActivationDetailsType.php | PHP | asf20 | 1,638 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* BillingPeriodDetailsType
*
* @package PayPal
*/
class BillingPeriodDetailsType extends XSDSimpleType
{
/**
* Unit of meausre for billing cycle
*/
var $BillingPeriod;
/**
* Number of BillingPeriod that make up one billing cycle
*/
var $BillingFrequency;
/**
* Total billing cycles in this portion of the schedule
*/
var $TotalBillingCycles;
/**
* Amount to charge
*/
var $Amount;
/**
* Additional shipping amount to charge
*/
var $ShippingAmount;
/**
* Additional tax amount to charge
*/
var $TaxAmount;
function BillingPeriodDetailsType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'BillingPeriod' =>
array (
'required' => true,
'type' => 'BillingPeriodType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'BillingFrequency' =>
array (
'required' => true,
'type' => 'int',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'TotalBillingCycles' =>
array (
'required' => false,
'type' => 'int',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Amount' =>
array (
'required' => true,
'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',
),
));
}
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/BillingPeriodDetailsType.php | PHP | asf20 | 3,943 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractRequestType.php';
/**
* DoVoidRequestType
*
* @package PayPal
*/
class DoVoidRequestType extends AbstractRequestType
{
/**
* The value of the original authorization identification number returned by a
* PayPal product.
*/
var $AuthorizationID;
/**
* An informational note about this settlement that is displayed to the payer in
* email and in transaction history.
*/
var $Note;
function DoVoidRequestType()
{
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',
),
'Note' =>
array (
'required' => false,
'type' => 'string',
'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 getNote()
{
return $this->Note;
}
function setNote($Note, $charset = 'iso-8859-1')
{
$this->Note = $Note;
$this->_elements['Note']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/DoVoidRequestType.php | PHP | asf20 | 1,684 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractRequestType.php';
/**
* GetAuthDetailsRequestType
*
* @package PayPal
*/
class GetAuthDetailsRequestType extends AbstractRequestType
{
/**
* A timestamped token, the value of which was returned by SetAuthFlowParam
* Response.
*/
var $Token;
function GetAuthDetailsRequestType()
{
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/GetAuthDetailsRequestType.php | PHP | asf20 | 1,055 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* TransactionStatusType
*
* @package PayPal
*/
class TransactionStatusType extends XSDSimpleType
{
/**
* Indicates the success or failure of an eBay Online Payment for the transaction.
* If the payment failed, the value returned indicates the reason for the failure.
* Possible values: 0 = No payment failure. 3 = Buyer's eCheck bounced. 4 = Buyer's
* credit card failed. 5 = Buyer failed payment as reported by seller. 7 = Payment
* from buyer to seller is in PayPal process, but has not yet been completed.
*/
var $eBayPaymentStatus;
/**
* Indicates the current state of the checkout process for the transaction.
* Possible values: 0 = Checkout complete. 1 = Checkout incomplete. No details
* specified. 2 = Buyer requests total. 3 = Seller responded to buyer's request.
*/
var $IncompleteState;
/**
* Indicates last date and time checkout status or incomplete state was updated (in
* GMT).
*/
var $LastTimeModified;
/**
* Payment method used by the buyer. (See BuyerPaymentCodeList/Type).
*/
var $PaymentMethodUsed;
/**
* Indicates whether the transaction process complete or incomplete. Possible
* values: 1 = Incomplete 2 = Complete
*/
var $StatusIs;
function TransactionStatusType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'eBayPaymentStatus' =>
array (
'required' => false,
'type' => 'int',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'IncompleteState' =>
array (
'required' => false,
'type' => 'int',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'LastTimeModified' =>
array (
'required' => false,
'type' => 'dateTime',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'PaymentMethodUsed' =>
array (
'required' => false,
'type' => 'BuyerPaymentMethodCodeType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'StatusIs' =>
array (
'required' => false,
'type' => 'int',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function geteBayPaymentStatus()
{
return $this->eBayPaymentStatus;
}
function seteBayPaymentStatus($eBayPaymentStatus, $charset = 'iso-8859-1')
{
$this->eBayPaymentStatus = $eBayPaymentStatus;
$this->_elements['eBayPaymentStatus']['charset'] = $charset;
}
function getIncompleteState()
{
return $this->IncompleteState;
}
function setIncompleteState($IncompleteState, $charset = 'iso-8859-1')
{
$this->IncompleteState = $IncompleteState;
$this->_elements['IncompleteState']['charset'] = $charset;
}
function getLastTimeModified()
{
return $this->LastTimeModified;
}
function setLastTimeModified($LastTimeModified, $charset = 'iso-8859-1')
{
$this->LastTimeModified = $LastTimeModified;
$this->_elements['LastTimeModified']['charset'] = $charset;
}
function getPaymentMethodUsed()
{
return $this->PaymentMethodUsed;
}
function setPaymentMethodUsed($PaymentMethodUsed, $charset = 'iso-8859-1')
{
$this->PaymentMethodUsed = $PaymentMethodUsed;
$this->_elements['PaymentMethodUsed']['charset'] = $charset;
}
function getStatusIs()
{
return $this->StatusIs;
}
function setStatusIs($StatusIs, $charset = 'iso-8859-1')
{
$this->StatusIs = $StatusIs;
$this->_elements['StatusIs']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/TransactionStatusType.php | PHP | asf20 | 4,188 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* EnterBoardingRequestDetailsType
*
* @package PayPal
*/
class EnterBoardingRequestDetailsType extends XSDSimpleType
{
/**
* Onboarding program code given to you by PayPal.
*/
var $ProgramCode;
/**
* A list of comma-separated values that indicate the PayPal products you are
* implementing for this merchant:
*/
var $ProductList;
/**
* Any custom information you want to store for this partner
*/
var $PartnerCustom;
/**
* The URL for the logo displayed on the PayPal Partner Welcome Page.
*/
var $ImageUrl;
/**
* Marketing category tha configures the graphic displayed n the PayPal Partner
* Welcome page.
*/
var $MarketingCategory;
/**
* Information about the merchant ’s business
*/
var $BusinessInfo;
/**
* Information about the merchant (the business owner)
*/
var $OwnerInfo;
/**
* Information about the merchant's bank account
*/
var $BankAccount;
function EnterBoardingRequestDetailsType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'ProgramCode' =>
array (
'required' => true,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ProductList' =>
array (
'required' => true,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'PartnerCustom' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ImageUrl' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'MarketingCategory' =>
array (
'required' => false,
'type' => 'MarketingCategoryType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'BusinessInfo' =>
array (
'required' => false,
'type' => 'BusinessInfoType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'OwnerInfo' =>
array (
'required' => false,
'type' => 'BusinessOwnerInfoType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'BankAccount' =>
array (
'required' => false,
'type' => 'BankAccountDetailsType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getProgramCode()
{
return $this->ProgramCode;
}
function setProgramCode($ProgramCode, $charset = 'iso-8859-1')
{
$this->ProgramCode = $ProgramCode;
$this->_elements['ProgramCode']['charset'] = $charset;
}
function getProductList()
{
return $this->ProductList;
}
function setProductList($ProductList, $charset = 'iso-8859-1')
{
$this->ProductList = $ProductList;
$this->_elements['ProductList']['charset'] = $charset;
}
function getPartnerCustom()
{
return $this->PartnerCustom;
}
function setPartnerCustom($PartnerCustom, $charset = 'iso-8859-1')
{
$this->PartnerCustom = $PartnerCustom;
$this->_elements['PartnerCustom']['charset'] = $charset;
}
function getImageUrl()
{
return $this->ImageUrl;
}
function setImageUrl($ImageUrl, $charset = 'iso-8859-1')
{
$this->ImageUrl = $ImageUrl;
$this->_elements['ImageUrl']['charset'] = $charset;
}
function getMarketingCategory()
{
return $this->MarketingCategory;
}
function setMarketingCategory($MarketingCategory, $charset = 'iso-8859-1')
{
$this->MarketingCategory = $MarketingCategory;
$this->_elements['MarketingCategory']['charset'] = $charset;
}
function getBusinessInfo()
{
return $this->BusinessInfo;
}
function setBusinessInfo($BusinessInfo, $charset = 'iso-8859-1')
{
$this->BusinessInfo = $BusinessInfo;
$this->_elements['BusinessInfo']['charset'] = $charset;
}
function getOwnerInfo()
{
return $this->OwnerInfo;
}
function setOwnerInfo($OwnerInfo, $charset = 'iso-8859-1')
{
$this->OwnerInfo = $OwnerInfo;
$this->_elements['OwnerInfo']['charset'] = $charset;
}
function getBankAccount()
{
return $this->BankAccount;
}
function setBankAccount($BankAccount, $charset = 'iso-8859-1')
{
$this->BankAccount = $BankAccount;
$this->_elements['BankAccount']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/EnterBoardingRequestDetailsType.php | PHP | asf20 | 5,271 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* SiteHostedPictureType
*
* @package PayPal
*/
class SiteHostedPictureType extends XSDSimpleType
{
/**
* URLs for item picture that are stored/hosted at eBay site.
*/
var $PictureURL;
/**
* Type of display for photos used for PhotoHosting slide show. Here are display
* options: None = No special Picture Services features. SlideShow = Slideshow of
* multiple pictures. SuperSize = Super-size format picture. PicturePack = Picture
* Pack. Default is 'None'.
*/
var $PhotoDisplay;
/**
* This will be either "Featured" or "Gallery".
*/
var $GalleryType;
function SiteHostedPictureType()
{
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',
),
'PhotoDisplay' =>
array (
'required' => false,
'type' => 'PhotoDisplayCodeType',
'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 getPhotoDisplay()
{
return $this->PhotoDisplay;
}
function setPhotoDisplay($PhotoDisplay, $charset = 'iso-8859-1')
{
$this->PhotoDisplay = $PhotoDisplay;
$this->_elements['PhotoDisplay']['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/SiteHostedPictureType.php | PHP | asf20 | 2,447 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* DoNonReferencedCreditRequestDetailsType
*
* @package PayPal
*/
class DoNonReferencedCreditRequestDetailsType extends XSDSimpleType
{
var $Amount;
var $NetAmount;
var $TaxAmount;
var $ShippingAmount;
var $CreditCard;
var $ReceiverEmail;
var $Comment;
function DoNonReferencedCreditRequestDetailsType()
{
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',
),
'NetAmount' =>
array (
'required' => false,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'TaxAmount' =>
array (
'required' => false,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ShippingAmount' =>
array (
'required' => false,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'CreditCard' =>
array (
'required' => true,
'type' => 'CreditCardDetailsType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ReceiverEmail' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Comment' =>
array (
'required' => false,
'type' => 'string',
'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 getNetAmount()
{
return $this->NetAmount;
}
function setNetAmount($NetAmount, $charset = 'iso-8859-1')
{
$this->NetAmount = $NetAmount;
$this->_elements['NetAmount']['charset'] = $charset;
}
function getTaxAmount()
{
return $this->TaxAmount;
}
function setTaxAmount($TaxAmount, $charset = 'iso-8859-1')
{
$this->TaxAmount = $TaxAmount;
$this->_elements['TaxAmount']['charset'] = $charset;
}
function getShippingAmount()
{
return $this->ShippingAmount;
}
function setShippingAmount($ShippingAmount, $charset = 'iso-8859-1')
{
$this->ShippingAmount = $ShippingAmount;
$this->_elements['ShippingAmount']['charset'] = $charset;
}
function getCreditCard()
{
return $this->CreditCard;
}
function setCreditCard($CreditCard, $charset = 'iso-8859-1')
{
$this->CreditCard = $CreditCard;
$this->_elements['CreditCard']['charset'] = $charset;
}
function getReceiverEmail()
{
return $this->ReceiverEmail;
}
function setReceiverEmail($ReceiverEmail, $charset = 'iso-8859-1')
{
$this->ReceiverEmail = $ReceiverEmail;
$this->_elements['ReceiverEmail']['charset'] = $charset;
}
function getComment()
{
return $this->Comment;
}
function setComment($Comment, $charset = 'iso-8859-1')
{
$this->Comment = $Comment;
$this->_elements['Comment']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/DoNonReferencedCreditRequestDetailsType.php | PHP | asf20 | 3,966 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* PaginationType
*
* @package PayPal
*/
class PaginationType extends XSDSimpleType
{
var $EntriesPerPage;
var $PageNumber;
function PaginationType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'EntriesPerPage' =>
array (
'required' => false,
'type' => 'int',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'PageNumber' =>
array (
'required' => false,
'type' => 'int',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getEntriesPerPage()
{
return $this->EntriesPerPage;
}
function setEntriesPerPage($EntriesPerPage, $charset = 'iso-8859-1')
{
$this->EntriesPerPage = $EntriesPerPage;
$this->_elements['EntriesPerPage']['charset'] = $charset;
}
function getPageNumber()
{
return $this->PageNumber;
}
function setPageNumber($PageNumber, $charset = 'iso-8859-1')
{
$this->PageNumber = $PageNumber;
$this->_elements['PageNumber']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/PaginationType.php | PHP | asf20 | 1,460 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* AddressType
*
* @package PayPal
*/
class AddressType extends XSDSimpleType
{
/**
* Person's name associated with this address.
*/
var $Name;
/**
* First street address.
*/
var $Street1;
/**
* Second street address.
*/
var $Street2;
/**
* Name of city.
*/
var $CityName;
/**
* State or province.
*/
var $StateOrProvince;
/**
* ISO 3166 standard country code
*/
var $Country;
/**
* IMPORTANT: Do not set this element for SetExpressCheckout,
* DoExpressCheckoutPayment, DoDirectPayment, CreateRecurringPaymentsProfile or
* UpdateRecurringPaymentsProfile.
*/
var $CountryName;
/**
* Telephone number associated with this address
*/
var $Phone;
var $PostalCode;
/**
* IMPORTANT: Do not set this element for SetExpressCheckout,
* DoExpressCheckoutPayment, DoDirectPayment, CreateRecurringPaymentsProfile, or
* UpdateRecurringPaymentsProfile.
*/
var $AddressID;
/**
* IMPORTANT: Do not set this element for SetExpressCheckout,
* DoExpressCheckoutPayment, DoDirectPayment, CreateRecurringPaymentsProfile or
* UpdateRecurringPaymentsProfile.
*/
var $AddressOwner;
/**
* IMPORTANT: Do not set this element for SetExpressCheckout,
* DoExpressCheckoutPayment, DoDirectPayment, CreateRecurringPaymentsProfile or
* UpdateRecurringPaymentsProfile.
*/
var $ExternalAddressID;
/**
* IMPORTANT: Do not set this element for SetExpressCheckout,
* DoExpressCheckoutPayment, DoDirectPayment, CreateRecurringPaymentsProfile or
* UpdateRecurringPaymentsProfile.
*/
var $InternationalName;
/**
* IMPORTANT: Do not set this element for SetExpressCheckout,
* DoExpressCheckoutPayment, DoDirectPayment, CreateRecurringPaymentsProfile or
* UpdateRecurringPaymentsProfile.
*/
var $InternationalStateAndCity;
/**
* IMPORTANT: Do not set this element for SetExpressCheckout,
* DoExpressCheckoutPayment, DoDirectPayment, CreateRecurringPaymentsProfile or
* UpdateRecurringPaymentsProfile.
*/
var $InternationalStreet;
/**
* Status of the address on file with PayPal.
*/
var $AddressStatus;
function AddressType()
{
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',
),
'Street1' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Street2' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'CityName' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'StateOrProvince' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Country' =>
array (
'required' => false,
'type' => NULL,
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'CountryName' =>
array (
'required' => false,
'type' => NULL,
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Phone' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'PostalCode' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'AddressID' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'AddressOwner' =>
array (
'required' => false,
'type' => 'AddressOwnerCodeType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ExternalAddressID' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'InternationalName' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'InternationalStateAndCity' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'InternationalStreet' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'AddressStatus' =>
array (
'required' => false,
'type' => 'AddressStatusCodeType',
'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 getStreet1()
{
return $this->Street1;
}
function setStreet1($Street1, $charset = 'iso-8859-1')
{
$this->Street1 = $Street1;
$this->_elements['Street1']['charset'] = $charset;
}
function getStreet2()
{
return $this->Street2;
}
function setStreet2($Street2, $charset = 'iso-8859-1')
{
$this->Street2 = $Street2;
$this->_elements['Street2']['charset'] = $charset;
}
function getCityName()
{
return $this->CityName;
}
function setCityName($CityName, $charset = 'iso-8859-1')
{
$this->CityName = $CityName;
$this->_elements['CityName']['charset'] = $charset;
}
function getStateOrProvince()
{
return $this->StateOrProvince;
}
function setStateOrProvince($StateOrProvince, $charset = 'iso-8859-1')
{
$this->StateOrProvince = $StateOrProvince;
$this->_elements['StateOrProvince']['charset'] = $charset;
}
function getCountry()
{
return $this->Country;
}
function setCountry($Country, $charset = 'iso-8859-1')
{
$this->Country = $Country;
$this->_elements['Country']['charset'] = $charset;
}
function getCountryName()
{
return $this->CountryName;
}
function setCountryName($CountryName, $charset = 'iso-8859-1')
{
$this->CountryName = $CountryName;
$this->_elements['CountryName']['charset'] = $charset;
}
function getPhone()
{
return $this->Phone;
}
function setPhone($Phone, $charset = 'iso-8859-1')
{
$this->Phone = $Phone;
$this->_elements['Phone']['charset'] = $charset;
}
function getPostalCode()
{
return $this->PostalCode;
}
function setPostalCode($PostalCode, $charset = 'iso-8859-1')
{
$this->PostalCode = $PostalCode;
$this->_elements['PostalCode']['charset'] = $charset;
}
function getAddressID()
{
return $this->AddressID;
}
function setAddressID($AddressID, $charset = 'iso-8859-1')
{
$this->AddressID = $AddressID;
$this->_elements['AddressID']['charset'] = $charset;
}
function getAddressOwner()
{
return $this->AddressOwner;
}
function setAddressOwner($AddressOwner, $charset = 'iso-8859-1')
{
$this->AddressOwner = $AddressOwner;
$this->_elements['AddressOwner']['charset'] = $charset;
}
function getExternalAddressID()
{
return $this->ExternalAddressID;
}
function setExternalAddressID($ExternalAddressID, $charset = 'iso-8859-1')
{
$this->ExternalAddressID = $ExternalAddressID;
$this->_elements['ExternalAddressID']['charset'] = $charset;
}
function getInternationalName()
{
return $this->InternationalName;
}
function setInternationalName($InternationalName, $charset = 'iso-8859-1')
{
$this->InternationalName = $InternationalName;
$this->_elements['InternationalName']['charset'] = $charset;
}
function getInternationalStateAndCity()
{
return $this->InternationalStateAndCity;
}
function setInternationalStateAndCity($InternationalStateAndCity, $charset = 'iso-8859-1')
{
$this->InternationalStateAndCity = $InternationalStateAndCity;
$this->_elements['InternationalStateAndCity']['charset'] = $charset;
}
function getInternationalStreet()
{
return $this->InternationalStreet;
}
function setInternationalStreet($InternationalStreet, $charset = 'iso-8859-1')
{
$this->InternationalStreet = $InternationalStreet;
$this->_elements['InternationalStreet']['charset'] = $charset;
}
function getAddressStatus()
{
return $this->AddressStatus;
}
function setAddressStatus($AddressStatus, $charset = 'iso-8859-1')
{
$this->AddressStatus = $AddressStatus;
$this->_elements['AddressStatus']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/AddressType.php | PHP | asf20 | 10,342 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* PaymentRequestInfoType
*
* Contains payment request information for each bucket in the cart.
*
* @package PayPal
*/
class PaymentRequestInfoType extends XSDSimpleType
{
/**
* Contains the transaction id of the bucket.
*/
var $TransactionId;
/**
* Contains the bucket id.
*/
var $PaymentRequestID;
/**
* Contains the error details.
*/
var $PaymentError;
function PaymentRequestInfoType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'TransactionId' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'PaymentRequestID' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'PaymentError' =>
array (
'required' => false,
'type' => 'ErrorType',
'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 getPaymentRequestID()
{
return $this->PaymentRequestID;
}
function setPaymentRequestID($PaymentRequestID, $charset = 'iso-8859-1')
{
$this->PaymentRequestID = $PaymentRequestID;
$this->_elements['PaymentRequestID']['charset'] = $charset;
}
function getPaymentError()
{
return $this->PaymentError;
}
function setPaymentError($PaymentError, $charset = 'iso-8859-1')
{
$this->PaymentError = $PaymentError;
$this->_elements['PaymentError']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/PaymentRequestInfoType.php | PHP | asf20 | 2,279 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractRequestType.php';
/**
* CompleteRecoupRequestType
*
* @package PayPal
*/
class CompleteRecoupRequestType extends AbstractRequestType
{
var $EnhancedCompleteRecoupRequestDetails;
function CompleteRecoupRequestType()
{
parent::AbstractRequestType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'EnhancedCompleteRecoupRequestDetails' =>
array (
'required' => true,
'type' => 'EnhancedCompleteRecoupRequestDetailsType',
'namespace' => 'urn:ebay:apis:EnhancedDataTypes',
),
));
}
function getEnhancedCompleteRecoupRequestDetails()
{
return $this->EnhancedCompleteRecoupRequestDetails;
}
function setEnhancedCompleteRecoupRequestDetails($EnhancedCompleteRecoupRequestDetails, $charset = 'iso-8859-1')
{
$this->EnhancedCompleteRecoupRequestDetails = $EnhancedCompleteRecoupRequestDetails;
$this->_elements['EnhancedCompleteRecoupRequestDetails']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/CompleteRecoupRequestType.php | PHP | asf20 | 1,253 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractRequestType.php';
/**
* CreateBillingAgreementRequestType
*
* @package PayPal
*/
class CreateBillingAgreementRequestType extends AbstractRequestType
{
var $Token;
function CreateBillingAgreementRequestType()
{
parent::AbstractRequestType();
$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/CreateBillingAgreementRequestType.php | PHP | asf20 | 973 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* UserSelectedOptionType
*
* Information on user selected options
*
* @package PayPal
*/
class UserSelectedOptionType extends XSDSimpleType
{
var $ShippingCalculationMode;
var $InsuranceOptionSelected;
var $ShippingOptionIsDefault;
var $ShippingOptionAmount;
var $ShippingOptionName;
function UserSelectedOptionType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'ShippingCalculationMode' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'InsuranceOptionSelected' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'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 getShippingCalculationMode()
{
return $this->ShippingCalculationMode;
}
function setShippingCalculationMode($ShippingCalculationMode, $charset = 'iso-8859-1')
{
$this->ShippingCalculationMode = $ShippingCalculationMode;
$this->_elements['ShippingCalculationMode']['charset'] = $charset;
}
function getInsuranceOptionSelected()
{
return $this->InsuranceOptionSelected;
}
function setInsuranceOptionSelected($InsuranceOptionSelected, $charset = 'iso-8859-1')
{
$this->InsuranceOptionSelected = $InsuranceOptionSelected;
$this->_elements['InsuranceOptionSelected']['charset'] = $charset;
}
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/userselectedoptiontype.php | PHP | asf20 | 3,478 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractRequestType.php';
/**
* GetPalDetailsRequestType
*
* @package PayPal
*/
class GetPalDetailsRequestType extends AbstractRequestType
{
function GetPalDetailsRequestType()
{
parent::AbstractRequestType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/getpaldetailsrequesttype.php | PHP | asf20 | 404 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractResponseType.php';
/**
* BMUpdateButtonResponseType
*
* @package PayPal
*/
class BMUpdateButtonResponseType extends AbstractResponseType
{
var $Website;
var $Email;
var $Mobile;
var $HostedButtonID;
function BMUpdateButtonResponseType()
{
parent::AbstractResponseType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'Website' =>
array (
'required' => true,
'type' => 'string',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'Email' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'Mobile' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'HostedButtonID' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
));
}
function getWebsite()
{
return $this->Website;
}
function setWebsite($Website, $charset = 'iso-8859-1')
{
$this->Website = $Website;
$this->_elements['Website']['charset'] = $charset;
}
function getEmail()
{
return $this->Email;
}
function setEmail($Email, $charset = 'iso-8859-1')
{
$this->Email = $Email;
$this->_elements['Email']['charset'] = $charset;
}
function getMobile()
{
return $this->Mobile;
}
function setMobile($Mobile, $charset = 'iso-8859-1')
{
$this->Mobile = $Mobile;
$this->_elements['Mobile']['charset'] = $charset;
}
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/bmupdatebuttonresponsetype.php | PHP | asf20 | 2,341 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* StorefrontType
*
* Contains the eBay Stores-specific item attributes department number and store
* location. StorefrontInfo is shown for any item that belongs to an eBay Store
* owner, regardless of whether it is fixed price or auction type. Returned as null
* for international fixed price items.
*
* @package PayPal
*/
class StorefrontType extends XSDSimpleType
{
/**
* assumed this type is specific to add/get/revise item, then each StorefrontType
* nust have category id, for store details this node makes no sense to use
*/
var $StoreCategoryID;
/**
* in case or revise item for example - to change store category (department) you
* do not need to change store URL, so it will notbe in request
*/
var $StoreURL;
function StorefrontType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'StoreCategoryID' =>
array (
'required' => true,
'type' => NULL,
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'StoreURL' =>
array (
'required' => false,
'type' => NULL,
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getStoreCategoryID()
{
return $this->StoreCategoryID;
}
function setStoreCategoryID($StoreCategoryID, $charset = 'iso-8859-1')
{
$this->StoreCategoryID = $StoreCategoryID;
$this->_elements['StoreCategoryID']['charset'] = $charset;
}
function getStoreURL()
{
return $this->StoreURL;
}
function setStoreURL($StoreURL, $charset = 'iso-8859-1')
{
$this->StoreURL = $StoreURL;
$this->_elements['StoreURL']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/StorefrontType.php | PHP | asf20 | 2,089 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractResponseType.php';
/**
* GetExpressCheckoutDetailsResponseType
*
* @package PayPal
*/
class GetExpressCheckoutDetailsResponseType extends AbstractResponseType
{
var $GetExpressCheckoutDetailsResponseDetails;
function GetExpressCheckoutDetailsResponseType()
{
parent::AbstractResponseType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'GetExpressCheckoutDetailsResponseDetails' =>
array (
'required' => true,
'type' => 'GetExpressCheckoutDetailsResponseDetailsType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getGetExpressCheckoutDetailsResponseDetails()
{
return $this->GetExpressCheckoutDetailsResponseDetails;
}
function setGetExpressCheckoutDetailsResponseDetails($GetExpressCheckoutDetailsResponseDetails, $charset = 'iso-8859-1')
{
$this->GetExpressCheckoutDetailsResponseDetails = $GetExpressCheckoutDetailsResponseDetails;
$this->_elements['GetExpressCheckoutDetailsResponseDetails']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/GetExpressCheckoutDetailsResponseType.php | PHP | asf20 | 1,332 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* PaymentMeansType
*
* @package PayPal
*/
class PaymentMeansType extends XSDSimpleType
{
var $TypeCodeID;
function PaymentMeansType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'TypeCodeID' =>
array (
'required' => true,
'type' => 'SellerPaymentMethodCodeType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getTypeCodeID()
{
return $this->TypeCodeID;
}
function setTypeCodeID($TypeCodeID, $charset = 'iso-8859-1')
{
$this->TypeCodeID = $TypeCodeID;
$this->_elements['TypeCodeID']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/PaymentMeansType.php | PHP | asf20 | 970 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractResponseType.php';
/**
* TransactionSearchResponseType
*
* @package PayPal
*/
class TransactionSearchResponseType extends AbstractResponseType
{
var $PaymentTransactions;
function TransactionSearchResponseType()
{
parent::AbstractResponseType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'PaymentTransactions' =>
array (
'required' => false,
'type' => 'PaymentTransactionSearchResultType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getPaymentTransactions()
{
return $this->PaymentTransactions;
}
function setPaymentTransactions($PaymentTransactions, $charset = 'iso-8859-1')
{
$this->PaymentTransactions = $PaymentTransactions;
$this->_elements['PaymentTransactions']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/TransactionSearchResponseType.php | PHP | asf20 | 1,110 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* MassPayRequestItemType
*
* MassPayRequestItemType
*
* @package PayPal
*/
class MassPayRequestItemType extends XSDSimpleType
{
/**
* Email address of recipient.
*/
var $ReceiverEmail;
/**
* Phone number of recipient.
*/
var $ReceiverPhone;
/**
* Unique PayPal customer account number. This value corresponds to the value of
* PayerID returned by GetTransactionDetails.
*/
var $ReceiverID;
/**
* Payment amount. You must set the currencyID attribute to one of the
* three-character currency codes for any of the supported PayPal currencies.
*/
var $Amount;
/**
* Transaction-specific identification number for tracking in an accounting system.
*/
var $UniqueId;
/**
* Custom note for each recipient.
*/
var $Note;
function MassPayRequestItemType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'ReceiverEmail' =>
array (
'required' => false,
'type' => 'EmailAddressType',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'ReceiverPhone' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'ReceiverID' =>
array (
'required' => false,
'type' => 'UserIDType',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'Amount' =>
array (
'required' => true,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'UniqueId' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'Note' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
));
}
function getReceiverEmail()
{
return $this->ReceiverEmail;
}
function setReceiverEmail($ReceiverEmail, $charset = 'iso-8859-1')
{
$this->ReceiverEmail = $ReceiverEmail;
$this->_elements['ReceiverEmail']['charset'] = $charset;
}
function getReceiverPhone()
{
return $this->ReceiverPhone;
}
function setReceiverPhone($ReceiverPhone, $charset = 'iso-8859-1')
{
$this->ReceiverPhone = $ReceiverPhone;
$this->_elements['ReceiverPhone']['charset'] = $charset;
}
function getReceiverID()
{
return $this->ReceiverID;
}
function setReceiverID($ReceiverID, $charset = 'iso-8859-1')
{
$this->ReceiverID = $ReceiverID;
$this->_elements['ReceiverID']['charset'] = $charset;
}
function getAmount()
{
return $this->Amount;
}
function setAmount($Amount, $charset = 'iso-8859-1')
{
$this->Amount = $Amount;
$this->_elements['Amount']['charset'] = $charset;
}
function getUniqueId()
{
return $this->UniqueId;
}
function setUniqueId($UniqueId, $charset = 'iso-8859-1')
{
$this->UniqueId = $UniqueId;
$this->_elements['UniqueId']['charset'] = $charset;
}
function getNote()
{
return $this->Note;
}
function setNote($Note, $charset = 'iso-8859-1')
{
$this->Note = $Note;
$this->_elements['Note']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/MassPayRequestItemType.php | PHP | asf20 | 3,917 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* GetBoardingDetailsResponseDetailsType
*
* @package PayPal
*/
class GetBoardingDetailsResponseDetailsType extends XSDSimpleType
{
/**
* Status of merchant's onboarding process:
*/
var $Status;
/**
* Date the boarding process started
*/
var $StartDate;
/**
* Date the merchant ’s status or progress was last updated
*/
var $LastUpdated;
/**
* Reason for merchant ’s cancellation of sign-up.
*/
var $Reason;
var $ProgramName;
var $ProgramCode;
var $CampaignID;
/**
* Indicates if there is a limitation on the amount of money the business can
* withdraw from PayPal
*/
var $UserWithdrawalLimit;
/**
* Custom information you set on the EnterBoarding API call
*/
var $PartnerCustom;
/**
* Details about the owner of the account
*/
var $AccountOwner;
/**
* Merchant ’s PayPal API credentials
*/
var $Credentials;
/**
* The APIs that this merchant has granted the business partner permission to call
* on his behalf.
*/
var $ConfigureAPIs;
/**
* Primary email verification status. Confirmed, Unconfirmed
*/
var $EmailVerificationStatus;
/**
* Gives VettingStatus - Pending, Cancelled, Approved, UnderReview
*/
var $VettingStatus;
/**
* Gives BankAccountVerificationStatus - Added, Confirmed
*/
var $BankAccountVerificationStatus;
function GetBoardingDetailsResponseDetailsType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'Status' =>
array (
'required' => true,
'type' => 'BoardingStatusType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'StartDate' =>
array (
'required' => true,
'type' => 'dateTime',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'LastUpdated' =>
array (
'required' => true,
'type' => 'dateTime',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Reason' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ProgramName' =>
array (
'required' => true,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ProgramCode' =>
array (
'required' => true,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'CampaignID' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'UserWithdrawalLimit' =>
array (
'required' => false,
'type' => 'UserWithdrawalLimitTypeType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'PartnerCustom' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'AccountOwner' =>
array (
'required' => false,
'type' => 'PayerInfoType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Credentials' =>
array (
'required' => false,
'type' => 'APICredentialsType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ConfigureAPIs' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'EmailVerificationStatus' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'VettingStatus' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'BankAccountVerificationStatus' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getStatus()
{
return $this->Status;
}
function setStatus($Status, $charset = 'iso-8859-1')
{
$this->Status = $Status;
$this->_elements['Status']['charset'] = $charset;
}
function getStartDate()
{
return $this->StartDate;
}
function setStartDate($StartDate, $charset = 'iso-8859-1')
{
$this->StartDate = $StartDate;
$this->_elements['StartDate']['charset'] = $charset;
}
function getLastUpdated()
{
return $this->LastUpdated;
}
function setLastUpdated($LastUpdated, $charset = 'iso-8859-1')
{
$this->LastUpdated = $LastUpdated;
$this->_elements['LastUpdated']['charset'] = $charset;
}
function getReason()
{
return $this->Reason;
}
function setReason($Reason, $charset = 'iso-8859-1')
{
$this->Reason = $Reason;
$this->_elements['Reason']['charset'] = $charset;
}
function getProgramName()
{
return $this->ProgramName;
}
function setProgramName($ProgramName, $charset = 'iso-8859-1')
{
$this->ProgramName = $ProgramName;
$this->_elements['ProgramName']['charset'] = $charset;
}
function getProgramCode()
{
return $this->ProgramCode;
}
function setProgramCode($ProgramCode, $charset = 'iso-8859-1')
{
$this->ProgramCode = $ProgramCode;
$this->_elements['ProgramCode']['charset'] = $charset;
}
function getCampaignID()
{
return $this->CampaignID;
}
function setCampaignID($CampaignID, $charset = 'iso-8859-1')
{
$this->CampaignID = $CampaignID;
$this->_elements['CampaignID']['charset'] = $charset;
}
function getUserWithdrawalLimit()
{
return $this->UserWithdrawalLimit;
}
function setUserWithdrawalLimit($UserWithdrawalLimit, $charset = 'iso-8859-1')
{
$this->UserWithdrawalLimit = $UserWithdrawalLimit;
$this->_elements['UserWithdrawalLimit']['charset'] = $charset;
}
function getPartnerCustom()
{
return $this->PartnerCustom;
}
function setPartnerCustom($PartnerCustom, $charset = 'iso-8859-1')
{
$this->PartnerCustom = $PartnerCustom;
$this->_elements['PartnerCustom']['charset'] = $charset;
}
function getAccountOwner()
{
return $this->AccountOwner;
}
function setAccountOwner($AccountOwner, $charset = 'iso-8859-1')
{
$this->AccountOwner = $AccountOwner;
$this->_elements['AccountOwner']['charset'] = $charset;
}
function getCredentials()
{
return $this->Credentials;
}
function setCredentials($Credentials, $charset = 'iso-8859-1')
{
$this->Credentials = $Credentials;
$this->_elements['Credentials']['charset'] = $charset;
}
function getConfigureAPIs()
{
return $this->ConfigureAPIs;
}
function setConfigureAPIs($ConfigureAPIs, $charset = 'iso-8859-1')
{
$this->ConfigureAPIs = $ConfigureAPIs;
$this->_elements['ConfigureAPIs']['charset'] = $charset;
}
function getEmailVerificationStatus()
{
return $this->EmailVerificationStatus;
}
function setEmailVerificationStatus($EmailVerificationStatus, $charset = 'iso-8859-1')
{
$this->EmailVerificationStatus = $EmailVerificationStatus;
$this->_elements['EmailVerificationStatus']['charset'] = $charset;
}
function getVettingStatus()
{
return $this->VettingStatus;
}
function setVettingStatus($VettingStatus, $charset = 'iso-8859-1')
{
$this->VettingStatus = $VettingStatus;
$this->_elements['VettingStatus']['charset'] = $charset;
}
function getBankAccountVerificationStatus()
{
return $this->BankAccountVerificationStatus;
}
function setBankAccountVerificationStatus($BankAccountVerificationStatus, $charset = 'iso-8859-1')
{
$this->BankAccountVerificationStatus = $BankAccountVerificationStatus;
$this->_elements['BankAccountVerificationStatus']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/GetBoardingDetailsResponseDetailsType.php | PHP | asf20 | 9,266 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractRequestType.php';
/**
* SetMobileCheckoutRequestType
*
* @package PayPal
*/
class SetMobileCheckoutRequestType extends AbstractRequestType
{
var $SetMobileCheckoutRequestDetails;
function SetMobileCheckoutRequestType()
{
parent::AbstractRequestType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'SetMobileCheckoutRequestDetails' =>
array (
'required' => true,
'type' => 'SetMobileCheckoutRequestDetailsType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getSetMobileCheckoutRequestDetails()
{
return $this->SetMobileCheckoutRequestDetails;
}
function setSetMobileCheckoutRequestDetails($SetMobileCheckoutRequestDetails, $charset = 'iso-8859-1')
{
$this->SetMobileCheckoutRequestDetails = $SetMobileCheckoutRequestDetails;
$this->_elements['SetMobileCheckoutRequestDetails']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/SetMobileCheckoutRequestType.php | PHP | asf20 | 1,212 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* PaymentDetailsType
*
* PaymentDetailsType Information about a payment. Used by DCC and Express
* Checkout.
*
* @package PayPal
*/
class PaymentDetailsType extends XSDSimpleType
{
/**
* Total of order, including shipping, handling, and tax. You must set the
* currencyID attribute to one of the three-character currency codes for any of the
* supported PayPal currencies.
*/
var $OrderTotal;
/**
* Sum of cost of all items in this order. You must set the currencyID attribute to
* one of the three-character currency codes for any of the supported PayPal
* currencies.
*/
var $ItemTotal;
/**
* Total shipping costs for this order. You must set the currencyID attribute to
* one of the three-character currency codes for any of the supported PayPal
* currencies.
*/
var $ShippingTotal;
/**
* Total handling costs for this order. You must set the currencyID attribute to
* one of the three-character currency codes for any of the supported PayPal
* currencies.
*/
var $HandlingTotal;
/**
* Sum of tax for all items in this order. You must set the currencyID attribute to
* one of the three-character currency codes for any of the supported PayPal
* currencies.
*/
var $TaxTotal;
/**
* Description of items the customer is purchasing.
*/
var $OrderDescription;
/**
* A free-form field for your own use.
*/
var $Custom;
/**
* Your own invoice or tracking number.
*/
var $InvoiceID;
/**
* An identification code for use by third-party applications to identify
* transactions.
*/
var $ButtonSource;
/**
* Your URL for receiving Instant Payment Notification (IPN) about this
* transaction.
*/
var $NotifyURL;
/**
* Address the order will be shipped to.
*/
var $ShipToAddress;
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;
/**
* Information about the individual purchased items
*/
var $PaymentDetailsItem;
/**
* Total shipping insurance costs for this order.
*/
var $InsuranceTotal;
/**
* Shipping discount for this order, specified as a negative number.
*/
var $ShippingDiscount;
/**
* Information about the Insurance options.
*/
var $InsuranceOptionOffered;
/**
* Allowed payment methods for this transaction.
*/
var $AllowedPaymentMethod;
/**
* Enhanced Data section to accept channel specific data.
*/
var $EnhancedPaymentData;
/**
* Details about the seller.
*/
var $SellerDetails;
/**
* Note to recipient/seller.
*/
var $NoteText;
/**
* PayPal Transaction Id, returned once DoExpressCheckout is completed.
*/
var $TransactionId;
/**
* How you want to obtain payment.
*/
var $PaymentAction;
/**
* Unique identifier and mandatory for the particular payment request in case of
* multiple payment
*/
var $PaymentRequestID;
/**
* URL on Merchant site pertaining to this invoice.
*/
var $OrderURL;
/**
* Soft Descriptor supported for Sale and Auth in DEC only. For Order this will be
* ignored.
*/
var $SoftDescriptor;
function PaymentDetailsType()
{
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',
),
'ItemTotal' =>
array (
'required' => false,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ShippingTotal' =>
array (
'required' => false,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'HandlingTotal' =>
array (
'required' => false,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'TaxTotal' =>
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',
),
'ButtonSource' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'NotifyURL' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ShipToAddress' =>
array (
'required' => false,
'type' => 'AddressType',
'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',
),
'PaymentDetailsItem' =>
array (
'required' => false,
'type' => 'PaymentDetailsItemType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'InsuranceTotal' =>
array (
'required' => false,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ShippingDiscount' =>
array (
'required' => false,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'InsuranceOptionOffered' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'AllowedPaymentMethod' =>
array (
'required' => false,
'type' => 'AllowedPaymentMethodType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'EnhancedPaymentData' =>
array (
'required' => false,
'type' => 'EnhancedPaymentDataType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'SellerDetails' =>
array (
'required' => false,
'type' => 'SellerDetailsType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'NoteText' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'TransactionId' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'PaymentAction' =>
array (
'required' => false,
'type' => 'PaymentActionCodeType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'PaymentRequestID' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'OrderURL' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'SoftDescriptor' =>
array (
'required' => false,
'type' => 'string',
'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 getItemTotal()
{
return $this->ItemTotal;
}
function setItemTotal($ItemTotal, $charset = 'iso-8859-1')
{
$this->ItemTotal = $ItemTotal;
$this->_elements['ItemTotal']['charset'] = $charset;
}
function getShippingTotal()
{
return $this->ShippingTotal;
}
function setShippingTotal($ShippingTotal, $charset = 'iso-8859-1')
{
$this->ShippingTotal = $ShippingTotal;
$this->_elements['ShippingTotal']['charset'] = $charset;
}
function getHandlingTotal()
{
return $this->HandlingTotal;
}
function setHandlingTotal($HandlingTotal, $charset = 'iso-8859-1')
{
$this->HandlingTotal = $HandlingTotal;
$this->_elements['HandlingTotal']['charset'] = $charset;
}
function getTaxTotal()
{
return $this->TaxTotal;
}
function setTaxTotal($TaxTotal, $charset = 'iso-8859-1')
{
$this->TaxTotal = $TaxTotal;
$this->_elements['TaxTotal']['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 getButtonSource()
{
return $this->ButtonSource;
}
function setButtonSource($ButtonSource, $charset = 'iso-8859-1')
{
$this->ButtonSource = $ButtonSource;
$this->_elements['ButtonSource']['charset'] = $charset;
}
function getNotifyURL()
{
return $this->NotifyURL;
}
function setNotifyURL($NotifyURL, $charset = 'iso-8859-1')
{
$this->NotifyURL = $NotifyURL;
$this->_elements['NotifyURL']['charset'] = $charset;
}
function getShipToAddress()
{
return $this->ShipToAddress;
}
function setShipToAddress($ShipToAddress, $charset = 'iso-8859-1')
{
$this->ShipToAddress = $ShipToAddress;
$this->_elements['ShipToAddress']['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 getPaymentDetailsItem()
{
return $this->PaymentDetailsItem;
}
function setPaymentDetailsItem($PaymentDetailsItem, $charset = 'iso-8859-1')
{
$this->PaymentDetailsItem = $PaymentDetailsItem;
$this->_elements['PaymentDetailsItem']['charset'] = $charset;
}
function getInsuranceTotal()
{
return $this->InsuranceTotal;
}
function setInsuranceTotal($InsuranceTotal, $charset = 'iso-8859-1')
{
$this->InsuranceTotal = $InsuranceTotal;
$this->_elements['InsuranceTotal']['charset'] = $charset;
}
function getShippingDiscount()
{
return $this->ShippingDiscount;
}
function setShippingDiscount($ShippingDiscount, $charset = 'iso-8859-1')
{
$this->ShippingDiscount = $ShippingDiscount;
$this->_elements['ShippingDiscount']['charset'] = $charset;
}
function getInsuranceOptionOffered()
{
return $this->InsuranceOptionOffered;
}
function setInsuranceOptionOffered($InsuranceOptionOffered, $charset = 'iso-8859-1')
{
$this->InsuranceOptionOffered = $InsuranceOptionOffered;
$this->_elements['InsuranceOptionOffered']['charset'] = $charset;
}
function getAllowedPaymentMethod()
{
return $this->AllowedPaymentMethod;
}
function setAllowedPaymentMethod($AllowedPaymentMethod, $charset = 'iso-8859-1')
{
$this->AllowedPaymentMethod = $AllowedPaymentMethod;
$this->_elements['AllowedPaymentMethod']['charset'] = $charset;
}
function getEnhancedPaymentData()
{
return $this->EnhancedPaymentData;
}
function setEnhancedPaymentData($EnhancedPaymentData, $charset = 'iso-8859-1')
{
$this->EnhancedPaymentData = $EnhancedPaymentData;
$this->_elements['EnhancedPaymentData']['charset'] = $charset;
}
function getSellerDetails()
{
return $this->SellerDetails;
}
function setSellerDetails($SellerDetails, $charset = 'iso-8859-1')
{
$this->SellerDetails = $SellerDetails;
$this->_elements['SellerDetails']['charset'] = $charset;
}
function getNoteText()
{
return $this->NoteText;
}
function setNoteText($NoteText, $charset = 'iso-8859-1')
{
$this->NoteText = $NoteText;
$this->_elements['NoteText']['charset'] = $charset;
}
function getTransactionId()
{
return $this->TransactionId;
}
function setTransactionId($TransactionId, $charset = 'iso-8859-1')
{
$this->TransactionId = $TransactionId;
$this->_elements['TransactionId']['charset'] = $charset;
}
function getPaymentAction()
{
return $this->PaymentAction;
}
function setPaymentAction($PaymentAction, $charset = 'iso-8859-1')
{
$this->PaymentAction = $PaymentAction;
$this->_elements['PaymentAction']['charset'] = $charset;
}
function getPaymentRequestID()
{
return $this->PaymentRequestID;
}
function setPaymentRequestID($PaymentRequestID, $charset = 'iso-8859-1')
{
$this->PaymentRequestID = $PaymentRequestID;
$this->_elements['PaymentRequestID']['charset'] = $charset;
}
function getOrderURL()
{
return $this->OrderURL;
}
function setOrderURL($OrderURL, $charset = 'iso-8859-1')
{
$this->OrderURL = $OrderURL;
$this->_elements['OrderURL']['charset'] = $charset;
}
function getSoftDescriptor()
{
return $this->SoftDescriptor;
}
function setSoftDescriptor($SoftDescriptor, $charset = 'iso-8859-1')
{
$this->SoftDescriptor = $SoftDescriptor;
$this->_elements['SoftDescriptor']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/PaymentDetailsType.php | PHP | asf20 | 16,813 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractRequestType.php';
/**
* BMUpdateButtonRequestType
*
* @package PayPal
*/
class BMUpdateButtonRequestType extends AbstractRequestType
{
/**
* Hosted Button id of the button to update.
*/
var $HostedButtonID;
/**
* 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 BMUpdateButtonRequestType()
{
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',
),
'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 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 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/bmupdatebuttonrequesttype.php | PHP | asf20 | 7,564 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractResponseType.php';
/**
* BMSetInventoryResponseType
*
* @package PayPal
*/
class BMSetInventoryResponseType extends AbstractResponseType
{
var $TransactionID;
function BMSetInventoryResponseType()
{
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',
),
));
}
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/bmsetinventoryresponsetype.php | PHP | asf20 | 1,009 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* BillingPeriodDetailsType_Update
*
* @package PayPal
*/
class BillingPeriodDetailsType_Update extends XSDSimpleType
{
/**
* Unit of meausre for billing cycle
*/
var $BillingPeriod;
/**
* Number of BillingPeriod that make up one billing cycle
*/
var $BillingFrequency;
/**
* Total billing cycles in this portion of the schedule
*/
var $TotalBillingCycles;
/**
* Amount to charge
*/
var $Amount;
/**
* Additional shipping amount to charge
*/
var $ShippingAmount;
/**
* Additional tax amount to charge
*/
var $TaxAmount;
function BillingPeriodDetailsType_Update()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'BillingPeriod' =>
array (
'required' => false,
'type' => 'BillingPeriodType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'BillingFrequency' =>
array (
'required' => false,
'type' => 'int',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'TotalBillingCycles' =>
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',
),
));
}
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/BillingPeriodDetailsType_Update.php | PHP | asf20 | 3,967 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* AbstractRequestType
*
* Base type definition of request payload that can carry any type of payload
* content with optional versioning information and detail level requirements.
*
* @package PayPal
*/
class AbstractRequestType extends XSDSimpleType
{
/**
* This specifies the required detail level that is needed by a client application
* pertaining to a particular data component (e.g., Item, Transaction, etc.). The
* detail level is specified in the DetailLevelCodeType which has all the
* enumerated values of the detail level for each component.
*/
var $DetailLevel;
/**
* This should be the standard RFC 3066 language identification tag, e.g., en_US.
*/
var $ErrorLanguage;
/**
* This refers to the version of the request payload schema.
*/
var $Version;
function AbstractRequestType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'DetailLevel' =>
array (
'required' => false,
'type' => 'DetailLevelCodeType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ErrorLanguage' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Version' =>
array (
'required' => true,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getDetailLevel()
{
return $this->DetailLevel;
}
function setDetailLevel($DetailLevel, $charset = 'iso-8859-1')
{
$this->DetailLevel = $DetailLevel;
$this->_elements['DetailLevel']['charset'] = $charset;
}
function getErrorLanguage()
{
return $this->ErrorLanguage;
}
function setErrorLanguage($ErrorLanguage, $charset = 'iso-8859-1')
{
$this->ErrorLanguage = $ErrorLanguage;
$this->_elements['ErrorLanguage']['charset'] = $charset;
}
function getVersion()
{
return $this->Version;
}
function setVersion($Version, $charset = 'iso-8859-1')
{
$this->Version = $Version;
$this->_elements['Version']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/AbstractRequestType.php | PHP | asf20 | 2,628 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/DoAuthorizationResponseType.php';
/**
* DoUATPAuthorizationResponseType
*
* @package PayPal
*/
class DoUATPAuthorizationResponseType extends DoAuthorizationResponseType
{
var $UATPDetails;
/**
* Auth Authorization Code.
*/
var $AuthorizationCode;
/**
* Invoice ID. A pass through.
*/
var $InvoiceID;
function DoUATPAuthorizationResponseType()
{
parent::DoAuthorizationResponseType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'UATPDetails' =>
array (
'required' => true,
'type' => 'UATPDetailsType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'AuthorizationCode' =>
array (
'required' => true,
'type' => 'string',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'InvoiceID' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
));
}
function getUATPDetails()
{
return $this->UATPDetails;
}
function setUATPDetails($UATPDetails, $charset = 'iso-8859-1')
{
$this->UATPDetails = $UATPDetails;
$this->_elements['UATPDetails']['charset'] = $charset;
}
function getAuthorizationCode()
{
return $this->AuthorizationCode;
}
function setAuthorizationCode($AuthorizationCode, $charset = 'iso-8859-1')
{
$this->AuthorizationCode = $AuthorizationCode;
$this->_elements['AuthorizationCode']['charset'] = $charset;
}
function getInvoiceID()
{
return $this->InvoiceID;
}
function setInvoiceID($InvoiceID, $charset = 'iso-8859-1')
{
$this->InvoiceID = $InvoiceID;
$this->_elements['InvoiceID']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/DoUATPAuthorizationResponseType.php | PHP | asf20 | 2,151 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* PhoneNumberType
*
* @package PayPal
*/
class PhoneNumberType extends XSDSimpleType
{
/**
* Country code associated with this phone number.
*/
var $CountryCode;
/**
* Phone number associated with this phone.
*/
var $PhoneNumber;
/**
* Extension associated with this phone number.
*/
var $Extension;
function PhoneNumberType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'CountryCode' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'PhoneNumber' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Extension' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getCountryCode()
{
return $this->CountryCode;
}
function setCountryCode($CountryCode, $charset = 'iso-8859-1')
{
$this->CountryCode = $CountryCode;
$this->_elements['CountryCode']['charset'] = $charset;
}
function getPhoneNumber()
{
return $this->PhoneNumber;
}
function setPhoneNumber($PhoneNumber, $charset = 'iso-8859-1')
{
$this->PhoneNumber = $PhoneNumber;
$this->_elements['PhoneNumber']['charset'] = $charset;
}
function getExtension()
{
return $this->Extension;
}
function setExtension($Extension, $charset = 'iso-8859-1')
{
$this->Extension = $Extension;
$this->_elements['Extension']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/PhoneNumberType.php | PHP | asf20 | 2,131 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractRequestType.php';
/**
* UpdateAccessPermissionsRequestType
*
* @package PayPal
*/
class UpdateAccessPermissionsRequestType extends AbstractRequestType
{
/**
* Unique PayPal customer account number, the value of which was returned by
* GetAuthDetails Response.
*/
var $PayerID;
function UpdateAccessPermissionsRequestType()
{
parent::AbstractRequestType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'PayerID' =>
array (
'required' => true,
'type' => 'UserIDType',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
));
}
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/UpdateAccessPermissionsRequestType.php | PHP | asf20 | 1,109 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* AttributeType
*
* Specific physical attribute of an item.
*
* @package PayPal
*/
class AttributeType extends XSDSimpleType
{
/**
* ValueList of the Attribute being described by the AttributeID. Constant name of
* the attribute that identifies a physical attribute within a set of
* characteristics that describe something in a formalised way.
*/
var $Value;
function AttributeType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'Value' =>
array (
'required' => true,
'type' => 'ValType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
$this->_attributes = array_merge($this->_attributes,
array (
'AttributeID' =>
array (
'name' => 'AttributeID',
'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/AttributeType.php | PHP | asf20 | 1,436 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractRequestType.php';
/**
* SetCustomerBillingAgreementRequestType
*
* @package PayPal
*/
class SetCustomerBillingAgreementRequestType extends AbstractRequestType
{
var $SetCustomerBillingAgreementRequestDetails;
function SetCustomerBillingAgreementRequestType()
{
parent::AbstractRequestType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'SetCustomerBillingAgreementRequestDetails' =>
array (
'required' => true,
'type' => 'SetCustomerBillingAgreementRequestDetailsType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getSetCustomerBillingAgreementRequestDetails()
{
return $this->SetCustomerBillingAgreementRequestDetails;
}
function setSetCustomerBillingAgreementRequestDetails($SetCustomerBillingAgreementRequestDetails, $charset = 'iso-8859-1')
{
$this->SetCustomerBillingAgreementRequestDetails = $SetCustomerBillingAgreementRequestDetails;
$this->_elements['SetCustomerBillingAgreementRequestDetails']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/SetCustomerBillingAgreementRequestType.php | PHP | asf20 | 1,342 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* ThreeDSecureResponseType
*
* 3DS remaining fields.
*
* @package PayPal
*/
class ThreeDSecureResponseType extends XSDSimpleType
{
var $Vpas;
var $EciSubmitted3DS;
function ThreeDSecureResponseType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'Vpas' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'EciSubmitted3DS' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getVpas()
{
return $this->Vpas;
}
function setVpas($Vpas, $charset = 'iso-8859-1')
{
$this->Vpas = $Vpas;
$this->_elements['Vpas']['charset'] = $charset;
}
function getEciSubmitted3DS()
{
return $this->EciSubmitted3DS;
}
function setEciSubmitted3DS($EciSubmitted3DS, $charset = 'iso-8859-1')
{
$this->EciSubmitted3DS = $EciSubmitted3DS;
$this->_elements['EciSubmitted3DS']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/ThreeDSecureResponseType.php | PHP | asf20 | 1,480 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* ShippingDetailsType
*
* Specifies the shipping payment details.
*
* @package PayPal
*/
class ShippingDetailsType extends XSDSimpleType
{
/**
* Indicates whether the buyer edited the payment amount.
*/
var $AllowPaymentEdit;
/**
* Calculated shipping rate details. If present, then the calculated shipping rate
* option was used.
*/
var $CalculatedShippingRate;
/**
* Indicates whether the payment instructions are included (e.g., for updating the
* details of a transaction).
*/
var $ChangePaymentInstructions;
/**
* Flat shipping rate details. If present, then the flat shipping rate option was
* used.
*/
var $FlatShippingRate;
/**
* Total cost of insurance for the transaction.
*/
var $InsuranceTotal;
/**
* Indicates whether buyer selected to have insurance.
*/
var $InsuranceWanted;
/**
* Payment instuctions.
*/
var $PaymentInstructions;
/**
* Sales tax details. Sales tax applicable for only US sites. For non-US sites this
* sub-element should not be used.
*/
var $SalesTax;
/**
* Postal/Zip code from where the seller will ship the item.
*/
var $SellerPostalCode;
function ShippingDetailsType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'AllowPaymentEdit' =>
array (
'required' => false,
'type' => 'boolean',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'CalculatedShippingRate' =>
array (
'required' => false,
'type' => 'CalculatedShippingRateType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ChangePaymentInstructions' =>
array (
'required' => false,
'type' => 'boolean',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'FlatShippingRate' =>
array (
'required' => false,
'type' => 'FlatShippingRateType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'InsuranceTotal' =>
array (
'required' => false,
'type' => 'AmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'InsuranceWanted' =>
array (
'required' => false,
'type' => 'boolean',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'PaymentInstructions' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'SalesTax' =>
array (
'required' => false,
'type' => 'SalesTaxType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'SellerPostalCode' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getAllowPaymentEdit()
{
return $this->AllowPaymentEdit;
}
function setAllowPaymentEdit($AllowPaymentEdit, $charset = 'iso-8859-1')
{
$this->AllowPaymentEdit = $AllowPaymentEdit;
$this->_elements['AllowPaymentEdit']['charset'] = $charset;
}
function getCalculatedShippingRate()
{
return $this->CalculatedShippingRate;
}
function setCalculatedShippingRate($CalculatedShippingRate, $charset = 'iso-8859-1')
{
$this->CalculatedShippingRate = $CalculatedShippingRate;
$this->_elements['CalculatedShippingRate']['charset'] = $charset;
}
function getChangePaymentInstructions()
{
return $this->ChangePaymentInstructions;
}
function setChangePaymentInstructions($ChangePaymentInstructions, $charset = 'iso-8859-1')
{
$this->ChangePaymentInstructions = $ChangePaymentInstructions;
$this->_elements['ChangePaymentInstructions']['charset'] = $charset;
}
function getFlatShippingRate()
{
return $this->FlatShippingRate;
}
function setFlatShippingRate($FlatShippingRate, $charset = 'iso-8859-1')
{
$this->FlatShippingRate = $FlatShippingRate;
$this->_elements['FlatShippingRate']['charset'] = $charset;
}
function getInsuranceTotal()
{
return $this->InsuranceTotal;
}
function setInsuranceTotal($InsuranceTotal, $charset = 'iso-8859-1')
{
$this->InsuranceTotal = $InsuranceTotal;
$this->_elements['InsuranceTotal']['charset'] = $charset;
}
function getInsuranceWanted()
{
return $this->InsuranceWanted;
}
function setInsuranceWanted($InsuranceWanted, $charset = 'iso-8859-1')
{
$this->InsuranceWanted = $InsuranceWanted;
$this->_elements['InsuranceWanted']['charset'] = $charset;
}
function getPaymentInstructions()
{
return $this->PaymentInstructions;
}
function setPaymentInstructions($PaymentInstructions, $charset = 'iso-8859-1')
{
$this->PaymentInstructions = $PaymentInstructions;
$this->_elements['PaymentInstructions']['charset'] = $charset;
}
function getSalesTax()
{
return $this->SalesTax;
}
function setSalesTax($SalesTax, $charset = 'iso-8859-1')
{
$this->SalesTax = $SalesTax;
$this->_elements['SalesTax']['charset'] = $charset;
}
function getSellerPostalCode()
{
return $this->SellerPostalCode;
}
function setSellerPostalCode($SellerPostalCode, $charset = 'iso-8859-1')
{
$this->SellerPostalCode = $SellerPostalCode;
$this->_elements['SellerPostalCode']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/ShippingDetailsType.php | PHP | asf20 | 6,358 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractResponseType.php';
/**
* CreateMobilePaymentResponseType
*
* @package PayPal
*/
class CreateMobilePaymentResponseType extends AbstractResponseType
{
function CreateMobilePaymentResponseType()
{
parent::AbstractResponseType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/CreateMobilePaymentResponseType.php | PHP | asf20 | 428 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* IncentiveItemType
*
* @package PayPal
*/
class IncentiveItemType extends XSDSimpleType
{
var $ItemId;
var $PurchaseTime;
var $ItemCategoryList;
var $ItemPrice;
var $ItemQuantity;
function IncentiveItemType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'ItemId' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'PurchaseTime' =>
array (
'required' => false,
'type' => 'dateTime',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ItemCategoryList' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ItemPrice' =>
array (
'required' => false,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ItemQuantity' =>
array (
'required' => false,
'type' => 'integer',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getItemId()
{
return $this->ItemId;
}
function setItemId($ItemId, $charset = 'iso-8859-1')
{
$this->ItemId = $ItemId;
$this->_elements['ItemId']['charset'] = $charset;
}
function getPurchaseTime()
{
return $this->PurchaseTime;
}
function setPurchaseTime($PurchaseTime, $charset = 'iso-8859-1')
{
$this->PurchaseTime = $PurchaseTime;
$this->_elements['PurchaseTime']['charset'] = $charset;
}
function getItemCategoryList()
{
return $this->ItemCategoryList;
}
function setItemCategoryList($ItemCategoryList, $charset = 'iso-8859-1')
{
$this->ItemCategoryList = $ItemCategoryList;
$this->_elements['ItemCategoryList']['charset'] = $charset;
}
function getItemPrice()
{
return $this->ItemPrice;
}
function setItemPrice($ItemPrice, $charset = 'iso-8859-1')
{
$this->ItemPrice = $ItemPrice;
$this->_elements['ItemPrice']['charset'] = $charset;
}
function getItemQuantity()
{
return $this->ItemQuantity;
}
function setItemQuantity($ItemQuantity, $charset = 'iso-8859-1')
{
$this->ItemQuantity = $ItemQuantity;
$this->_elements['ItemQuantity']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/IncentiveItemType.php | PHP | asf20 | 2,954 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractResponseType.php';
/**
* DoVoidResponseType
*
* @package PayPal
*/
class DoVoidResponseType extends AbstractResponseType
{
/**
* The authorization identification number you specified in the request.
*/
var $AuthorizationID;
function DoVoidResponseType()
{
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',
),
));
}
function getAuthorizationID()
{
return $this->AuthorizationID;
}
function setAuthorizationID($AuthorizationID, $charset = 'iso-8859-1')
{
$this->AuthorizationID = $AuthorizationID;
$this->_elements['AuthorizationID']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/DoVoidResponseType.php | PHP | asf20 | 1,096 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractRequestType.php';
/**
* DoCaptureRequestType
*
* @package PayPal
*/
class DoCaptureRequestType extends AbstractRequestType
{
/**
* The authorization identification number of the payment you want to capture.
*/
var $AuthorizationID;
/**
* Amount to authorize. You must set the currencyID attribute to USD.
*/
var $Amount;
/**
* Indicates if this capture is the last capture you intend to make. The default is
* Complete. If CompleteType is Complete, any remaining amount of the original
* reauthorized transaction is automatically voided.
*/
var $CompleteType;
/**
* An informational note about this settlement that is displayed to the payer in
* email and in transaction history.
*/
var $Note;
/**
* Your invoice number or other identification number.
*/
var $InvoiceID;
var $EnhancedData;
/**
* dynamic descriptor
*/
var $Descriptor;
function DoCaptureRequestType()
{
parent::AbstractRequestType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'AuthorizationID' =>
array (
'required' => true,
'type' => 'AuthorizationId',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'Amount' =>
array (
'required' => true,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'CompleteType' =>
array (
'required' => true,
'type' => 'CompleteCodeType',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'Note' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'InvoiceID' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'EnhancedData' =>
array (
'required' => false,
'type' => 'EnhancedDataType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Descriptor' =>
array (
'required' => false,
'type' => 'string',
'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;
}
function getCompleteType()
{
return $this->CompleteType;
}
function setCompleteType($CompleteType, $charset = 'iso-8859-1')
{
$this->CompleteType = $CompleteType;
$this->_elements['CompleteType']['charset'] = $charset;
}
function getNote()
{
return $this->Note;
}
function setNote($Note, $charset = 'iso-8859-1')
{
$this->Note = $Note;
$this->_elements['Note']['charset'] = $charset;
}
function getInvoiceID()
{
return $this->InvoiceID;
}
function setInvoiceID($InvoiceID, $charset = 'iso-8859-1')
{
$this->InvoiceID = $InvoiceID;
$this->_elements['InvoiceID']['charset'] = $charset;
}
function getEnhancedData()
{
return $this->EnhancedData;
}
function setEnhancedData($EnhancedData, $charset = 'iso-8859-1')
{
$this->EnhancedData = $EnhancedData;
$this->_elements['EnhancedData']['charset'] = $charset;
}
function getDescriptor()
{
return $this->Descriptor;
}
function setDescriptor($Descriptor, $charset = 'iso-8859-1')
{
$this->Descriptor = $Descriptor;
$this->_elements['Descriptor']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/DoCaptureRequestType.php | PHP | asf20 | 4,542 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractRequestType.php';
/**
* CreateMobilePaymentRequestType
*
* @package PayPal
*/
class CreateMobilePaymentRequestType extends AbstractRequestType
{
var $CreateMobilePaymentRequestDetails;
function CreateMobilePaymentRequestType()
{
parent::AbstractRequestType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'CreateMobilePaymentRequestDetails' =>
array (
'required' => true,
'type' => 'CreateMobilePaymentRequestDetailsType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getCreateMobilePaymentRequestDetails()
{
return $this->CreateMobilePaymentRequestDetails;
}
function setCreateMobilePaymentRequestDetails($CreateMobilePaymentRequestDetails, $charset = 'iso-8859-1')
{
$this->CreateMobilePaymentRequestDetails = $CreateMobilePaymentRequestDetails;
$this->_elements['CreateMobilePaymentRequestDetails']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/CreateMobilePaymentRequestType.php | PHP | asf20 | 1,238 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* FlatShippingRateType
*
* @package PayPal
*/
class FlatShippingRateType extends XSDSimpleType
{
/**
* Any additional shipping costs for the item.
*/
var $AdditionalShippingCosts;
var $FlatShippingHandlingCosts;
var $InsuranceFee;
var $InsuranceOption;
var $ShippingService;
function FlatShippingRateType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'AdditionalShippingCosts' =>
array (
'required' => false,
'type' => 'AmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'FlatShippingHandlingCosts' =>
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',
),
'ShippingService' =>
array (
'required' => false,
'type' => NULL,
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getAdditionalShippingCosts()
{
return $this->AdditionalShippingCosts;
}
function setAdditionalShippingCosts($AdditionalShippingCosts, $charset = 'iso-8859-1')
{
$this->AdditionalShippingCosts = $AdditionalShippingCosts;
$this->_elements['AdditionalShippingCosts']['charset'] = $charset;
}
function getFlatShippingHandlingCosts()
{
return $this->FlatShippingHandlingCosts;
}
function setFlatShippingHandlingCosts($FlatShippingHandlingCosts, $charset = 'iso-8859-1')
{
$this->FlatShippingHandlingCosts = $FlatShippingHandlingCosts;
$this->_elements['FlatShippingHandlingCosts']['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 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/FlatShippingRateType.php | PHP | asf20 | 3,329 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* SetCustomerBillingAgreementRequestDetailsType
*
* @package PayPal
*/
class SetCustomerBillingAgreementRequestDetailsType extends XSDSimpleType
{
var $BillingAgreementDetails;
var $ReturnURL;
var $CancelURL;
var $LocaleCode;
var $PageStyle;
var $cpp_header_image;
var $cpp_header_border_color;
var $cpp_header_back_color;
var $cpp_payflow_color;
var $BuyerEmail;
/**
* 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;
function SetCustomerBillingAgreementRequestDetailsType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'BillingAgreementDetails' =>
array (
'required' => true,
'type' => 'BillingAgreementDetailsType',
'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',
),
'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',
),
'BuyerEmail' =>
array (
'required' => false,
'type' => 'EmailAddressType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ReqBillingAddress' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getBillingAgreementDetails()
{
return $this->BillingAgreementDetails;
}
function setBillingAgreementDetails($BillingAgreementDetails, $charset = 'iso-8859-1')
{
$this->BillingAgreementDetails = $BillingAgreementDetails;
$this->_elements['BillingAgreementDetails']['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 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 getBuyerEmail()
{
return $this->BuyerEmail;
}
function setBuyerEmail($BuyerEmail, $charset = 'iso-8859-1')
{
$this->BuyerEmail = $BuyerEmail;
$this->_elements['BuyerEmail']['charset'] = $charset;
}
function getReqBillingAddress()
{
return $this->ReqBillingAddress;
}
function setReqBillingAddress($ReqBillingAddress, $charset = 'iso-8859-1')
{
$this->ReqBillingAddress = $ReqBillingAddress;
$this->_elements['ReqBillingAddress']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/SetCustomerBillingAgreementRequestDetailsType.php | PHP | asf20 | 6,597 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* UpdateRecurringPaymentsProfileResponseDetailsType
*
* @package PayPal
*/
class UpdateRecurringPaymentsProfileResponseDetailsType extends XSDSimpleType
{
var $ProfileID;
function UpdateRecurringPaymentsProfileResponseDetailsType()
{
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/UpdateRecurringPaymentsProfileResponseDetailsType.php | PHP | asf20 | 1,039 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* IncentiveBucketType
*
* @package PayPal
*/
class IncentiveBucketType extends XSDSimpleType
{
var $Items;
var $BucketId;
var $SellerId;
var $ExternalSellerId;
var $BucketSubtotalAmt;
var $BucketShippingAmt;
var $BucketInsuranceAmt;
var $BucketSalesTaxAmt;
var $BucketTotalAmt;
function IncentiveBucketType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'Items' =>
array (
'required' => false,
'type' => 'IncentiveItemType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'BucketId' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'SellerId' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ExternalSellerId' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'BucketSubtotalAmt' =>
array (
'required' => false,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'BucketShippingAmt' =>
array (
'required' => false,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'BucketInsuranceAmt' =>
array (
'required' => false,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'BucketSalesTaxAmt' =>
array (
'required' => false,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'BucketTotalAmt' =>
array (
'required' => false,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getItems()
{
return $this->Items;
}
function setItems($Items, $charset = 'iso-8859-1')
{
$this->Items = $Items;
$this->_elements['Items']['charset'] = $charset;
}
function getBucketId()
{
return $this->BucketId;
}
function setBucketId($BucketId, $charset = 'iso-8859-1')
{
$this->BucketId = $BucketId;
$this->_elements['BucketId']['charset'] = $charset;
}
function getSellerId()
{
return $this->SellerId;
}
function setSellerId($SellerId, $charset = 'iso-8859-1')
{
$this->SellerId = $SellerId;
$this->_elements['SellerId']['charset'] = $charset;
}
function getExternalSellerId()
{
return $this->ExternalSellerId;
}
function setExternalSellerId($ExternalSellerId, $charset = 'iso-8859-1')
{
$this->ExternalSellerId = $ExternalSellerId;
$this->_elements['ExternalSellerId']['charset'] = $charset;
}
function getBucketSubtotalAmt()
{
return $this->BucketSubtotalAmt;
}
function setBucketSubtotalAmt($BucketSubtotalAmt, $charset = 'iso-8859-1')
{
$this->BucketSubtotalAmt = $BucketSubtotalAmt;
$this->_elements['BucketSubtotalAmt']['charset'] = $charset;
}
function getBucketShippingAmt()
{
return $this->BucketShippingAmt;
}
function setBucketShippingAmt($BucketShippingAmt, $charset = 'iso-8859-1')
{
$this->BucketShippingAmt = $BucketShippingAmt;
$this->_elements['BucketShippingAmt']['charset'] = $charset;
}
function getBucketInsuranceAmt()
{
return $this->BucketInsuranceAmt;
}
function setBucketInsuranceAmt($BucketInsuranceAmt, $charset = 'iso-8859-1')
{
$this->BucketInsuranceAmt = $BucketInsuranceAmt;
$this->_elements['BucketInsuranceAmt']['charset'] = $charset;
}
function getBucketSalesTaxAmt()
{
return $this->BucketSalesTaxAmt;
}
function setBucketSalesTaxAmt($BucketSalesTaxAmt, $charset = 'iso-8859-1')
{
$this->BucketSalesTaxAmt = $BucketSalesTaxAmt;
$this->_elements['BucketSalesTaxAmt']['charset'] = $charset;
}
function getBucketTotalAmt()
{
return $this->BucketTotalAmt;
}
function setBucketTotalAmt($BucketTotalAmt, $charset = 'iso-8859-1')
{
$this->BucketTotalAmt = $BucketTotalAmt;
$this->_elements['BucketTotalAmt']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/IncentiveBucketType.php | PHP | asf20 | 5,173 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractRequestType.php';
/**
* GetExpressCheckoutDetailsRequestType
*
* @package PayPal
*/
class GetExpressCheckoutDetailsRequestType extends AbstractRequestType
{
/**
* A timestamped token, the value of which was returned by
* SetExpressCheckoutResponse.
*/
var $Token;
function GetExpressCheckoutDetailsRequestType()
{
parent::AbstractRequestType();
$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/GetExpressCheckoutDetailsRequestType.php | PHP | asf20 | 1,096 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* EnhancedPaymentInfoType
*
* @package PayPal
*/
class EnhancedPaymentInfoType extends XSDSimpleType
{
function EnhancedPaymentInfoType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:EnhancedDataTypes';
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/EnhancedPaymentInfoType.php | PHP | asf20 | 392 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* EnhancedInitiateRecoupRequestDetailsType
*
* @package PayPal
*/
class EnhancedInitiateRecoupRequestDetailsType extends XSDSimpleType
{
function EnhancedInitiateRecoupRequestDetailsType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:EnhancedDataTypes';
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/EnhancedInitiateRecoupRequestDetailsType.php | PHP | asf20 | 443 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* AccountSummaryType
*
* Includes account summary for the user.
*
* @package PayPal
*/
class AccountSummaryType extends XSDSimpleType
{
var $AccountState;
var $AdditionalAccount;
/**
* Number of additional accounts.
*/
var $AdditionalAccountsCount;
/**
* Amount past due, 0.00 if not past due.
*/
var $AmountPastDue;
/**
* First four digits (with remainder Xed-out). This may be an empty string
* depending upon the value of the payment type for the user account (e.g, if no
* debit-card specified).
*/
var $BankAccountInfo;
/**
* Last time/day BankAccountInfo and/or BankRoutingInfo was modified, in GMT. This
* may be an empty string depending upon the value of the payment type for the user
* account (e.g, if no debit-card specified).
*/
var $BankModifyDate;
/**
* Indicates the billing cycle in which eBay sends a billing invoice to the
* specified user. Possible values: 0 = On the last day of the month. 15 = On the
* 15th day of the month.
*/
var $BillingCycleDate;
/**
* Expiration date for the credit card selected as payment method, in GMT. Empty
* string if no credit card is on file or if account is inactive -- even if there
* is a credit card on file.
*/
var $CCExp;
/**
* Last four digits of user's credit card selected as payment type. Empty string if
* no credit is on file. This may be an empty string depending upon the value of
* the payment type for the user account (e.g, if no debit-card specified).
*/
var $CCInfo;
/**
* Last date credit card or credit card expiration date was modified, in GMT. This
* may be an empty string depending upon the value of the payment type for the user
* account (e.g, Empty string if no credit card is on file.
*/
var $CCModifyDate;
/**
* User's current balance. Can be 0.00, positive, or negative.
*/
var $CurrentBalance;
/**
* Amount of last payment posted, 0.00 if no payments posted.
*/
var $LastAmountPaid;
/**
* Amount of last invoice. 0.00 if account not yet invoiced.
*/
var $LastInvoiceAmount;
/**
* Date of last invoice sent by eBay to the user, in GMT. Empty string if this
* account has not been invoiced yet.
*/
var $LastInvoiceDate;
/**
* Date of last payment by specified user to eBay, in GMT. Empty string if no
* payments posted.
*/
var $LastPaymentDate;
/**
* Indicates whether the account has past due amounts outstanding. Possible values:
* true = Account is past due. false = Account is current.
*/
var $PastDue;
/**
* Indicates the method the specified user selected for paying eBay. The values for
* PaymentType vary for each SiteID.
*/
var $PaymentMethod;
function AccountSummaryType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'AccountState' =>
array (
'required' => false,
'type' => 'AccountStateCodeType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'AdditionalAccount' =>
array (
'required' => false,
'type' => 'AdditionalAccountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'AdditionalAccountsCount' =>
array (
'required' => true,
'type' => 'int',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'AmountPastDue' =>
array (
'required' => false,
'type' => NULL,
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'BankAccountInfo' =>
array (
'required' => true,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'BankModifyDate' =>
array (
'required' => true,
'type' => 'dateTime',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'BillingCycleDate' =>
array (
'required' => true,
'type' => 'dateTime',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'CCExp' =>
array (
'required' => true,
'type' => 'dateTime',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'CCInfo' =>
array (
'required' => true,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'CCModifyDate' =>
array (
'required' => true,
'type' => 'dateTime',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'CurrentBalance' =>
array (
'required' => true,
'type' => NULL,
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'LastAmountPaid' =>
array (
'required' => true,
'type' => 'AmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'LastInvoiceAmount' =>
array (
'required' => true,
'type' => 'AmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'LastInvoiceDate' =>
array (
'required' => true,
'type' => 'dateTime',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'LastPaymentDate' =>
array (
'required' => true,
'type' => 'dateTime',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'PastDue' =>
array (
'required' => true,
'type' => 'boolean',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'PaymentMethod' =>
array (
'required' => true,
'type' => 'SellerPaymentMethodCodeType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getAccountState()
{
return $this->AccountState;
}
function setAccountState($AccountState, $charset = 'iso-8859-1')
{
$this->AccountState = $AccountState;
$this->_elements['AccountState']['charset'] = $charset;
}
function getAdditionalAccount()
{
return $this->AdditionalAccount;
}
function setAdditionalAccount($AdditionalAccount, $charset = 'iso-8859-1')
{
$this->AdditionalAccount = $AdditionalAccount;
$this->_elements['AdditionalAccount']['charset'] = $charset;
}
function getAdditionalAccountsCount()
{
return $this->AdditionalAccountsCount;
}
function setAdditionalAccountsCount($AdditionalAccountsCount, $charset = 'iso-8859-1')
{
$this->AdditionalAccountsCount = $AdditionalAccountsCount;
$this->_elements['AdditionalAccountsCount']['charset'] = $charset;
}
function getAmountPastDue()
{
return $this->AmountPastDue;
}
function setAmountPastDue($AmountPastDue, $charset = 'iso-8859-1')
{
$this->AmountPastDue = $AmountPastDue;
$this->_elements['AmountPastDue']['charset'] = $charset;
}
function getBankAccountInfo()
{
return $this->BankAccountInfo;
}
function setBankAccountInfo($BankAccountInfo, $charset = 'iso-8859-1')
{
$this->BankAccountInfo = $BankAccountInfo;
$this->_elements['BankAccountInfo']['charset'] = $charset;
}
function getBankModifyDate()
{
return $this->BankModifyDate;
}
function setBankModifyDate($BankModifyDate, $charset = 'iso-8859-1')
{
$this->BankModifyDate = $BankModifyDate;
$this->_elements['BankModifyDate']['charset'] = $charset;
}
function getBillingCycleDate()
{
return $this->BillingCycleDate;
}
function setBillingCycleDate($BillingCycleDate, $charset = 'iso-8859-1')
{
$this->BillingCycleDate = $BillingCycleDate;
$this->_elements['BillingCycleDate']['charset'] = $charset;
}
function getCCExp()
{
return $this->CCExp;
}
function setCCExp($CCExp, $charset = 'iso-8859-1')
{
$this->CCExp = $CCExp;
$this->_elements['CCExp']['charset'] = $charset;
}
function getCCInfo()
{
return $this->CCInfo;
}
function setCCInfo($CCInfo, $charset = 'iso-8859-1')
{
$this->CCInfo = $CCInfo;
$this->_elements['CCInfo']['charset'] = $charset;
}
function getCCModifyDate()
{
return $this->CCModifyDate;
}
function setCCModifyDate($CCModifyDate, $charset = 'iso-8859-1')
{
$this->CCModifyDate = $CCModifyDate;
$this->_elements['CCModifyDate']['charset'] = $charset;
}
function getCurrentBalance()
{
return $this->CurrentBalance;
}
function setCurrentBalance($CurrentBalance, $charset = 'iso-8859-1')
{
$this->CurrentBalance = $CurrentBalance;
$this->_elements['CurrentBalance']['charset'] = $charset;
}
function getLastAmountPaid()
{
return $this->LastAmountPaid;
}
function setLastAmountPaid($LastAmountPaid, $charset = 'iso-8859-1')
{
$this->LastAmountPaid = $LastAmountPaid;
$this->_elements['LastAmountPaid']['charset'] = $charset;
}
function getLastInvoiceAmount()
{
return $this->LastInvoiceAmount;
}
function setLastInvoiceAmount($LastInvoiceAmount, $charset = 'iso-8859-1')
{
$this->LastInvoiceAmount = $LastInvoiceAmount;
$this->_elements['LastInvoiceAmount']['charset'] = $charset;
}
function getLastInvoiceDate()
{
return $this->LastInvoiceDate;
}
function setLastInvoiceDate($LastInvoiceDate, $charset = 'iso-8859-1')
{
$this->LastInvoiceDate = $LastInvoiceDate;
$this->_elements['LastInvoiceDate']['charset'] = $charset;
}
function getLastPaymentDate()
{
return $this->LastPaymentDate;
}
function setLastPaymentDate($LastPaymentDate, $charset = 'iso-8859-1')
{
$this->LastPaymentDate = $LastPaymentDate;
$this->_elements['LastPaymentDate']['charset'] = $charset;
}
function getPastDue()
{
return $this->PastDue;
}
function setPastDue($PastDue, $charset = 'iso-8859-1')
{
$this->PastDue = $PastDue;
$this->_elements['PastDue']['charset'] = $charset;
}
function getPaymentMethod()
{
return $this->PaymentMethod;
}
function setPaymentMethod($PaymentMethod, $charset = 'iso-8859-1')
{
$this->PaymentMethod = $PaymentMethod;
$this->_elements['PaymentMethod']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/AccountSummaryType.php | PHP | asf20 | 11,690 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* SetAuthFlowParamRequestDetailsType
*
* @package PayPal
*/
class SetAuthFlowParamRequestDetailsType extends XSDSimpleType
{
/**
* URL to which the customer's browser is returned after choosing to login with
* PayPal.
*/
var $ReturnURL;
/**
* URL to which the customer is returned if he does not approve the use of PayPal
* login.
*/
var $CancelURL;
/**
* URL to which the customer's browser is returned after user logs out from PayPal.
*/
var $LogoutURL;
/**
* The type of the flow.
*/
var $InitFlowType;
/**
* The used to decide SkipLogin allowed or not.
*/
var $SkipLoginPage;
/**
* The name of the field Merchant requires from PayPal after user's login.
*/
var $ServiceName1;
/**
* Whether the field is required, opt-in or opt-out.
*/
var $ServiceDefReq1;
/**
* The name of the field Merchant requires from PayPal after user's login.
*/
var $ServiceName2;
/**
* Whether the field is required, opt-in or opt-out.
*/
var $ServiceDefReq2;
/**
* Locale of pages displayed by PayPal during Authentication Login.
*/
var $LocaleCode;
/**
* Sets the Custom Payment Page Style for flow pages associated with this
* button/link. PageStyle corresponds to the HTML variable page_style for
* customizing flow 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 flow 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 flow 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 flow page.
*/
var $cpp_header_back_color;
/**
* Sets the background color for the payment page.
*/
var $cpp_payflow_color;
/**
* First Name of the user, this information is used if user chooses to signup with
* PayPal.
*/
var $FirstName;
/**
* Last Name of the user, this information is used if user chooses to signup with
* PayPal.
*/
var $LastName;
/**
* User address, this information is used when user chooses to signup for PayPal.
*/
var $Address;
function SetAuthFlowParamRequestDetailsType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'ReturnURL' =>
array (
'required' => true,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'CancelURL' =>
array (
'required' => true,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'LogoutURL' =>
array (
'required' => true,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'InitFlowType' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'SkipLoginPage' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ServiceName1' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ServiceDefReq1' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ServiceName2' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ServiceDefReq2' =>
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',
),
'FirstName' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'LastName' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Address' =>
array (
'required' => false,
'type' => 'AddressType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
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 getLogoutURL()
{
return $this->LogoutURL;
}
function setLogoutURL($LogoutURL, $charset = 'iso-8859-1')
{
$this->LogoutURL = $LogoutURL;
$this->_elements['LogoutURL']['charset'] = $charset;
}
function getInitFlowType()
{
return $this->InitFlowType;
}
function setInitFlowType($InitFlowType, $charset = 'iso-8859-1')
{
$this->InitFlowType = $InitFlowType;
$this->_elements['InitFlowType']['charset'] = $charset;
}
function getSkipLoginPage()
{
return $this->SkipLoginPage;
}
function setSkipLoginPage($SkipLoginPage, $charset = 'iso-8859-1')
{
$this->SkipLoginPage = $SkipLoginPage;
$this->_elements['SkipLoginPage']['charset'] = $charset;
}
function getServiceName1()
{
return $this->ServiceName1;
}
function setServiceName1($ServiceName1, $charset = 'iso-8859-1')
{
$this->ServiceName1 = $ServiceName1;
$this->_elements['ServiceName1']['charset'] = $charset;
}
function getServiceDefReq1()
{
return $this->ServiceDefReq1;
}
function setServiceDefReq1($ServiceDefReq1, $charset = 'iso-8859-1')
{
$this->ServiceDefReq1 = $ServiceDefReq1;
$this->_elements['ServiceDefReq1']['charset'] = $charset;
}
function getServiceName2()
{
return $this->ServiceName2;
}
function setServiceName2($ServiceName2, $charset = 'iso-8859-1')
{
$this->ServiceName2 = $ServiceName2;
$this->_elements['ServiceName2']['charset'] = $charset;
}
function getServiceDefReq2()
{
return $this->ServiceDefReq2;
}
function setServiceDefReq2($ServiceDefReq2, $charset = 'iso-8859-1')
{
$this->ServiceDefReq2 = $ServiceDefReq2;
$this->_elements['ServiceDefReq2']['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 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 getAddress()
{
return $this->Address;
}
function setAddress($Address, $charset = 'iso-8859-1')
{
$this->Address = $Address;
$this->_elements['Address']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/SetAuthFlowParamRequestDetailsType.php | PHP | asf20 | 11,868 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractRequestType.php';
/**
* MassPayRequestType
*
* @package PayPal
*/
class MassPayRequestType extends AbstractRequestType
{
/**
* Subject line of the email sent to all recipients. This subject is not contained
* in the input file; you must create it with your application.
*/
var $EmailSubject;
/**
* Indicates how you identify the recipients of payments in all MassPayItems:
* either by EmailAddress (ReceiverEmail in MassPayItem), PhoneNumber
* (ReceiverPhone in MassPayItem), or by UserID (ReceiverID in MassPayItem).
*/
var $ReceiverType;
/**
* Known as BN code, to track the partner referred merchant transactions.
*/
var $ButtonSource;
/**
* Details of each payment. A single MassPayRequest can include up to 250
* MassPayItems.
*/
var $MassPayItem;
function MassPayRequestType()
{
parent::AbstractRequestType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'EmailSubject' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'ReceiverType' =>
array (
'required' => false,
'type' => 'ReceiverInfoCodeType',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'ButtonSource' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'MassPayItem' =>
array (
'required' => true,
'type' => 'MassPayRequestItemType',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
));
}
function getEmailSubject()
{
return $this->EmailSubject;
}
function setEmailSubject($EmailSubject, $charset = 'iso-8859-1')
{
$this->EmailSubject = $EmailSubject;
$this->_elements['EmailSubject']['charset'] = $charset;
}
function getReceiverType()
{
return $this->ReceiverType;
}
function setReceiverType($ReceiverType, $charset = 'iso-8859-1')
{
$this->ReceiverType = $ReceiverType;
$this->_elements['ReceiverType']['charset'] = $charset;
}
function getButtonSource()
{
return $this->ButtonSource;
}
function setButtonSource($ButtonSource, $charset = 'iso-8859-1')
{
$this->ButtonSource = $ButtonSource;
$this->_elements['ButtonSource']['charset'] = $charset;
}
function getMassPayItem()
{
return $this->MassPayItem;
}
function setMassPayItem($MassPayItem, $charset = 'iso-8859-1')
{
$this->MassPayItem = $MassPayItem;
$this->_elements['MassPayItem']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/MassPayRequestType.php | PHP | asf20 | 3,112 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* AuthorizationInfoType
*
* Authorization details
*
* @package PayPal
*/
class AuthorizationInfoType extends XSDSimpleType
{
/**
* The status of the payment:
*/
var $PaymentStatus;
/**
* The reason the payment is pending: none: No pending reason
*/
var $PendingReason;
/**
* Protection Eligibility for this Transaction - None, SPP or ESPP
*/
var $ProtectionEligibility;
/**
* Protection Eligibility Type for this Transaction
*/
var $ProtectionEligibilityType;
function AuthorizationInfoType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'PaymentStatus' =>
array (
'required' => true,
'type' => 'PaymentStatusCodeType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'PendingReason' =>
array (
'required' => false,
'type' => 'PendingStatusCodeType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ProtectionEligibility' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ProtectionEligibilityType' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getPaymentStatus()
{
return $this->PaymentStatus;
}
function setPaymentStatus($PaymentStatus, $charset = 'iso-8859-1')
{
$this->PaymentStatus = $PaymentStatus;
$this->_elements['PaymentStatus']['charset'] = $charset;
}
function getPendingReason()
{
return $this->PendingReason;
}
function setPendingReason($PendingReason, $charset = 'iso-8859-1')
{
$this->PendingReason = $PendingReason;
$this->_elements['PendingReason']['charset'] = $charset;
}
function getProtectionEligibility()
{
return $this->ProtectionEligibility;
}
function setProtectionEligibility($ProtectionEligibility, $charset = 'iso-8859-1')
{
$this->ProtectionEligibility = $ProtectionEligibility;
$this->_elements['ProtectionEligibility']['charset'] = $charset;
}
function getProtectionEligibilityType()
{
return $this->ProtectionEligibilityType;
}
function setProtectionEligibilityType($ProtectionEligibilityType, $charset = 'iso-8859-1')
{
$this->ProtectionEligibilityType = $ProtectionEligibilityType;
$this->_elements['ProtectionEligibilityType']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/AuthorizationInfoType.php | PHP | asf20 | 3,060 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractResponseType.php';
/**
* GetPalDetailsResponseType
*
* @package PayPal
*/
class GetPalDetailsResponseType extends AbstractResponseType
{
var $Pal;
var $Locale;
function GetPalDetailsResponseType()
{
parent::AbstractResponseType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'Pal' =>
array (
'required' => true,
'type' => 'string',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'Locale' =>
array (
'required' => true,
'type' => 'string',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
));
}
function getPal()
{
return $this->Pal;
}
function setPal($Pal, $charset = 'iso-8859-1')
{
$this->Pal = $Pal;
$this->_elements['Pal']['charset'] = $charset;
}
function getLocale()
{
return $this->Locale;
}
function setLocale($Locale, $charset = 'iso-8859-1')
{
$this->Locale = $Locale;
$this->_elements['Locale']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/getpaldetailsresponsetype.php | PHP | asf20 | 1,356 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* AuctionInfoType
*
* AuctionInfoType Basic information about an auction.
*
* @package PayPal
*/
class AuctionInfoType extends XSDSimpleType
{
/**
* Customer's auction ID
*/
var $BuyerID;
/**
* Auction's close date
*/
var $ClosingDate;
function AuctionInfoType()
{
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',
),
'ClosingDate' =>
array (
'required' => false,
'type' => 'dateTime',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
$this->_attributes = array_merge($this->_attributes,
array (
'multiItem' =>
array (
'name' => 'multiItem',
'type' => 'xs:string',
'use' => 'required',
),
));
}
function getBuyerID()
{
return $this->BuyerID;
}
function setBuyerID($BuyerID, $charset = 'iso-8859-1')
{
$this->BuyerID = $BuyerID;
$this->_elements['BuyerID']['charset'] = $charset;
}
function getClosingDate()
{
return $this->ClosingDate;
}
function setClosingDate($ClosingDate, $charset = 'iso-8859-1')
{
$this->ClosingDate = $ClosingDate;
$this->_elements['ClosingDate']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/AuctionInfoType.php | PHP | asf20 | 1,846 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractResponseType.php';
/**
* BMManageButtonStatusResponseType
*
* @package PayPal
*/
class BMManageButtonStatusResponseType extends AbstractResponseType
{
function BMManageButtonStatusResponseType()
{
parent::AbstractResponseType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/bmmanagebuttonstatusresponsetype.php | PHP | asf20 | 431 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* ThreeDSecureInfoType
*
* 3DSecureInfoType Information about 3D Secure parameters.
*
* @package PayPal
*/
class ThreeDSecureInfoType extends XSDSimpleType
{
var $ThreeDSecureRequest;
var $ThreeDSecureResponse;
function ThreeDSecureInfoType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'ThreeDSecureRequest' =>
array (
'required' => false,
'type' => 'ThreeDSecureRequestType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ThreeDSecureResponse' =>
array (
'required' => false,
'type' => 'ThreeDSecureResponseType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getThreeDSecureRequest()
{
return $this->ThreeDSecureRequest;
}
function setThreeDSecureRequest($ThreeDSecureRequest, $charset = 'iso-8859-1')
{
$this->ThreeDSecureRequest = $ThreeDSecureRequest;
$this->_elements['ThreeDSecureRequest']['charset'] = $charset;
}
function getThreeDSecureResponse()
{
return $this->ThreeDSecureResponse;
}
function setThreeDSecureResponse($ThreeDSecureResponse, $charset = 'iso-8859-1')
{
$this->ThreeDSecureResponse = $ThreeDSecureResponse;
$this->_elements['ThreeDSecureResponse']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/ThreeDSecureInfoType.php | PHP | asf20 | 1,718 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* BankAccountDetailsType
*
* BankAccountDetailsType
*
* @package PayPal
*/
class BankAccountDetailsType extends XSDSimpleType
{
/**
* Name of bank
*/
var $Name;
/**
* Type of bank account: Checking or Savings
*/
var $Type;
/**
* Merchant ’s bank routing number
*/
var $RoutingNumber;
/**
* Merchant ’s bank account number
*/
var $AccountNumber;
function BankAccountDetailsType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'Name' =>
array (
'required' => true,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Type' =>
array (
'required' => true,
'type' => 'BankAccountTypeType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'RoutingNumber' =>
array (
'required' => true,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'AccountNumber' =>
array (
'required' => true,
'type' => 'string',
'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 getType()
{
return $this->Type;
}
function setType($Type, $charset = 'iso-8859-1')
{
$this->Type = $Type;
$this->_elements['Type']['charset'] = $charset;
}
function getRoutingNumber()
{
return $this->RoutingNumber;
}
function setRoutingNumber($RoutingNumber, $charset = 'iso-8859-1')
{
$this->RoutingNumber = $RoutingNumber;
$this->_elements['RoutingNumber']['charset'] = $charset;
}
function getAccountNumber()
{
return $this->AccountNumber;
}
function setAccountNumber($AccountNumber, $charset = 'iso-8859-1')
{
$this->AccountNumber = $AccountNumber;
$this->_elements['AccountNumber']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/BankAccountDetailsType.php | PHP | asf20 | 2,626 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractRequestType.php';
/**
* DoUATPAuthorizationRequestType
*
* @package PayPal
*/
class DoUATPAuthorizationRequestType extends AbstractRequestType
{
var $UATPDetails;
/**
* Type of transaction to authorize. The only allowable value is
*/
var $TransactionEntity;
/**
* Amount to authorize.
*/
var $Amount;
/**
* Invoice ID. A pass through.
*/
var $InvoiceID;
function DoUATPAuthorizationRequestType()
{
parent::AbstractRequestType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'UATPDetails' =>
array (
'required' => true,
'type' => 'UATPDetailsType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'TransactionEntity' =>
array (
'required' => false,
'type' => 'TransactionEntityType',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'Amount' =>
array (
'required' => true,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'InvoiceID' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
));
}
function getUATPDetails()
{
return $this->UATPDetails;
}
function setUATPDetails($UATPDetails, $charset = 'iso-8859-1')
{
$this->UATPDetails = $UATPDetails;
$this->_elements['UATPDetails']['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;
}
function getInvoiceID()
{
return $this->InvoiceID;
}
function setInvoiceID($InvoiceID, $charset = 'iso-8859-1')
{
$this->InvoiceID = $InvoiceID;
$this->_elements['InvoiceID']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/DoUATPAuthorizationRequestType.php | PHP | asf20 | 2,670 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* OptionType
*
* OptionType PayPal item options for shopping cart.
*
* @package PayPal
*/
class OptionType extends XSDSimpleType
{
function OptionType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_attributes = array_merge($this->_attributes,
array (
'name' =>
array (
'name' => 'name',
'type' => 'xs:string',
'use' => 'required',
),
'value' =>
array (
'name' => 'value',
'type' => 'xs:string',
'use' => 'required',
),
));
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/OptionType.php | PHP | asf20 | 857 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractResponseType.php';
/**
* MassPayResponseType
*
* @package PayPal
*/
class MassPayResponseType extends AbstractResponseType
{
function MassPayResponseType()
{
parent::AbstractResponseType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/MassPayResponseType.php | PHP | asf20 | 392 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* EnhancedCompleteRecoupRequestDetailsType
*
* @package PayPal
*/
class EnhancedCompleteRecoupRequestDetailsType extends XSDSimpleType
{
function EnhancedCompleteRecoupRequestDetailsType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:EnhancedDataTypes';
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/EnhancedCompleteRecoupRequestDetailsType.php | PHP | asf20 | 443 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* CustomSecurityHeaderType
*
* Custom Securiy Header.
*
* @package PayPal
*/
class CustomSecurityHeaderType extends XSDSimpleType
{
var $eBayAuthToken;
var $HardExpirationWarning;
var $Credentials;
function CustomSecurityHeaderType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'eBayAuthToken' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'HardExpirationWarning' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Credentials' =>
array (
'required' => false,
'type' => 'UserIdPasswordType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function geteBayAuthToken()
{
return $this->eBayAuthToken;
}
function seteBayAuthToken($eBayAuthToken, $charset = 'iso-8859-1')
{
$this->eBayAuthToken = $eBayAuthToken;
$this->_elements['eBayAuthToken']['charset'] = $charset;
}
function getHardExpirationWarning()
{
return $this->HardExpirationWarning;
}
function setHardExpirationWarning($HardExpirationWarning, $charset = 'iso-8859-1')
{
$this->HardExpirationWarning = $HardExpirationWarning;
$this->_elements['HardExpirationWarning']['charset'] = $charset;
}
function getCredentials()
{
return $this->Credentials;
}
function setCredentials($Credentials, $charset = 'iso-8859-1')
{
$this->Credentials = $Credentials;
$this->_elements['Credentials']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/CustomSecurityHeaderType.php | PHP | asf20 | 2,123 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* ReverseTransactionRequestDetailsType
*
* @package PayPal
*/
class ReverseTransactionRequestDetailsType extends XSDSimpleType
{
/**
* Identifier of the transaction to reverse.
*/
var $TransactionID;
function ReverseTransactionRequestDetailsType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'TransactionID' =>
array (
'required' => false,
'type' => 'TransactionId',
'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;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/ReverseTransactionRequestDetailsType.php | PHP | asf20 | 1,109 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* SellerType
*
* Information about user used by selling applications there are number of required
* elements - they will always show up for seller node there is not such a call to
* do revise seller info. only added minoccur=0 to elements that will not show up
* in every type of request/responce
*
* @package PayPal
*/
class SellerType extends XSDSimpleType
{
var $AllowPaymentEdit;
var $BillingCurrency;
var $CheckoutEnabled;
var $CIPBankAccountStored;
var $GoodStanding;
var $LiveAuctionAuthorized;
/**
* Indicates whether the user has elected to participate as a seller in the
* Merchandising Manager feature.
*/
var $MerchandizingPref;
var $QualifiesForB2BVAT;
var $SellerLevel;
var $SellerPaymentAddress;
var $SchedulingInfo;
var $StoreOwner;
var $StoreURL;
function SellerType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'AllowPaymentEdit' =>
array (
'required' => true,
'type' => 'boolean',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'BillingCurrency' =>
array (
'required' => false,
'type' => 'CurrencyCodeType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'CheckoutEnabled' =>
array (
'required' => true,
'type' => NULL,
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'CIPBankAccountStored' =>
array (
'required' => true,
'type' => 'boolean',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'GoodStanding' =>
array (
'required' => true,
'type' => 'boolean',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'LiveAuctionAuthorized' =>
array (
'required' => true,
'type' => 'boolean',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'MerchandizingPref' =>
array (
'required' => true,
'type' => 'MerchandizingPrefCodeType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'QualifiesForB2BVAT' =>
array (
'required' => true,
'type' => 'boolean',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'SellerLevel' =>
array (
'required' => true,
'type' => NULL,
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'SellerPaymentAddress' =>
array (
'required' => false,
'type' => NULL,
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'SchedulingInfo' =>
array (
'required' => false,
'type' => 'SchedulingInfoType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'StoreOwner' =>
array (
'required' => true,
'type' => NULL,
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'StoreURL' =>
array (
'required' => false,
'type' => 'anyURI',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getAllowPaymentEdit()
{
return $this->AllowPaymentEdit;
}
function setAllowPaymentEdit($AllowPaymentEdit, $charset = 'iso-8859-1')
{
$this->AllowPaymentEdit = $AllowPaymentEdit;
$this->_elements['AllowPaymentEdit']['charset'] = $charset;
}
function getBillingCurrency()
{
return $this->BillingCurrency;
}
function setBillingCurrency($BillingCurrency, $charset = 'iso-8859-1')
{
$this->BillingCurrency = $BillingCurrency;
$this->_elements['BillingCurrency']['charset'] = $charset;
}
function getCheckoutEnabled()
{
return $this->CheckoutEnabled;
}
function setCheckoutEnabled($CheckoutEnabled, $charset = 'iso-8859-1')
{
$this->CheckoutEnabled = $CheckoutEnabled;
$this->_elements['CheckoutEnabled']['charset'] = $charset;
}
function getCIPBankAccountStored()
{
return $this->CIPBankAccountStored;
}
function setCIPBankAccountStored($CIPBankAccountStored, $charset = 'iso-8859-1')
{
$this->CIPBankAccountStored = $CIPBankAccountStored;
$this->_elements['CIPBankAccountStored']['charset'] = $charset;
}
function getGoodStanding()
{
return $this->GoodStanding;
}
function setGoodStanding($GoodStanding, $charset = 'iso-8859-1')
{
$this->GoodStanding = $GoodStanding;
$this->_elements['GoodStanding']['charset'] = $charset;
}
function getLiveAuctionAuthorized()
{
return $this->LiveAuctionAuthorized;
}
function setLiveAuctionAuthorized($LiveAuctionAuthorized, $charset = 'iso-8859-1')
{
$this->LiveAuctionAuthorized = $LiveAuctionAuthorized;
$this->_elements['LiveAuctionAuthorized']['charset'] = $charset;
}
function getMerchandizingPref()
{
return $this->MerchandizingPref;
}
function setMerchandizingPref($MerchandizingPref, $charset = 'iso-8859-1')
{
$this->MerchandizingPref = $MerchandizingPref;
$this->_elements['MerchandizingPref']['charset'] = $charset;
}
function getQualifiesForB2BVAT()
{
return $this->QualifiesForB2BVAT;
}
function setQualifiesForB2BVAT($QualifiesForB2BVAT, $charset = 'iso-8859-1')
{
$this->QualifiesForB2BVAT = $QualifiesForB2BVAT;
$this->_elements['QualifiesForB2BVAT']['charset'] = $charset;
}
function getSellerLevel()
{
return $this->SellerLevel;
}
function setSellerLevel($SellerLevel, $charset = 'iso-8859-1')
{
$this->SellerLevel = $SellerLevel;
$this->_elements['SellerLevel']['charset'] = $charset;
}
function getSellerPaymentAddress()
{
return $this->SellerPaymentAddress;
}
function setSellerPaymentAddress($SellerPaymentAddress, $charset = 'iso-8859-1')
{
$this->SellerPaymentAddress = $SellerPaymentAddress;
$this->_elements['SellerPaymentAddress']['charset'] = $charset;
}
function getSchedulingInfo()
{
return $this->SchedulingInfo;
}
function setSchedulingInfo($SchedulingInfo, $charset = 'iso-8859-1')
{
$this->SchedulingInfo = $SchedulingInfo;
$this->_elements['SchedulingInfo']['charset'] = $charset;
}
function getStoreOwner()
{
return $this->StoreOwner;
}
function setStoreOwner($StoreOwner, $charset = 'iso-8859-1')
{
$this->StoreOwner = $StoreOwner;
$this->_elements['StoreOwner']['charset'] = $charset;
}
function getStoreURL()
{
return $this->StoreURL;
}
function setStoreURL($StoreURL, $charset = 'iso-8859-1')
{
$this->StoreURL = $StoreURL;
$this->_elements['StoreURL']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/SellerType.php | PHP | asf20 | 7,812 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* APICredentialsType
*
* APICredentialsType
*
* @package PayPal
*/
class APICredentialsType extends XSDSimpleType
{
/**
* Merchant ’s PayPal API username Character length and limitations: 128
* alphanumeric characters
*/
var $Username;
/**
* Merchant ’s PayPal API password Character length and limitations: 40
* alphanumeric characters
*/
var $Password;
/**
* Merchant ’s PayPal API signature, if one exists.
*/
var $Signature;
/**
* Merchant ’s PayPal API certificate in PEM format, if one exists
*/
var $Certificate;
/**
* Merchant ’s PayPal API authentication mechanism.
*/
var $Type;
function APICredentialsType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'Username' =>
array (
'required' => true,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Password' =>
array (
'required' => true,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Signature' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Certificate' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Type' =>
array (
'required' => true,
'type' => 'APIAuthenticationType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getUsername()
{
return $this->Username;
}
function setUsername($Username, $charset = 'iso-8859-1')
{
$this->Username = $Username;
$this->_elements['Username']['charset'] = $charset;
}
function getPassword()
{
return $this->Password;
}
function setPassword($Password, $charset = 'iso-8859-1')
{
$this->Password = $Password;
$this->_elements['Password']['charset'] = $charset;
}
function getSignature()
{
return $this->Signature;
}
function setSignature($Signature, $charset = 'iso-8859-1')
{
$this->Signature = $Signature;
$this->_elements['Signature']['charset'] = $charset;
}
function getCertificate()
{
return $this->Certificate;
}
function setCertificate($Certificate, $charset = 'iso-8859-1')
{
$this->Certificate = $Certificate;
$this->_elements['Certificate']['charset'] = $charset;
}
function getType()
{
return $this->Type;
}
function setType($Type, $charset = 'iso-8859-1')
{
$this->Type = $Type;
$this->_elements['Type']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/APICredentialsType.php | PHP | asf20 | 3,336 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* SellerDetailsType
*
* Details about the seller.
*
* @package PayPal
*/
class SellerDetailsType extends XSDSimpleType
{
/**
* Unique identifier for the seller.
*/
var $SellerId;
/**
* The user name of the user at the marketplaces site.
*/
var $SellerUserName;
/**
* Date when the user registered with the marketplace.
*/
var $SellerRegistrationDate;
/**
* Seller Paypal Account Id contains the seller EmailId or PayerId or PhoneNo
* passed during the Request.
*/
var $PayPalAccountID;
function SellerDetailsType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'SellerId' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'SellerUserName' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'SellerRegistrationDate' =>
array (
'required' => false,
'type' => 'dateTime',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'PayPalAccountID' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getSellerId()
{
return $this->SellerId;
}
function setSellerId($SellerId, $charset = 'iso-8859-1')
{
$this->SellerId = $SellerId;
$this->_elements['SellerId']['charset'] = $charset;
}
function getSellerUserName()
{
return $this->SellerUserName;
}
function setSellerUserName($SellerUserName, $charset = 'iso-8859-1')
{
$this->SellerUserName = $SellerUserName;
$this->_elements['SellerUserName']['charset'] = $charset;
}
function getSellerRegistrationDate()
{
return $this->SellerRegistrationDate;
}
function setSellerRegistrationDate($SellerRegistrationDate, $charset = 'iso-8859-1')
{
$this->SellerRegistrationDate = $SellerRegistrationDate;
$this->_elements['SellerRegistrationDate']['charset'] = $charset;
}
function getPayPalAccountID()
{
return $this->PayPalAccountID;
}
function setPayPalAccountID($PayPalAccountID, $charset = 'iso-8859-1')
{
$this->PayPalAccountID = $PayPalAccountID;
$this->_elements['PayPalAccountID']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/SellerDetailsType.php | PHP | asf20 | 2,956 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* ValType
*
* @package PayPal
*/
class ValType extends XSDSimpleType
{
var $ValueLiteral;
function ValType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'ValueLiteral' =>
array (
'required' => true,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
$this->_attributes = array_merge($this->_attributes,
array (
'ValueID' =>
array (
'name' => 'ValueID',
'type' => 'xs:string',
'use' => 'optional',
),
));
}
function getValueLiteral()
{
return $this->ValueLiteral;
}
function setValueLiteral($ValueLiteral, $charset = 'iso-8859-1')
{
$this->ValueLiteral = $ValueLiteral;
$this->_elements['ValueLiteral']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/ValType.php | PHP | asf20 | 1,217 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* TransactionType
*
* Contains information about a single transaction. A transaction contains
* information about the sale of a particular item. The system creates a
* transaction when a buyer has made a purchase (Fixed Price items) or is the
* winning bidder (BIN and auction items). A listing can be associated with one or
* more transactions in these cases: Multi-Item Fixed Price Listings Dutch Auction
* Listings A listing is associated with a single transaction in these cases:
* Single-Item Fixed Price Listings Single-Item Auction Listings
*
* @package PayPal
*/
class TransactionType extends XSDSimpleType
{
/**
* The amount the buyer paid for the item or agreed to pay, depending on how far
* into the checkout process the item is. If the seller allowed the buyer to change
* the item total, the buyer is able to change the total until the time that the
* transaction's status moves to Complete. Determine whether the buyer changed the
* amount by calling GetSellerTransactions or GetSellerTransactions and comparing
* the AmountPaid value to what the seller expected. For Motors items, AmountPaid
* is the amount paid by the buyer for the deposit.
*/
var $AmountPaid;
/**
* Container for buyer data.
*/
var $Buyer;
/**
* Includes shipping payment data.
*/
var $ShippingDetails;
/**
* Value returned in the Transaction/AmountPaid element, converted to the currency
* indicated by SiteCurrency.
*/
var $ConvertedAmountPaid;
/**
* Value returned in the Transaction/TransactionPrice element, converted to the
* currency indicated by SiteCurrency.
*/
var $ConvertedTransactionPrice;
/**
* For fixed-price, Stores, and BIN items indicates when the purchase (or BIN)
* occurred. For all other item types indicates when the transaction was created
* (the time when checkout was initiated).
*/
var $CreatedDate;
/**
* Deposit type for Motors items. If item is not a Motors item, then returns a
* DepositType of None. Possible values: None Other Method Fast Deposit
*/
var $DepositType;
/**
* Item info associated with the transaction.
*/
var $Item;
/**
* Contains the number of individual items the buyer purchased in the transaction.
*/
var $QuantityPurchased;
/**
* Shipping cost totals shown to user (for both flat and calculated rates).
*/
var $ShippingHandlingTotal;
/**
* Container node for transaction status data.
*/
var $Status;
/**
* Unique identifier for a transaction. Returns 0 when Type=1 (Chinese auction).
* Typically, an ItemID and a TransactionID uniquely identify a checkout
* transaction.
*/
var $TransactionID;
/**
* Unique identifier for an authorization.
*/
var $AuthorizationID;
/**
* Price of the item, before shipping and sales tax. For Motors, TransactionPrice
* is the deposit amount.
*/
var $TransactionPrice;
/**
* VAT rate for the item, if the item price includes the VAT rate. Specify the
* VATPercent if you want include the net price in addition to the gross price in
* the listing. VAT rates vary depending on the item and on the user's country of
* residence; therefore a business seller is responsible for entering the correct
* VAT rate (it will not be calculated by eBay).
*/
var $VATPercent;
function TransactionType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'AmountPaid' =>
array (
'required' => false,
'type' => NULL,
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Buyer' =>
array (
'required' => false,
'type' => 'UserType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ShippingDetails' =>
array (
'required' => false,
'type' => NULL,
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ConvertedAmountPaid' =>
array (
'required' => false,
'type' => 'AmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ConvertedTransactionPrice' =>
array (
'required' => false,
'type' => 'AmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'CreatedDate' =>
array (
'required' => false,
'type' => 'dateTime',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'DepositType' =>
array (
'required' => false,
'type' => 'DepositTypeCodeType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Item' =>
array (
'required' => false,
'type' => 'ItemType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'QuantityPurchased' =>
array (
'required' => false,
'type' => 'int',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ShippingHandlingTotal' =>
array (
'required' => false,
'type' => 'AmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Status' =>
array (
'required' => false,
'type' => 'TransactionStatusType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'TransactionID' =>
array (
'required' => false,
'type' => NULL,
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'AuthorizationID' =>
array (
'required' => true,
'type' => NULL,
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'TransactionPrice' =>
array (
'required' => false,
'type' => 'AmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'VATPercent' =>
array (
'required' => false,
'type' => 'decimal',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getAmountPaid()
{
return $this->AmountPaid;
}
function setAmountPaid($AmountPaid, $charset = 'iso-8859-1')
{
$this->AmountPaid = $AmountPaid;
$this->_elements['AmountPaid']['charset'] = $charset;
}
function getBuyer()
{
return $this->Buyer;
}
function setBuyer($Buyer, $charset = 'iso-8859-1')
{
$this->Buyer = $Buyer;
$this->_elements['Buyer']['charset'] = $charset;
}
function getShippingDetails()
{
return $this->ShippingDetails;
}
function setShippingDetails($ShippingDetails, $charset = 'iso-8859-1')
{
$this->ShippingDetails = $ShippingDetails;
$this->_elements['ShippingDetails']['charset'] = $charset;
}
function getConvertedAmountPaid()
{
return $this->ConvertedAmountPaid;
}
function setConvertedAmountPaid($ConvertedAmountPaid, $charset = 'iso-8859-1')
{
$this->ConvertedAmountPaid = $ConvertedAmountPaid;
$this->_elements['ConvertedAmountPaid']['charset'] = $charset;
}
function getConvertedTransactionPrice()
{
return $this->ConvertedTransactionPrice;
}
function setConvertedTransactionPrice($ConvertedTransactionPrice, $charset = 'iso-8859-1')
{
$this->ConvertedTransactionPrice = $ConvertedTransactionPrice;
$this->_elements['ConvertedTransactionPrice']['charset'] = $charset;
}
function getCreatedDate()
{
return $this->CreatedDate;
}
function setCreatedDate($CreatedDate, $charset = 'iso-8859-1')
{
$this->CreatedDate = $CreatedDate;
$this->_elements['CreatedDate']['charset'] = $charset;
}
function getDepositType()
{
return $this->DepositType;
}
function setDepositType($DepositType, $charset = 'iso-8859-1')
{
$this->DepositType = $DepositType;
$this->_elements['DepositType']['charset'] = $charset;
}
function getItem()
{
return $this->Item;
}
function setItem($Item, $charset = 'iso-8859-1')
{
$this->Item = $Item;
$this->_elements['Item']['charset'] = $charset;
}
function getQuantityPurchased()
{
return $this->QuantityPurchased;
}
function setQuantityPurchased($QuantityPurchased, $charset = 'iso-8859-1')
{
$this->QuantityPurchased = $QuantityPurchased;
$this->_elements['QuantityPurchased']['charset'] = $charset;
}
function getShippingHandlingTotal()
{
return $this->ShippingHandlingTotal;
}
function setShippingHandlingTotal($ShippingHandlingTotal, $charset = 'iso-8859-1')
{
$this->ShippingHandlingTotal = $ShippingHandlingTotal;
$this->_elements['ShippingHandlingTotal']['charset'] = $charset;
}
function getStatus()
{
return $this->Status;
}
function setStatus($Status, $charset = 'iso-8859-1')
{
$this->Status = $Status;
$this->_elements['Status']['charset'] = $charset;
}
function getTransactionID()
{
return $this->TransactionID;
}
function setTransactionID($TransactionID, $charset = 'iso-8859-1')
{
$this->TransactionID = $TransactionID;
$this->_elements['TransactionID']['charset'] = $charset;
}
function getAuthorizationID()
{
return $this->AuthorizationID;
}
function setAuthorizationID($AuthorizationID, $charset = 'iso-8859-1')
{
$this->AuthorizationID = $AuthorizationID;
$this->_elements['AuthorizationID']['charset'] = $charset;
}
function getTransactionPrice()
{
return $this->TransactionPrice;
}
function setTransactionPrice($TransactionPrice, $charset = 'iso-8859-1')
{
$this->TransactionPrice = $TransactionPrice;
$this->_elements['TransactionPrice']['charset'] = $charset;
}
function getVATPercent()
{
return $this->VATPercent;
}
function setVATPercent($VATPercent, $charset = 'iso-8859-1')
{
$this->VATPercent = $VATPercent;
$this->_elements['VATPercent']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/TransactionType.php | PHP | asf20 | 11,267 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractResponseType.php';
/**
* BMGetButtonDetailsResponseType
*
* @package PayPal
*/
class BMGetButtonDetailsResponseType extends AbstractResponseType
{
var $Website;
var $Email;
var $Mobile;
var $HostedButtonID;
/**
* Type of button.
*/
var $ButtonType;
/**
* Type of button code.
*/
var $ButtonCode;
/**
* Button sub type.
*/
var $ButtonSubType;
/**
* Button Variable information
*/
var $ButtonVar;
var $OptionDetails;
/**
* Text field
*/
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 BMGetButtonDetailsResponseType()
{
parent::AbstractResponseType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'Website' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'Email' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'Mobile' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'HostedButtonID' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'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 getWebsite()
{
return $this->Website;
}
function setWebsite($Website, $charset = 'iso-8859-1')
{
$this->Website = $Website;
$this->_elements['Website']['charset'] = $charset;
}
function getEmail()
{
return $this->Email;
}
function setEmail($Email, $charset = 'iso-8859-1')
{
$this->Email = $Email;
$this->_elements['Email']['charset'] = $charset;
}
function getMobile()
{
return $this->Mobile;
}
function setMobile($Mobile, $charset = 'iso-8859-1')
{
$this->Mobile = $Mobile;
$this->_elements['Mobile']['charset'] = $charset;
}
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 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/bmgetbuttondetailsresponsetype.php | PHP | asf20 | 8,811 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractRequestType.php';
/**
* ManageRecurringPaymentsProfileStatusRequestType
*
* @package PayPal
*/
class ManageRecurringPaymentsProfileStatusRequestType extends AbstractRequestType
{
var $ManageRecurringPaymentsProfileStatusRequestDetails;
function ManageRecurringPaymentsProfileStatusRequestType()
{
parent::AbstractRequestType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'ManageRecurringPaymentsProfileStatusRequestDetails' =>
array (
'required' => true,
'type' => 'ManageRecurringPaymentsProfileStatusRequestDetailsType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getManageRecurringPaymentsProfileStatusRequestDetails()
{
return $this->ManageRecurringPaymentsProfileStatusRequestDetails;
}
function setManageRecurringPaymentsProfileStatusRequestDetails($ManageRecurringPaymentsProfileStatusRequestDetails, $charset = 'iso-8859-1')
{
$this->ManageRecurringPaymentsProfileStatusRequestDetails = $ManageRecurringPaymentsProfileStatusRequestDetails;
$this->_elements['ManageRecurringPaymentsProfileStatusRequestDetails']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/ManageRecurringPaymentsProfileStatusRequestType.php | PHP | asf20 | 1,459 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* RecurringPaymentsSummaryType
*
* @package PayPal
*/
class RecurringPaymentsSummaryType extends XSDSimpleType
{
var $NextBillingDate;
var $NumberCyclesCompleted;
var $NumberCyclesRemaining;
var $OutstandingBalance;
var $FailedPaymentCount;
var $LastPaymentDate;
var $LastPaymentAmount;
function RecurringPaymentsSummaryType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'NextBillingDate' =>
array (
'required' => false,
'type' => 'dateTime',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'NumberCyclesCompleted' =>
array (
'required' => true,
'type' => 'int',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'NumberCyclesRemaining' =>
array (
'required' => true,
'type' => 'int',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'OutstandingBalance' =>
array (
'required' => true,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'FailedPaymentCount' =>
array (
'required' => true,
'type' => 'int',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'LastPaymentDate' =>
array (
'required' => false,
'type' => 'dateTime',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'LastPaymentAmount' =>
array (
'required' => false,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getNextBillingDate()
{
return $this->NextBillingDate;
}
function setNextBillingDate($NextBillingDate, $charset = 'iso-8859-1')
{
$this->NextBillingDate = $NextBillingDate;
$this->_elements['NextBillingDate']['charset'] = $charset;
}
function getNumberCyclesCompleted()
{
return $this->NumberCyclesCompleted;
}
function setNumberCyclesCompleted($NumberCyclesCompleted, $charset = 'iso-8859-1')
{
$this->NumberCyclesCompleted = $NumberCyclesCompleted;
$this->_elements['NumberCyclesCompleted']['charset'] = $charset;
}
function getNumberCyclesRemaining()
{
return $this->NumberCyclesRemaining;
}
function setNumberCyclesRemaining($NumberCyclesRemaining, $charset = 'iso-8859-1')
{
$this->NumberCyclesRemaining = $NumberCyclesRemaining;
$this->_elements['NumberCyclesRemaining']['charset'] = $charset;
}
function getOutstandingBalance()
{
return $this->OutstandingBalance;
}
function setOutstandingBalance($OutstandingBalance, $charset = 'iso-8859-1')
{
$this->OutstandingBalance = $OutstandingBalance;
$this->_elements['OutstandingBalance']['charset'] = $charset;
}
function getFailedPaymentCount()
{
return $this->FailedPaymentCount;
}
function setFailedPaymentCount($FailedPaymentCount, $charset = 'iso-8859-1')
{
$this->FailedPaymentCount = $FailedPaymentCount;
$this->_elements['FailedPaymentCount']['charset'] = $charset;
}
function getLastPaymentDate()
{
return $this->LastPaymentDate;
}
function setLastPaymentDate($LastPaymentDate, $charset = 'iso-8859-1')
{
$this->LastPaymentDate = $LastPaymentDate;
$this->_elements['LastPaymentDate']['charset'] = $charset;
}
function getLastPaymentAmount()
{
return $this->LastPaymentAmount;
}
function setLastPaymentAmount($LastPaymentAmount, $charset = 'iso-8859-1')
{
$this->LastPaymentAmount = $LastPaymentAmount;
$this->_elements['LastPaymentAmount']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/RecurringPaymentsSummaryType.php | PHP | asf20 | 4,406 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* ManageRecurringPaymentsProfileStatusRequestDetailsType
*
* @package PayPal
*/
class ManageRecurringPaymentsProfileStatusRequestDetailsType extends XSDSimpleType
{
var $ProfileID;
var $Action;
var $Note;
function ManageRecurringPaymentsProfileStatusRequestDetailsType()
{
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',
),
'Action' =>
array (
'required' => true,
'type' => 'StatusChangeActionType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Note' =>
array (
'required' => false,
'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;
}
function getAction()
{
return $this->Action;
}
function setAction($Action, $charset = 'iso-8859-1')
{
$this->Action = $Action;
$this->_elements['Action']['charset'] = $charset;
}
function getNote()
{
return $this->Note;
}
function setNote($Note, $charset = 'iso-8859-1')
{
$this->Note = $Note;
$this->_elements['Note']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/ManageRecurringPaymentsProfileStatusRequestDetailsType.php | PHP | asf20 | 1,951 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* FeeType
*
* Definition of an eBay Fee type.
*
* @package PayPal
*/
class FeeType extends XSDSimpleType
{
var $Name;
var $Fee;
function FeeType()
{
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',
),
'Fee' =>
array (
'required' => false,
'type' => 'AmountType',
'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 getFee()
{
return $this->Fee;
}
function setFee($Fee, $charset = 'iso-8859-1')
{
$this->Fee = $Fee;
$this->_elements['Fee']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/FeeType.php | PHP | asf20 | 1,335 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* FeesType
*
* Following are the current set of eBay fee types AuctionLengthFee BoldFee
* BuyItNowFee CategoryFeaturedFee FeaturedFee FeaturedGalleryFee
* FixedPriceDurationFee GalleryFee GiftIconFee HighLightFee InsertionFee
* ListingDesignerFee ListingFee PhotoDisplayFee PhotoFee ReserveFee SchedulingFee
* ThirtyDaysAucFee Instances of this type could hold one or more supported types
* of fee.
*
* @package PayPal
*/
class FeesType extends XSDSimpleType
{
var $Fee;
function FeesType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'Fee' =>
array (
'required' => true,
'type' => 'FeeType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getFee()
{
return $this->Fee;
}
function setFee($Fee, $charset = 'iso-8859-1')
{
$this->Fee = $Fee;
$this->_elements['Fee']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/FeesType.php | PHP | asf20 | 1,259 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* BillingAgreementDetailsType
*
* @package PayPal
*/
class BillingAgreementDetailsType extends XSDSimpleType
{
var $BillingType;
/**
* Only needed for AutoBill billinng type.
*/
var $BillingAgreementDescription;
var $PaymentType;
/**
* Custom annotation field for your exclusive use.
*/
var $BillingAgreementCustom;
function BillingAgreementDetailsType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'BillingType' =>
array (
'required' => true,
'type' => 'BillingCodeType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'BillingAgreementDescription' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'PaymentType' =>
array (
'required' => false,
'type' => 'MerchantPullPaymentCodeType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'BillingAgreementCustom' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getBillingType()
{
return $this->BillingType;
}
function setBillingType($BillingType, $charset = 'iso-8859-1')
{
$this->BillingType = $BillingType;
$this->_elements['BillingType']['charset'] = $charset;
}
function getBillingAgreementDescription()
{
return $this->BillingAgreementDescription;
}
function setBillingAgreementDescription($BillingAgreementDescription, $charset = 'iso-8859-1')
{
$this->BillingAgreementDescription = $BillingAgreementDescription;
$this->_elements['BillingAgreementDescription']['charset'] = $charset;
}
function getPaymentType()
{
return $this->PaymentType;
}
function setPaymentType($PaymentType, $charset = 'iso-8859-1')
{
$this->PaymentType = $PaymentType;
$this->_elements['PaymentType']['charset'] = $charset;
}
function getBillingAgreementCustom()
{
return $this->BillingAgreementCustom;
}
function setBillingAgreementCustom($BillingAgreementCustom, $charset = 'iso-8859-1')
{
$this->BillingAgreementCustom = $BillingAgreementCustom;
$this->_elements['BillingAgreementCustom']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/BillingAgreementDetailsType.php | PHP | asf20 | 2,883 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractResponseType.php';
/**
* DoExpressCheckoutPaymentResponseType
*
* @package PayPal
*/
class DoExpressCheckoutPaymentResponseType extends AbstractResponseType
{
var $DoExpressCheckoutPaymentResponseDetails;
var $FMFDetails;
function DoExpressCheckoutPaymentResponseType()
{
parent::AbstractResponseType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'DoExpressCheckoutPaymentResponseDetails' =>
array (
'required' => true,
'type' => 'DoExpressCheckoutPaymentResponseDetailsType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'FMFDetails' =>
array (
'required' => false,
'type' => 'FMFDetailsType',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
));
}
function getDoExpressCheckoutPaymentResponseDetails()
{
return $this->DoExpressCheckoutPaymentResponseDetails;
}
function setDoExpressCheckoutPaymentResponseDetails($DoExpressCheckoutPaymentResponseDetails, $charset = 'iso-8859-1')
{
$this->DoExpressCheckoutPaymentResponseDetails = $DoExpressCheckoutPaymentResponseDetails;
$this->_elements['DoExpressCheckoutPaymentResponseDetails']['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/DoExpressCheckoutPaymentResponseType.php | PHP | asf20 | 1,804 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* PaymentDetailsItemType
*
* PaymentDetailsItemType Information about a Payment Item.
*
* @package PayPal
*/
class PaymentDetailsItemType extends XSDSimpleType
{
/**
* Item name.
*/
var $Name;
/**
* Item number.
*/
var $Number;
/**
* Item quantity.
*/
var $Quantity;
/**
* Item sales tax.
*/
var $Tax;
/**
* Cost of item You must set the currencyID attribute to one of the three-character
* currency codes for any of the supported PayPal currencies.
*/
var $Amount;
/**
* Ebay specific details.
*/
var $EbayItemPaymentDetailsItem;
/**
* Promotional financing code for item. Part of the Merchant Services Promotion
* Financing feature.
*/
var $PromoCode;
var $ProductCategory;
/**
* Item description.
*/
var $Description;
/**
* Information about the Item weight.
*/
var $ItemWeight;
/**
* Information about the Item length.
*/
var $ItemLength;
/**
* Information about the Item width.
*/
var $ItemWidth;
/**
* Information about the Item height.
*/
var $ItemHeight;
/**
* URL for the item.
*/
var $ItemURL;
/**
* Enhanced data for each item in the cart.
*/
var $EnhancedItemData;
/**
* Item category - physical or digital.
*/
var $ItemCategory;
function PaymentDetailsItemType()
{
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' => 'integer',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Tax' =>
array (
'required' => false,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Amount' =>
array (
'required' => false,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'EbayItemPaymentDetailsItem' =>
array (
'required' => false,
'type' => 'EbayItemPaymentDetailsItemType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'PromoCode' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ProductCategory' =>
array (
'required' => false,
'type' => 'ProductCategoryType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Description' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ItemWeight' =>
array (
'required' => false,
'type' => 'MeasureType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ItemLength' =>
array (
'required' => false,
'type' => 'MeasureType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ItemWidth' =>
array (
'required' => false,
'type' => 'MeasureType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ItemHeight' =>
array (
'required' => false,
'type' => 'MeasureType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ItemURL' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'EnhancedItemData' =>
array (
'required' => false,
'type' => 'EnhancedItemDataType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ItemCategory' =>
array (
'required' => false,
'type' => 'ItemCategoryType',
'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 getTax()
{
return $this->Tax;
}
function setTax($Tax, $charset = 'iso-8859-1')
{
$this->Tax = $Tax;
$this->_elements['Tax']['charset'] = $charset;
}
function getAmount()
{
return $this->Amount;
}
function setAmount($Amount, $charset = 'iso-8859-1')
{
$this->Amount = $Amount;
$this->_elements['Amount']['charset'] = $charset;
}
function getEbayItemPaymentDetailsItem()
{
return $this->EbayItemPaymentDetailsItem;
}
function setEbayItemPaymentDetailsItem($EbayItemPaymentDetailsItem, $charset = 'iso-8859-1')
{
$this->EbayItemPaymentDetailsItem = $EbayItemPaymentDetailsItem;
$this->_elements['EbayItemPaymentDetailsItem']['charset'] = $charset;
}
function getPromoCode()
{
return $this->PromoCode;
}
function setPromoCode($PromoCode, $charset = 'iso-8859-1')
{
$this->PromoCode = $PromoCode;
$this->_elements['PromoCode']['charset'] = $charset;
}
function getProductCategory()
{
return $this->ProductCategory;
}
function setProductCategory($ProductCategory, $charset = 'iso-8859-1')
{
$this->ProductCategory = $ProductCategory;
$this->_elements['ProductCategory']['charset'] = $charset;
}
function getDescription()
{
return $this->Description;
}
function setDescription($Description, $charset = 'iso-8859-1')
{
$this->Description = $Description;
$this->_elements['Description']['charset'] = $charset;
}
function getItemWeight()
{
return $this->ItemWeight;
}
function setItemWeight($ItemWeight, $charset = 'iso-8859-1')
{
$this->ItemWeight = $ItemWeight;
$this->_elements['ItemWeight']['charset'] = $charset;
}
function getItemLength()
{
return $this->ItemLength;
}
function setItemLength($ItemLength, $charset = 'iso-8859-1')
{
$this->ItemLength = $ItemLength;
$this->_elements['ItemLength']['charset'] = $charset;
}
function getItemWidth()
{
return $this->ItemWidth;
}
function setItemWidth($ItemWidth, $charset = 'iso-8859-1')
{
$this->ItemWidth = $ItemWidth;
$this->_elements['ItemWidth']['charset'] = $charset;
}
function getItemHeight()
{
return $this->ItemHeight;
}
function setItemHeight($ItemHeight, $charset = 'iso-8859-1')
{
$this->ItemHeight = $ItemHeight;
$this->_elements['ItemHeight']['charset'] = $charset;
}
function getItemURL()
{
return $this->ItemURL;
}
function setItemURL($ItemURL, $charset = 'iso-8859-1')
{
$this->ItemURL = $ItemURL;
$this->_elements['ItemURL']['charset'] = $charset;
}
function getEnhancedItemData()
{
return $this->EnhancedItemData;
}
function setEnhancedItemData($EnhancedItemData, $charset = 'iso-8859-1')
{
$this->EnhancedItemData = $EnhancedItemData;
$this->_elements['EnhancedItemData']['charset'] = $charset;
}
function getItemCategory()
{
return $this->ItemCategory;
}
function setItemCategory($ItemCategory, $charset = 'iso-8859-1')
{
$this->ItemCategory = $ItemCategory;
$this->_elements['ItemCategory']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/PaymentDetailsItemType.php | PHP | asf20 | 9,366 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* CreateRecurringPaymentsProfileResponseDetailsType
*
* @package PayPal
*/
class CreateRecurringPaymentsProfileResponseDetailsType extends XSDSimpleType
{
/**
* Recurring Billing Profile ID
*/
var $ProfileID;
/**
* Recurring Billing Profile Status
*/
var $ProfileStatus;
/**
* Transaction id from DCC initial payment
*/
var $TransactionID;
/**
* Response from DCC initial payment
*/
var $DCCProcessorResponse;
/**
* Return code if DCC initial payment fails
*/
var $DCCReturnCode;
function CreateRecurringPaymentsProfileResponseDetailsType()
{
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' => false,
'type' => 'RecurringPaymentsProfileStatusType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'TransactionID' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'DCCProcessorResponse' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'DCCReturnCode' =>
array (
'required' => false,
'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;
}
function getProfileStatus()
{
return $this->ProfileStatus;
}
function setProfileStatus($ProfileStatus, $charset = 'iso-8859-1')
{
$this->ProfileStatus = $ProfileStatus;
$this->_elements['ProfileStatus']['charset'] = $charset;
}
function getTransactionID()
{
return $this->TransactionID;
}
function setTransactionID($TransactionID, $charset = 'iso-8859-1')
{
$this->TransactionID = $TransactionID;
$this->_elements['TransactionID']['charset'] = $charset;
}
function getDCCProcessorResponse()
{
return $this->DCCProcessorResponse;
}
function setDCCProcessorResponse($DCCProcessorResponse, $charset = 'iso-8859-1')
{
$this->DCCProcessorResponse = $DCCProcessorResponse;
$this->_elements['DCCProcessorResponse']['charset'] = $charset;
}
function getDCCReturnCode()
{
return $this->DCCReturnCode;
}
function setDCCReturnCode($DCCReturnCode, $charset = 'iso-8859-1')
{
$this->DCCReturnCode = $DCCReturnCode;
$this->_elements['DCCReturnCode']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/CreateRecurringPaymentsProfileResponseDetailsType.php | PHP | asf20 | 3,474 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractRequestType.php';
/**
* TransactionSearchRequestType
*
* @package PayPal
*/
class TransactionSearchRequestType 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;
/**
* Search by the buyer's email address
*/
var $Payer;
/**
* Search by the receiver's email address. If the merchant account has only one
* email, this is the primary email. Can also be a non-primary email.
*/
var $Receiver;
/**
* Search by the PayPal Account Optional receipt ID
*/
var $ReceiptID;
/**
* Search by the transaction ID.
*/
var $TransactionID;
/**
* Search by Recurring Payment Profile id. The ProfileID is returned as part of the
* CreateRecurringPaymentsProfile API response.
*/
var $ProfileID;
/**
* Search by the buyer's name
*/
var $PayerName;
/**
* Search by item number of the purchased goods.
*/
var $AuctionItemNumber;
/**
* Search by invoice identification key, as set by you for the original
* transaction. InvoiceID searches the invoice records for items sold by the
* merchant, not the items purchased.
*/
var $InvoiceID;
var $CardNumber;
/**
* Search by classification of transaction. Some kinds of possible classes of
* transactions are not searchable with TransactionSearchRequest. You cannot search
* for bank transfer withdrawals, for example.
*/
var $TransactionClass;
/**
* Search by transaction amount
*/
var $Amount;
/**
* Search by currency code
*/
var $CurrencyCode;
/**
* Search by transaction status
*/
var $Status;
function TransactionSearchRequestType()
{
parent::AbstractRequestType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'StartDate' =>
array (
'required' => true,
'type' => 'dateTime',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'EndDate' =>
array (
'required' => false,
'type' => 'dateTime',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'Payer' =>
array (
'required' => false,
'type' => 'EmailAddressType',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'Receiver' =>
array (
'required' => false,
'type' => 'EmailAddressType',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'ReceiptID' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'TransactionID' =>
array (
'required' => false,
'type' => 'TransactionId',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'ProfileID' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'PayerName' =>
array (
'required' => false,
'type' => 'PersonNameType',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'AuctionItemNumber' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'InvoiceID' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'CardNumber' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'TransactionClass' =>
array (
'required' => false,
'type' => 'PaymentTransactionClassCodeType',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'Amount' =>
array (
'required' => false,
'type' => 'BasicAmountType',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'CurrencyCode' =>
array (
'required' => false,
'type' => 'CurrencyCodeType',
'namespace' => 'urn:ebay:api:PayPalAPI',
),
'Status' =>
array (
'required' => false,
'type' => 'PaymentTransactionStatusCodeType',
'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;
}
function getPayer()
{
return $this->Payer;
}
function setPayer($Payer, $charset = 'iso-8859-1')
{
$this->Payer = $Payer;
$this->_elements['Payer']['charset'] = $charset;
}
function getReceiver()
{
return $this->Receiver;
}
function setReceiver($Receiver, $charset = 'iso-8859-1')
{
$this->Receiver = $Receiver;
$this->_elements['Receiver']['charset'] = $charset;
}
function getReceiptID()
{
return $this->ReceiptID;
}
function setReceiptID($ReceiptID, $charset = 'iso-8859-1')
{
$this->ReceiptID = $ReceiptID;
$this->_elements['ReceiptID']['charset'] = $charset;
}
function getTransactionID()
{
return $this->TransactionID;
}
function setTransactionID($TransactionID, $charset = 'iso-8859-1')
{
$this->TransactionID = $TransactionID;
$this->_elements['TransactionID']['charset'] = $charset;
}
function getProfileID()
{
return $this->ProfileID;
}
function setProfileID($ProfileID, $charset = 'iso-8859-1')
{
$this->ProfileID = $ProfileID;
$this->_elements['ProfileID']['charset'] = $charset;
}
function getPayerName()
{
return $this->PayerName;
}
function setPayerName($PayerName, $charset = 'iso-8859-1')
{
$this->PayerName = $PayerName;
$this->_elements['PayerName']['charset'] = $charset;
}
function getAuctionItemNumber()
{
return $this->AuctionItemNumber;
}
function setAuctionItemNumber($AuctionItemNumber, $charset = 'iso-8859-1')
{
$this->AuctionItemNumber = $AuctionItemNumber;
$this->_elements['AuctionItemNumber']['charset'] = $charset;
}
function getInvoiceID()
{
return $this->InvoiceID;
}
function setInvoiceID($InvoiceID, $charset = 'iso-8859-1')
{
$this->InvoiceID = $InvoiceID;
$this->_elements['InvoiceID']['charset'] = $charset;
}
function getCardNumber()
{
return $this->CardNumber;
}
function setCardNumber($CardNumber, $charset = 'iso-8859-1')
{
$this->CardNumber = $CardNumber;
$this->_elements['CardNumber']['charset'] = $charset;
}
function getTransactionClass()
{
return $this->TransactionClass;
}
function setTransactionClass($TransactionClass, $charset = 'iso-8859-1')
{
$this->TransactionClass = $TransactionClass;
$this->_elements['TransactionClass']['charset'] = $charset;
}
function getAmount()
{
return $this->Amount;
}
function setAmount($Amount, $charset = 'iso-8859-1')
{
$this->Amount = $Amount;
$this->_elements['Amount']['charset'] = $charset;
}
function getCurrencyCode()
{
return $this->CurrencyCode;
}
function setCurrencyCode($CurrencyCode, $charset = 'iso-8859-1')
{
$this->CurrencyCode = $CurrencyCode;
$this->_elements['CurrencyCode']['charset'] = $charset;
}
function getStatus()
{
return $this->Status;
}
function setStatus($Status, $charset = 'iso-8859-1')
{
$this->Status = $Status;
$this->_elements['Status']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/TransactionSearchRequestType.php | PHP | asf20 | 9,159 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/DoExpressCheckoutPaymentResponseType.php';
/**
* DoUATPExpressCheckoutPaymentResponseType
*
* @package PayPal
*/
class DoUATPExpressCheckoutPaymentResponseType extends DoExpressCheckoutPaymentResponseType
{
var $UATPDetails;
function DoUATPExpressCheckoutPaymentResponseType()
{
parent::DoExpressCheckoutPaymentResponseType();
$this->_namespace = 'urn:ebay:api:PayPalAPI';
$this->_elements = array_merge($this->_elements,
array (
'UATPDetails' =>
array (
'required' => true,
'type' => 'UATPDetailsType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getUATPDetails()
{
return $this->UATPDetails;
}
function setUATPDetails($UATPDetails, $charset = 'iso-8859-1')
{
$this->UATPDetails = $UATPDetails;
$this->_elements['UATPDetails']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/DoUATPExpressCheckoutPaymentResponseType.php | PHP | asf20 | 1,099 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* GetAccessPermissionDetailsResponseDetailsType
*
* @package PayPal
*/
class GetAccessPermissionDetailsResponseDetailsType 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;
/**
* contains information about API Services
*/
var $AccessPermissionName;
/**
* contains information about API Services
*/
var $AccessPermissionStatus;
/**
* Encrypted PayPal customer account identification number.
*/
var $PayerID;
function GetAccessPermissionDetailsResponseDetailsType()
{
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',
),
'AccessPermissionName' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'AccessPermissionStatus' =>
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 getAccessPermissionName()
{
return $this->AccessPermissionName;
}
function setAccessPermissionName($AccessPermissionName, $charset = 'iso-8859-1')
{
$this->AccessPermissionName = $AccessPermissionName;
$this->_elements['AccessPermissionName']['charset'] = $charset;
}
function getAccessPermissionStatus()
{
return $this->AccessPermissionStatus;
}
function setAccessPermissionStatus($AccessPermissionStatus, $charset = 'iso-8859-1')
{
$this->AccessPermissionStatus = $AccessPermissionStatus;
$this->_elements['AccessPermissionStatus']['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/GetAccessPermissionDetailsResponseDetailsType.php | PHP | asf20 | 3,930 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* BuyerType
*
* Information about user used by buying applications
*
* @package PayPal
*/
class BuyerType extends XSDSimpleType
{
var $ShippingAddress;
function BuyerType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'ShippingAddress' =>
array (
'required' => false,
'type' => NULL,
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getShippingAddress()
{
return $this->ShippingAddress;
}
function setShippingAddress($ShippingAddress, $charset = 'iso-8859-1')
{
$this->ShippingAddress = $ShippingAddress;
$this->_elements['ShippingAddress']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/BuyerType.php | PHP | asf20 | 1,028 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* EnhancedDataType
*
* Enhanced Data Information. Example: AID for Airlines
*
* @package PayPal
*/
class EnhancedDataType extends XSDSimpleType
{
var $AirlineItinerary;
function EnhancedDataType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'AirlineItinerary' =>
array (
'required' => false,
'type' => 'AirlineItineraryType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getAirlineItinerary()
{
return $this->AirlineItinerary;
}
function setAirlineItinerary($AirlineItinerary, $charset = 'iso-8859-1')
{
$this->AirlineItinerary = $AirlineItinerary;
$this->_elements['AirlineItinerary']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/EnhancedDataType.php | PHP | asf20 | 1,078 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/XSDSimpleType.php';
/**
* ItemType
*
* @package PayPal
*/
class ItemType extends XSDSimpleType
{
/**
* Returns custom, application-specific data associated with the item. The data in
* this field is stored with the item in the items table at eBay, but is not used
* in any way by eBay. Use ApplicationData to store such special information as a
* part or SKU number. Maximum 32 characters in length.
*/
var $ApplicationData;
/**
* Carries one or more instances of the AttributeSet in a list.
*/
var $ListOfAttributeSets;
/**
* If true (1), indicates that the seller requested immediate payment for the item.
* False (0) if immediate payment was not requested. (Does not indicate whether the
* item is still a candidate for puchase via immediate payment.) Only applicable
* for items listed on US and UK sites in categories that support immediate
* payment, when seller has a Premier or Business PayPal account.
*/
var $AutoPay;
/**
* Indicates the status of the item's eligibility for the Buyer Protection Program.
* Possible values: ItemIneligible - Item is ineligible (e.g., category not
* applicable) ItemEligible - Item is eligible per standard criteria
* ItemMarkedIneligible - Item marked ineligible per special criteria (e.g.,
* seller's account closed) ItemMarkedIneligible - Item marked elegible per other
* criteria Applicable for items listed to the US site and for the Parts and
* Accessories category (6028) or Everything Else category (10368) (or their
* subcategories) on the eBay Motors site.
*/
var $BuyerProtection;
/**
* Amount a Buyer would need to bid to take advantage of the Buy It Now feature.
* Not applicable to Fixed-Price items (Type = 7 or 9) or AdFormat-type listings.
* For Fixed-Price items, see StartPrice instead.
*/
var $BuyItNowPrice;
/**
* Charity listing container.
*/
var $Charity;
/**
* 2-letter ISO 3166 Country Code.
*/
var $Country;
/**
* CrossPromotions container, if applicable shows promoted items
*/
var $CrossPromotion;
/**
* 3-letter ISO Currency Code.
*/
var $Currency;
/**
* Item Description.
*/
var $Description;
/**
* Online Escrow paid for by buyer or seller. Cannot use with real estate auctions.
* Escrow is recommended for for transactions over $500. Escrow service, available
* via Escrow.com, protects both buyer and seller by acting as a trusted
* third-party during the transaction and managing the payment process from start
* to finish. Also, if escrow by seller option used, then for Motors, this means
* that Escrow will be negotiated at the end of the auction.
*/
var $Escrow;
/**
* If set, a generic gift icon displays in the listing's Title. GiftIcon must be
* set to to be able to use GiftServices options (e.g., GiftExpressShipping,
* GiftShipToRecipient, or GiftWrap).
*/
var $GiftIcon;
/**
* Gift service options offered by the seller of the listed item.
*/
var $GiftServices;
/**
* Optional hit counter for the item's listing page. Possible values are:
* "NoHitCounter" "HonestyStyle" "GreenLED" "Hidden"
*/
var $HitCounter;
/**
* The ID that uniquely identifies the item listing.
*/
var $ItemID;
/**
* Includes listing details in terms of start and end time of listing (in GMT) as
* well as other details (e.g., orginal item for second chance, converted start
* price, etc.).
*/
var $ListingDetails;
/**
* When an item is first listed (using AddItem), a Layout template or a Theme
* template (or both) can be assigned to the item. A Layout template is assigned to
* a new item by specifying the Layout template ID (in the AddItem input argument
* LayoutID). Similarly, a Theme template is assigned to the item using the ThemeID
* argument.
*/
var $ListingDesigner;
/**
* Describes the number of days the auction will be active.
*/
var $ListingDuration;
/**
* Describes the types of enhancment supported for the item's listing.
*/
var $ListingEnhancement;
/**
* Describes the type of listing for the item a seller has chosen (e.g., Chinese,
* Dutch, FixedPrice, etc.).
*/
var $ListingType;
/**
* Indicates the geographical location of the item.
*/
var $Location;
/**
* Needed for add item only for partners.
*/
var $PartnerCode;
/**
* Needed for add item only for partners.
*/
var $PartnerName;
/**
* List of payment methods accepted by a seller from a buyer for a (checkout)
* transaction.
*/
var $PaymentMethods;
/**
* Valid PayPal e-mail address if seller has chosen PayPal as a payment method for
* the listed item.
*/
var $PayPalEmailAddress;
/**
* Container for data on the primary category of listing.
*/
var $PrimaryCategory;
/**
* Private auction. Not applicable to Fixed Price items.
*/
var $PrivateListing;
/**
* Number of items being sold in the auction.
*/
var $Quantity;
/**
* Region where the item is listed. See Region Table for values. If the item is
* listed with a Region of 0 (zero), then this return field denotes no region
* association with the item, meaning that it is not listing the item regionally.
*/
var $RegionID;
/**
* If true, creates a link from the old listing for the item to the new relist
* page, which accommodates users who might still look for the item under its old
* item ID. Also adds the relist ID to the old listing's record in the eBay
* database, which can be returned by calling GetItem for the old ItemId. If your
* application creates the listing page for the user, you need to add the relist
* link option to your application for your users.
*/
var $RelistLink;
/**
* Indicates the reserve price for a reserve auction. Returned only if DetailLevel
* = 4. ReservePrice is only returned for auctions with a reserve price where the
* user calling GetItem is the item's seller. Returned as null for International
* Fixed Price items. For more information on reserve price auctions, see
* http://pages.ebay.com/help/basics/f-format.html#1.
*/
var $ReservePrice;
/**
* Revise Status contains information about the item being revised.
*/
var $ReviseStatus;
var $ScheduleTime;
/**
* Container for data on the secondary category of listing. Secondary category is
* optional.
*/
var $SecondaryCategory;
/**
* Item picture information for pictures hosted at eBay site.
*/
var $SiteHostedPicture;
/**
* Seller user.
*/
var $Seller;
/**
* Container for for selling status information (e.g., BidCount, BidIncrement,
* HighBidder, MinimimumToBid, etc).
*/
var $SellingStatus;
/**
* Specifies where the seller is willing to ship the item. Default "SiteOnly".
* Valid values are: SiteOnly (the default) WorldWide SitePlusRegions WillNotShip
* If SitePlusRegions is selected, then at least one regions argument
* (ShipToNorthAmerica, ShipToEurope, etc.) must also be set.
*/
var $ShippingOption;
/**
* Contains the shipping payment related information for the listed item.
*/
var $ShippingDetails;
/**
* Regions that seller will ship to.
*/
var $ShippingRegions;
/**
* Describes who pays for the delivery of an item (e.g., buyer or seller).
*/
var $ShippingTerms;
/**
* eBay site on which item is listed.
*/
var $Site;
/**
* Starting price for the item. For Type=7 or Type=9 (Fixed Price) items, if the
* item price (MinimumBid) is revised, this field returns the new price.
*/
var $StartPrice;
/**
* Storefront is shown for any item that belongs to an eBay Store owner, regardless
* of whether it is fixed price or auction type. Not returned for International
* Fixed Price items.
*/
var $Storefront;
/**
* Subtitle to use in addition to the title. Provides more keywords when buyers
* search in titles and descriptions.
*/
var $SubTitle;
/**
* Time until the the end of the listing (e.g., the amount of time left in an
* active auction).
*/
var $TimeLeft;
/**
* Name of the item as it appears for auctions.
*/
var $Title;
/**
* Universally unique constraint tag. The UUID is unique to a category.
*/
var $UUID;
/**
* VAT info container.
*/
var $VATDetails;
/**
* Item picture information for pictures hosted at vendor (i.e., remote) site.
*/
var $VendorHostedPicture;
function ItemType()
{
parent::XSDSimpleType();
$this->_namespace = 'urn:ebay:apis:eBLBaseComponents';
$this->_elements = array_merge($this->_elements,
array (
'ApplicationData' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ListOfAttributeSets' =>
array (
'required' => false,
'type' => 'ListOfAttributeSetType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'AutoPay' =>
array (
'required' => false,
'type' => 'boolean',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'BuyerProtection' =>
array (
'required' => false,
'type' => 'BuyerProtectionCodeType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'BuyItNowPrice' =>
array (
'required' => false,
'type' => 'AmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Charity' =>
array (
'required' => false,
'type' => 'CharityType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Country' =>
array (
'required' => false,
'type' => NULL,
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'CrossPromotion' =>
array (
'required' => false,
'type' => 'CrossPromotionsType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Currency' =>
array (
'required' => false,
'type' => NULL,
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Description' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Escrow' =>
array (
'required' => false,
'type' => 'EscrowCodeType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'GiftIcon' =>
array (
'required' => false,
'type' => 'int',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'GiftServices' =>
array (
'required' => false,
'type' => 'GiftServicesCodeType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'HitCounter' =>
array (
'required' => false,
'type' => 'HitCounterCodeType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ItemID' =>
array (
'required' => false,
'type' => NULL,
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ListingDetails' =>
array (
'required' => false,
'type' => 'ListingDetailsType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ListingDesigner' =>
array (
'required' => false,
'type' => 'ListingDesignerType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ListingDuration' =>
array (
'required' => false,
'type' => NULL,
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ListingEnhancement' =>
array (
'required' => false,
'type' => 'ListingEnhancementsCodeType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ListingType' =>
array (
'required' => false,
'type' => 'ListingTypeCodeType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Location' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'PartnerCode' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'PartnerName' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'PaymentMethods' =>
array (
'required' => false,
'type' => NULL,
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'PayPalEmailAddress' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'PrimaryCategory' =>
array (
'required' => false,
'type' => 'CategoryType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'PrivateListing' =>
array (
'required' => false,
'type' => 'boolean',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Quantity' =>
array (
'required' => false,
'type' => 'int',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'RegionID' =>
array (
'required' => false,
'type' => NULL,
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'RelistLink' =>
array (
'required' => false,
'type' => 'boolean',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ReservePrice' =>
array (
'required' => false,
'type' => 'AmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ReviseStatus' =>
array (
'required' => false,
'type' => NULL,
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ScheduleTime' =>
array (
'required' => false,
'type' => 'dateTime',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'SecondaryCategory' =>
array (
'required' => false,
'type' => 'CategoryType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'SiteHostedPicture' =>
array (
'required' => false,
'type' => 'SiteHostedPictureType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Seller' =>
array (
'required' => false,
'type' => NULL,
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'SellingStatus' =>
array (
'required' => false,
'type' => NULL,
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ShippingOption' =>
array (
'required' => false,
'type' => 'ShippingOptionCodeType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ShippingDetails' =>
array (
'required' => false,
'type' => NULL,
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ShippingRegions' =>
array (
'required' => false,
'type' => NULL,
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'ShippingTerms' =>
array (
'required' => false,
'type' => 'ShippingTermsCodeType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Site' =>
array (
'required' => false,
'type' => NULL,
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'StartPrice' =>
array (
'required' => false,
'type' => 'AmountType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Storefront' =>
array (
'required' => false,
'type' => 'StorefrontType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'SubTitle' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'TimeLeft' =>
array (
'required' => false,
'type' => 'duration',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'Title' =>
array (
'required' => false,
'type' => 'string',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'UUID' =>
array (
'required' => false,
'type' => NULL,
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'VATDetails' =>
array (
'required' => false,
'type' => 'VATDetailsType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
'VendorHostedPicture' =>
array (
'required' => false,
'type' => 'VendorHostedPictureType',
'namespace' => 'urn:ebay:apis:eBLBaseComponents',
),
));
}
function getApplicationData()
{
return $this->ApplicationData;
}
function setApplicationData($ApplicationData, $charset = 'iso-8859-1')
{
$this->ApplicationData = $ApplicationData;
$this->_elements['ApplicationData']['charset'] = $charset;
}
function getListOfAttributeSets()
{
return $this->ListOfAttributeSets;
}
function setListOfAttributeSets($ListOfAttributeSets, $charset = 'iso-8859-1')
{
$this->ListOfAttributeSets = $ListOfAttributeSets;
$this->_elements['ListOfAttributeSets']['charset'] = $charset;
}
function getAutoPay()
{
return $this->AutoPay;
}
function setAutoPay($AutoPay, $charset = 'iso-8859-1')
{
$this->AutoPay = $AutoPay;
$this->_elements['AutoPay']['charset'] = $charset;
}
function getBuyerProtection()
{
return $this->BuyerProtection;
}
function setBuyerProtection($BuyerProtection, $charset = 'iso-8859-1')
{
$this->BuyerProtection = $BuyerProtection;
$this->_elements['BuyerProtection']['charset'] = $charset;
}
function getBuyItNowPrice()
{
return $this->BuyItNowPrice;
}
function setBuyItNowPrice($BuyItNowPrice, $charset = 'iso-8859-1')
{
$this->BuyItNowPrice = $BuyItNowPrice;
$this->_elements['BuyItNowPrice']['charset'] = $charset;
}
function getCharity()
{
return $this->Charity;
}
function setCharity($Charity, $charset = 'iso-8859-1')
{
$this->Charity = $Charity;
$this->_elements['Charity']['charset'] = $charset;
}
function getCountry()
{
return $this->Country;
}
function setCountry($Country, $charset = 'iso-8859-1')
{
$this->Country = $Country;
$this->_elements['Country']['charset'] = $charset;
}
function getCrossPromotion()
{
return $this->CrossPromotion;
}
function setCrossPromotion($CrossPromotion, $charset = 'iso-8859-1')
{
$this->CrossPromotion = $CrossPromotion;
$this->_elements['CrossPromotion']['charset'] = $charset;
}
function getCurrency()
{
return $this->Currency;
}
function setCurrency($Currency, $charset = 'iso-8859-1')
{
$this->Currency = $Currency;
$this->_elements['Currency']['charset'] = $charset;
}
function getDescription()
{
return $this->Description;
}
function setDescription($Description, $charset = 'iso-8859-1')
{
$this->Description = $Description;
$this->_elements['Description']['charset'] = $charset;
}
function getEscrow()
{
return $this->Escrow;
}
function setEscrow($Escrow, $charset = 'iso-8859-1')
{
$this->Escrow = $Escrow;
$this->_elements['Escrow']['charset'] = $charset;
}
function getGiftIcon()
{
return $this->GiftIcon;
}
function setGiftIcon($GiftIcon, $charset = 'iso-8859-1')
{
$this->GiftIcon = $GiftIcon;
$this->_elements['GiftIcon']['charset'] = $charset;
}
function getGiftServices()
{
return $this->GiftServices;
}
function setGiftServices($GiftServices, $charset = 'iso-8859-1')
{
$this->GiftServices = $GiftServices;
$this->_elements['GiftServices']['charset'] = $charset;
}
function getHitCounter()
{
return $this->HitCounter;
}
function setHitCounter($HitCounter, $charset = 'iso-8859-1')
{
$this->HitCounter = $HitCounter;
$this->_elements['HitCounter']['charset'] = $charset;
}
function getItemID()
{
return $this->ItemID;
}
function setItemID($ItemID, $charset = 'iso-8859-1')
{
$this->ItemID = $ItemID;
$this->_elements['ItemID']['charset'] = $charset;
}
function getListingDetails()
{
return $this->ListingDetails;
}
function setListingDetails($ListingDetails, $charset = 'iso-8859-1')
{
$this->ListingDetails = $ListingDetails;
$this->_elements['ListingDetails']['charset'] = $charset;
}
function getListingDesigner()
{
return $this->ListingDesigner;
}
function setListingDesigner($ListingDesigner, $charset = 'iso-8859-1')
{
$this->ListingDesigner = $ListingDesigner;
$this->_elements['ListingDesigner']['charset'] = $charset;
}
function getListingDuration()
{
return $this->ListingDuration;
}
function setListingDuration($ListingDuration, $charset = 'iso-8859-1')
{
$this->ListingDuration = $ListingDuration;
$this->_elements['ListingDuration']['charset'] = $charset;
}
function getListingEnhancement()
{
return $this->ListingEnhancement;
}
function setListingEnhancement($ListingEnhancement, $charset = 'iso-8859-1')
{
$this->ListingEnhancement = $ListingEnhancement;
$this->_elements['ListingEnhancement']['charset'] = $charset;
}
function getListingType()
{
return $this->ListingType;
}
function setListingType($ListingType, $charset = 'iso-8859-1')
{
$this->ListingType = $ListingType;
$this->_elements['ListingType']['charset'] = $charset;
}
function getLocation()
{
return $this->Location;
}
function setLocation($Location, $charset = 'iso-8859-1')
{
$this->Location = $Location;
$this->_elements['Location']['charset'] = $charset;
}
function getPartnerCode()
{
return $this->PartnerCode;
}
function setPartnerCode($PartnerCode, $charset = 'iso-8859-1')
{
$this->PartnerCode = $PartnerCode;
$this->_elements['PartnerCode']['charset'] = $charset;
}
function getPartnerName()
{
return $this->PartnerName;
}
function setPartnerName($PartnerName, $charset = 'iso-8859-1')
{
$this->PartnerName = $PartnerName;
$this->_elements['PartnerName']['charset'] = $charset;
}
function getPaymentMethods()
{
return $this->PaymentMethods;
}
function setPaymentMethods($PaymentMethods, $charset = 'iso-8859-1')
{
$this->PaymentMethods = $PaymentMethods;
$this->_elements['PaymentMethods']['charset'] = $charset;
}
function getPayPalEmailAddress()
{
return $this->PayPalEmailAddress;
}
function setPayPalEmailAddress($PayPalEmailAddress, $charset = 'iso-8859-1')
{
$this->PayPalEmailAddress = $PayPalEmailAddress;
$this->_elements['PayPalEmailAddress']['charset'] = $charset;
}
function getPrimaryCategory()
{
return $this->PrimaryCategory;
}
function setPrimaryCategory($PrimaryCategory, $charset = 'iso-8859-1')
{
$this->PrimaryCategory = $PrimaryCategory;
$this->_elements['PrimaryCategory']['charset'] = $charset;
}
function getPrivateListing()
{
return $this->PrivateListing;
}
function setPrivateListing($PrivateListing, $charset = 'iso-8859-1')
{
$this->PrivateListing = $PrivateListing;
$this->_elements['PrivateListing']['charset'] = $charset;
}
function getQuantity()
{
return $this->Quantity;
}
function setQuantity($Quantity, $charset = 'iso-8859-1')
{
$this->Quantity = $Quantity;
$this->_elements['Quantity']['charset'] = $charset;
}
function getRegionID()
{
return $this->RegionID;
}
function setRegionID($RegionID, $charset = 'iso-8859-1')
{
$this->RegionID = $RegionID;
$this->_elements['RegionID']['charset'] = $charset;
}
function getRelistLink()
{
return $this->RelistLink;
}
function setRelistLink($RelistLink, $charset = 'iso-8859-1')
{
$this->RelistLink = $RelistLink;
$this->_elements['RelistLink']['charset'] = $charset;
}
function getReservePrice()
{
return $this->ReservePrice;
}
function setReservePrice($ReservePrice, $charset = 'iso-8859-1')
{
$this->ReservePrice = $ReservePrice;
$this->_elements['ReservePrice']['charset'] = $charset;
}
function getReviseStatus()
{
return $this->ReviseStatus;
}
function setReviseStatus($ReviseStatus, $charset = 'iso-8859-1')
{
$this->ReviseStatus = $ReviseStatus;
$this->_elements['ReviseStatus']['charset'] = $charset;
}
function getScheduleTime()
{
return $this->ScheduleTime;
}
function setScheduleTime($ScheduleTime, $charset = 'iso-8859-1')
{
$this->ScheduleTime = $ScheduleTime;
$this->_elements['ScheduleTime']['charset'] = $charset;
}
function getSecondaryCategory()
{
return $this->SecondaryCategory;
}
function setSecondaryCategory($SecondaryCategory, $charset = 'iso-8859-1')
{
$this->SecondaryCategory = $SecondaryCategory;
$this->_elements['SecondaryCategory']['charset'] = $charset;
}
function getSiteHostedPicture()
{
return $this->SiteHostedPicture;
}
function setSiteHostedPicture($SiteHostedPicture, $charset = 'iso-8859-1')
{
$this->SiteHostedPicture = $SiteHostedPicture;
$this->_elements['SiteHostedPicture']['charset'] = $charset;
}
function getSeller()
{
return $this->Seller;
}
function setSeller($Seller, $charset = 'iso-8859-1')
{
$this->Seller = $Seller;
$this->_elements['Seller']['charset'] = $charset;
}
function getSellingStatus()
{
return $this->SellingStatus;
}
function setSellingStatus($SellingStatus, $charset = 'iso-8859-1')
{
$this->SellingStatus = $SellingStatus;
$this->_elements['SellingStatus']['charset'] = $charset;
}
function getShippingOption()
{
return $this->ShippingOption;
}
function setShippingOption($ShippingOption, $charset = 'iso-8859-1')
{
$this->ShippingOption = $ShippingOption;
$this->_elements['ShippingOption']['charset'] = $charset;
}
function getShippingDetails()
{
return $this->ShippingDetails;
}
function setShippingDetails($ShippingDetails, $charset = 'iso-8859-1')
{
$this->ShippingDetails = $ShippingDetails;
$this->_elements['ShippingDetails']['charset'] = $charset;
}
function getShippingRegions()
{
return $this->ShippingRegions;
}
function setShippingRegions($ShippingRegions, $charset = 'iso-8859-1')
{
$this->ShippingRegions = $ShippingRegions;
$this->_elements['ShippingRegions']['charset'] = $charset;
}
function getShippingTerms()
{
return $this->ShippingTerms;
}
function setShippingTerms($ShippingTerms, $charset = 'iso-8859-1')
{
$this->ShippingTerms = $ShippingTerms;
$this->_elements['ShippingTerms']['charset'] = $charset;
}
function getSite()
{
return $this->Site;
}
function setSite($Site, $charset = 'iso-8859-1')
{
$this->Site = $Site;
$this->_elements['Site']['charset'] = $charset;
}
function getStartPrice()
{
return $this->StartPrice;
}
function setStartPrice($StartPrice, $charset = 'iso-8859-1')
{
$this->StartPrice = $StartPrice;
$this->_elements['StartPrice']['charset'] = $charset;
}
function getStorefront()
{
return $this->Storefront;
}
function setStorefront($Storefront, $charset = 'iso-8859-1')
{
$this->Storefront = $Storefront;
$this->_elements['Storefront']['charset'] = $charset;
}
function getSubTitle()
{
return $this->SubTitle;
}
function setSubTitle($SubTitle, $charset = 'iso-8859-1')
{
$this->SubTitle = $SubTitle;
$this->_elements['SubTitle']['charset'] = $charset;
}
function getTimeLeft()
{
return $this->TimeLeft;
}
function setTimeLeft($TimeLeft, $charset = 'iso-8859-1')
{
$this->TimeLeft = $TimeLeft;
$this->_elements['TimeLeft']['charset'] = $charset;
}
function getTitle()
{
return $this->Title;
}
function setTitle($Title, $charset = 'iso-8859-1')
{
$this->Title = $Title;
$this->_elements['Title']['charset'] = $charset;
}
function getUUID()
{
return $this->UUID;
}
function setUUID($UUID, $charset = 'iso-8859-1')
{
$this->UUID = $UUID;
$this->_elements['UUID']['charset'] = $charset;
}
function getVATDetails()
{
return $this->VATDetails;
}
function setVATDetails($VATDetails, $charset = 'iso-8859-1')
{
$this->VATDetails = $VATDetails;
$this->_elements['VATDetails']['charset'] = $charset;
}
function getVendorHostedPicture()
{
return $this->VendorHostedPicture;
}
function setVendorHostedPicture($VendorHostedPicture, $charset = 'iso-8859-1')
{
$this->VendorHostedPicture = $VendorHostedPicture;
$this->_elements['VendorHostedPicture']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/ItemType.php | PHP | asf20 | 33,397 |
<?php
/**
* @package PayPal
*/
/**
* Make sure our parent class is defined.
*/
require_once 'PayPal/Type/AbstractRequestType.php';
/**
* ManagePendingTransactionStatusRequestType
*
* @package PayPal
*/
class ManagePendingTransactionStatusRequestType extends AbstractRequestType
{
var $TransactionID;
var $Action;
function ManagePendingTransactionStatusRequestType()
{
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',
),
'Action' =>
array (
'required' => true,
'type' => 'FMFPendingTransactionActionType',
'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 getAction()
{
return $this->Action;
}
function setAction($Action, $charset = 'iso-8859-1')
{
$this->Action = $Action;
$this->_elements['Action']['charset'] = $charset;
}
}
| 123gohelmetsv2 | trunk/lib/paypal-sdk/PayPal/Type/ManagePendingTransactionStatusRequestType.php | PHP | asf20 | 1,523 |