priceAmount = $priceAmount;
}
/**
* @return Price
*/
public function getPriceAmount()
{
return $this->priceAmount;
}
/**
* @param Price
*/
public function setTaxAmount(Price $taxAmount)
{
$this->taxAmount = $taxAmount;
}
/**
* @return Price
*/
public function getTaxAmount()
{
return $this->taxAmount;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(Amount::class, 'Google_Service_ShoppingContent_Amount');