📄 Source: CustomApp.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\Playcustomapp;
class CustomApp extends \Google\Collection
{
protected $collection_key = 'organizations';
/**
* Default listing language in BCP 47 format.
*
* @var string
*/
public $languageCode;
protected $organizationsType = Organization::class;
protected $organizationsDataType = 'array';
/**
* Output only. Package name of the created Android app. Only present in the
* API response.
*
* @var string
*/
public $packageName;
/**
* Title for the Android app.
*
* @var string
*/
public $title;
/**
* Default listing language in BCP 47 format.
*
* @param string $languageCode
*/
public function setLanguageCode($languageCode)
{
$this->languageCode = $languageCode;
}
/**
* @return string
*/
public function getLanguageCode()
{
return $this->languageCode;
}
/**
* Organizations to which the custom app should be made available. If the
* request contains any organizations, then the app will be restricted to only
* these organizations. To support the organization linked to the developer
* account, the organization ID should be provided explicitly together with
* other organizations. If no organizations are provided, then the app is only
* available to the organization linked to the developer account.
*
* @param Organization[] $organizations
*/
public function setOrganizations($organizations)
{
$this->organizations = $organizations;
}
/**
* @return Organization[]
*/
public function getOrganizations()
{
return $this->organizations;
}
/**
* Output only. Package name of the created Android app. Only present in the
* API response.
*
* @param string $packageName
*/
public function setPackageName($packageName)
{
$this->packageName = $packageName;
}
/**
* @return string
*/
public function getPackageName()
{
return $this->packageName;
}
/**
* Title for the Android app.
*
* @param string $title
*/
public function setTitle($title)
{
$this->title = $title;
}
/**
* @return string
*/
public function getTitle()
{
return $this->title;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(CustomApp::class, 'Google_Service_Playcustomapp_CustomApp');
← Back