📄 Source: PricingInfo.php
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Cloudbilling;
class PricingInfo extends \Google\Model
{
protected $aggregationInfoType = AggregationInfo::class;
protected $aggregationInfoDataType = '';
/**
* Conversion rate used for currency conversion, from USD to the currency
* specified in the request. This includes any surcharge collected for billing
* in non USD currency. If a currency is not specified in the request this
* defaults to 1.0. Example: USD * currency_conversion_rate = JPY
*
* @var
*/
public $currencyConversionRate;
/**
* The timestamp from which this pricing was effective within the requested
* time range. This is guaranteed to be greater than or equal to the
* start_time field in the request and less than the end_time field in the
* request. If a time range was not specified in the request this field will
* be equivalent to a time within the last 12 hours, indicating the latest
* pricing info.
*
* @var string
*/
public $effectiveTime;
protected $pricingExpressionType = PricingExpression::class;
protected $pricingExpressionDataType = '';
/**
* An optional human readable summary of the pricing information, has a
* maximum length of 256 characters.
*
* @var string
*/
public $summary;
/**
* Aggregation Info. This can be left unspecified if the pricing expression
* doesn't require aggregation.
*
* @param AggregationInfo $aggregationInfo
*/
public function setAggregationInfo(AggregationInfo $aggregationInfo)
{
$this->aggregationInfo = $aggregationInfo;
}
/**
* @return AggregationInfo
*/
public function getAggregationInfo()
{
return $this->aggregationInfo;
}
public function setCurrencyConversionRate($currencyConversionRate)
{
$this->currencyConversionRate = $currencyConversionRate;
}
public function getCurrencyConversionRate()
{
return $this->currencyConversionRate;
}
/**
* The timestamp from which this pricing was effective within the requested
* time range. This is guaranteed to be greater than or equal to the
* start_time field in the request and less than the end_time field in the
* request. If a time range was not specified in the request this field will
* be equivalent to a time within the last 12 hours, indicating the latest
* pricing info.
*
* @param string $effectiveTime
*/
public function setEffectiveTime($effectiveTime)
{
$this->effectiveTime = $effectiveTime;
}
/**
* @return string
*/
public function getEffectiveTime()
{
return $this->effectiveTime;
}
/**
* Expresses the pricing formula. See `PricingExpression` for an example.
*
* @param PricingExpression $pricingExpression
*/
public function setPricingExpression(PricingExpression $pricingExpression)
{
$this->pricingExpression = $pricingExpression;
}
/**
* @return PricingExpression
*/
public function getPricingExpression()
{
return $this->pricingExpression;
}
/**
* An optional human readable summary of the pricing information, has a
* maximum length of 256 characters.
*
* @param string $summary
*/
public function setSummary($summary)
{
$this->summary = $summary;
}
/**
* @return string
*/
public function getSummary()
{
return $this->summary;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(PricingInfo::class, 'Google_Service_Cloudbilling_PricingInfo');
← Back