amount = $amount;
}
/**
* @return string
*/
public function getAmount()
{
return $this->amount;
}
/**
* @param string
*/
public function setCoresPerLicense($coresPerLicense)
{
$this->coresPerLicense = $coresPerLicense;
}
/**
* @return string
*/
public function getCoresPerLicense()
{
return $this->coresPerLicense;
}
/**
* @param string
*/
public function setLicense($license)
{
$this->license = $license;
}
/**
* @return string
*/
public function getLicense()
{
return $this->license;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(LicenseResourceCommitment::class, 'Google_Service_Compute_LicenseResourceCommitment');