updated stubs

This commit is contained in:
Ganesh Hegde
2013-05-27 11:53:45 +05:30
parent 5b32783208
commit 11f91adee4
28 changed files with 1744 additions and 1567 deletions

View File

@@ -1,92 +1,86 @@
<?php
<?php
namespace PayPal\Api;
/**
*
*/
class Item extends Resource {
class Item extends \PPModel {
/**
* Setter for name
* @param string $name
*/
public function setName($name) {
$this->name = $name;
}
/**
* Getter for name
* @return string
*/
public function getName() {
return $this->name;
}
/**
* Setter for sku
* @param string $sku
*/
public function setSku($sku) {
$this->sku = $sku;
}
/**
* Getter for sku
* @return string
*/
public function getSku() {
return $this->sku;
}
/**
* Setter for price
* @param string $price
*/
public function setPrice($price) {
$this->price = $price;
}
/**
* Getter for price
* @return string
*/
public function getPrice() {
return $this->price;
}
/**
* Setter for currency
* @param string $currency
*/
public function setCurrency($currency) {
$this->currency = $currency;
}
/**
* Getter for currency
* @return string
*/
public function getCurrency() {
return $this->currency;
}
/**
* Setter for quantity
* Number of items.
* @param string $quantity
*/
*/
public function setQuantity($quantity) {
$this->quantity = $quantity;
}
}
/**
* Getter for quantity
* Number of items.
* @return string
*/
*/
public function getQuantity() {
return $this->quantity;
}
}
/**
* Name of the item.
* @param string $name
*/
public function setName($name) {
$this->name = $name;
}
/**
* Name of the item.
* @return string
*/
public function getName() {
return $this->name;
}
/**
* Cost of the item.
* @param string $price
*/
public function setPrice($price) {
$this->price = $price;
}
/**
* Cost of the item.
* @return string
*/
public function getPrice() {
return $this->price;
}
/**
* 3-letter Currency Code
* @param string $currency
*/
public function setCurrency($currency) {
$this->currency = $currency;
}
/**
* 3-letter Currency Code
* @return string
*/
public function getCurrency() {
return $this->currency;
}
/**
* Number or code to identify the item in your catalog/records.
* @param string $sku
*/
public function setSku($sku) {
$this->sku = $sku;
}
/**
* Number or code to identify the item in your catalog/records.
* @return string
*/
public function getSku() {
return $this->sku;
}
}