JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "WebApp.php"
Full Path: /home/palsarh/web/palsarh.in/public_html/vendor/google/apiclient-services/src/AndroidManagement/WebApp.php
File size: 4.76 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\AndroidManagement;
class WebApp extends \Google\Collection
{
/**
* Not used.
*/
public const DISPLAY_MODE_DISPLAY_MODE_UNSPECIFIED = 'DISPLAY_MODE_UNSPECIFIED';
/**
* Opens the web app with a minimal set of browser UI elements for controlling
* navigation and viewing the page URL.
*/
public const DISPLAY_MODE_MINIMAL_UI = 'MINIMAL_UI';
/**
* Opens the web app to look and feel like a standalone native application.
* The browser UI elements and page URL are not visible, however the system
* status bar and back button are visible.
*/
public const DISPLAY_MODE_STANDALONE = 'STANDALONE';
/**
* Opens the web app in full screen without any visible controls. The browser
* UI elements, page URL, system status bar and back button are not visible,
* and the web app takes up the entirety of the available display area.
*/
public const DISPLAY_MODE_FULL_SCREEN = 'FULL_SCREEN';
protected $collection_key = 'icons';
/**
* The display mode of the web app.
*
* @var string
*/
public $displayMode;
protected $iconsType = WebAppIcon::class;
protected $iconsDataType = 'array';
/**
* The name of the web app, which is generated by the server during creation
* in the form enterprises/{enterpriseId}/webApps/{packageName}.
*
* @var string
*/
public $name;
/**
* The start URL, i.e. the URL that should load when the user opens the
* application.
*
* @var string
*/
public $startUrl;
/**
* The title of the web app as displayed to the user (e.g., amongst a list of
* other applications, or as a label for an icon).
*
* @var string
*/
public $title;
/**
* The current version of the app.Note that the version can automatically
* increase during the lifetime of the web app, while Google does internal
* housekeeping to keep the web app up-to-date.
*
* @var string
*/
public $versionCode;
/**
* The display mode of the web app.
*
* Accepted values: DISPLAY_MODE_UNSPECIFIED, MINIMAL_UI, STANDALONE,
* FULL_SCREEN
*
* @param self::DISPLAY_MODE_* $displayMode
*/
public function setDisplayMode($displayMode)
{
$this->displayMode = $displayMode;
}
/**
* @return self::DISPLAY_MODE_*
*/
public function getDisplayMode()
{
return $this->displayMode;
}
/**
* A list of icons for the web app. Must have at least one element.
*
* @param WebAppIcon[] $icons
*/
public function setIcons($icons)
{
$this->icons = $icons;
}
/**
* @return WebAppIcon[]
*/
public function getIcons()
{
return $this->icons;
}
/**
* The name of the web app, which is generated by the server during creation
* in the form enterprises/{enterpriseId}/webApps/{packageName}.
*
* @param string $name
*/
public function setName($name)
{
$this->name = $name;
}
/**
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* The start URL, i.e. the URL that should load when the user opens the
* application.
*
* @param string $startUrl
*/
public function setStartUrl($startUrl)
{
$this->startUrl = $startUrl;
}
/**
* @return string
*/
public function getStartUrl()
{
return $this->startUrl;
}
/**
* The title of the web app as displayed to the user (e.g., amongst a list of
* other applications, or as a label for an icon).
*
* @param string $title
*/
public function setTitle($title)
{
$this->title = $title;
}
/**
* @return string
*/
public function getTitle()
{
return $this->title;
}
/**
* The current version of the app.Note that the version can automatically
* increase during the lifetime of the web app, while Google does internal
* housekeeping to keep the web app up-to-date.
*
* @param string $versionCode
*/
public function setVersionCode($versionCode)
{
$this->versionCode = $versionCode;
}
/**
* @return string
*/
public function getVersionCode()
{
return $this->versionCode;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(WebApp::class, 'Google_Service_AndroidManagement_WebApp');