__construct() __construct(mixed $data = null) Construct new model class Parameters mixed $data DOMElement or Associative Array to construct from.
__get() __get(string $propertyName) Support for virtual properties getters. Virtual property call example: $action->Property Direct getter(preferred): $action->getProperty() Parameters string $propertyName name of the property
__set() __set(string $propertyName, $propertyValue) Support for virtual properties setters. Virtual property call example: $action->Property = 'ABC' Direct setter (preferred): $action->setProperty('ABC') Parameters string $propertyName name of the property $propertyValue
toQueryParameterArray() toQueryParameterArray() : array Convert to query parameters suitable for POSTing. Returns array — of query parameters
getListingPrice() getListingPrice() : \MoneyType Get the value of the ListingPrice property. Returns \MoneyType — ListingPrice.
setListingPrice() setListingPrice( $value) : \this Set the value of the ListingPrice property. Parameters $value Returns \this — instance
isSetListingPrice() isSetListingPrice() : true Check to see if ListingPrice is set. Returns true — if ListingPrice is set.
withListingPrice() withListingPrice( $value) : \This Set the value of ListingPrice, return this. Parameters $value Returns \This — instance.
getShipping() getShipping() : \MoneyType Get the value of the Shipping property. Returns \MoneyType — Shipping.
setShipping() setShipping( $value) : \this Set the value of the Shipping property. Parameters $value Returns \this — instance
isSetShipping() isSetShipping() : true Check to see if Shipping is set. Returns true — if Shipping is set.
withShipping() withShipping( $value) : \This Set the value of Shipping, return this. Parameters $value Returns \This — instance.
setPoints() setPoints( $value) : \this Set the value of the Points property. Parameters $value Returns \this — instance
withPoints() withPoints( $value) : \This Set the value of Points, return this. Parameters $value Returns \This — instance.