basePrice = $basePrice;
}
/**
* @return GoogleTypeMoney
*/
public function getBasePrice()
{
return $this->basePrice;
}
public function setDiscount($discount)
{
$this->discount = $discount;
}
public function getDiscount()
{
return $this->discount;
}
/**
* @param GoogleTypeMoney
*/
public function setEffectivePrice(GoogleTypeMoney $effectivePrice)
{
$this->effectivePrice = $effectivePrice;
}
/**
* @return GoogleTypeMoney
*/
public function getEffectivePrice()
{
return $this->effectivePrice;
}
/**
* @param string
*/
public function setExternalPriceUri($externalPriceUri)
{
$this->externalPriceUri = $externalPriceUri;
}
/**
* @return string
*/
public function getExternalPriceUri()
{
return $this->externalPriceUri;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudChannelV1Price::class, 'Google_Service_Cloudchannel_GoogleCloudChannelV1Price');