JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "DeletePurchaseOptionRequest.php"
Full Path: /home/palsarh/web/palsarh.in/public_html/vendor/google/apiclient-services/src/AndroidPublisher/DeletePurchaseOptionRequest.php
File size: 4.74 KB
MIME-type: text/x-php
Charset: utf-8
<?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\AndroidPublisher;
class DeletePurchaseOptionRequest extends \Google\Model
{
/**
* Defaults to PRODUCT_UPDATE_LATENCY_TOLERANCE_LATENCY_SENSITIVE.
*/
public const LATENCY_TOLERANCE_PRODUCT_UPDATE_LATENCY_TOLERANCE_UNSPECIFIED = 'PRODUCT_UPDATE_LATENCY_TOLERANCE_UNSPECIFIED';
/**
* The update will propagate to clients within several minutes on average and
* up to a few hours in rare cases. Throughput is limited to 7,200 updates per
* app per hour.
*/
public const LATENCY_TOLERANCE_PRODUCT_UPDATE_LATENCY_TOLERANCE_LATENCY_SENSITIVE = 'PRODUCT_UPDATE_LATENCY_TOLERANCE_LATENCY_SENSITIVE';
/**
* The update will propagate to clients within 24 hours. Supports high
* throughput of up to 720,000 updates per app per hour using batch
* modification methods.
*/
public const LATENCY_TOLERANCE_PRODUCT_UPDATE_LATENCY_TOLERANCE_LATENCY_TOLERANT = 'PRODUCT_UPDATE_LATENCY_TOLERANCE_LATENCY_TOLERANT';
/**
* Optional. This field has no effect for purchase options with no offers
* under them. For purchase options with associated offers: * If `force` is
* set to false (default), an error will be returned. * If `force` is set to
* true, any associated offers under the purchase option will be deleted.
*
* @var bool
*/
public $force;
/**
* Optional. The latency tolerance for the propagation of this product update.
* Defaults to latency-sensitive.
*
* @var string
*/
public $latencyTolerance;
/**
* Required. The parent app (package name) of the purchase option to delete.
*
* @var string
*/
public $packageName;
/**
* Required. The parent one-time product (ID) of the purchase option to
* delete.
*
* @var string
*/
public $productId;
/**
* Required. The purchase option ID of the purchase option to delete.
*
* @var string
*/
public $purchaseOptionId;
/**
* Optional. This field has no effect for purchase options with no offers
* under them. For purchase options with associated offers: * If `force` is
* set to false (default), an error will be returned. * If `force` is set to
* true, any associated offers under the purchase option will be deleted.
*
* @param bool $force
*/
public function setForce($force)
{
$this->force = $force;
}
/**
* @return bool
*/
public function getForce()
{
return $this->force;
}
/**
* Optional. The latency tolerance for the propagation of this product update.
* Defaults to latency-sensitive.
*
* Accepted values: PRODUCT_UPDATE_LATENCY_TOLERANCE_UNSPECIFIED,
* PRODUCT_UPDATE_LATENCY_TOLERANCE_LATENCY_SENSITIVE,
* PRODUCT_UPDATE_LATENCY_TOLERANCE_LATENCY_TOLERANT
*
* @param self::LATENCY_TOLERANCE_* $latencyTolerance
*/
public function setLatencyTolerance($latencyTolerance)
{
$this->latencyTolerance = $latencyTolerance;
}
/**
* @return self::LATENCY_TOLERANCE_*
*/
public function getLatencyTolerance()
{
return $this->latencyTolerance;
}
/**
* Required. The parent app (package name) of the purchase option to delete.
*
* @param string $packageName
*/
public function setPackageName($packageName)
{
$this->packageName = $packageName;
}
/**
* @return string
*/
public function getPackageName()
{
return $this->packageName;
}
/**
* Required. The parent one-time product (ID) of the purchase option to
* delete.
*
* @param string $productId
*/
public function setProductId($productId)
{
$this->productId = $productId;
}
/**
* @return string
*/
public function getProductId()
{
return $this->productId;
}
/**
* Required. The purchase option ID of the purchase option to delete.
*
* @param string $purchaseOptionId
*/
public function setPurchaseOptionId($purchaseOptionId)
{
$this->purchaseOptionId = $purchaseOptionId;
}
/**
* @return string
*/
public function getPurchaseOptionId()
{
return $this->purchaseOptionId;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(DeletePurchaseOptionRequest::class, 'Google_Service_AndroidPublisher_DeletePurchaseOptionRequest');