gestione documentale avanzata 1 parte

This commit is contained in:
2026-05-28 09:34:28 +02:00
parent 3471befb1a
commit f2b0833b90
34482 changed files with 4312269 additions and 546 deletions
@@ -0,0 +1,45 @@
<?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\PlayGrouping;
class CreateOrUpdateTagsRequest extends \Google\Collection
{
protected $collection_key = 'tags';
protected $tagsType = Tag::class;
protected $tagsDataType = 'array';
/**
* Tags to be inserted or updated.
*
* @param Tag[] $tags
*/
public function setTags($tags)
{
$this->tags = $tags;
}
/**
* @return Tag[]
*/
public function getTags()
{
return $this->tags;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(CreateOrUpdateTagsRequest::class, 'Google_Service_PlayGrouping_CreateOrUpdateTagsRequest');
@@ -0,0 +1,45 @@
<?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\PlayGrouping;
class CreateOrUpdateTagsResponse extends \Google\Collection
{
protected $collection_key = 'tags';
protected $tagsType = Tag::class;
protected $tagsDataType = 'array';
/**
* All requested tags are returned, including pre-existing ones.
*
* @param Tag[] $tags
*/
public function setTags($tags)
{
$this->tags = $tags;
}
/**
* @return Tag[]
*/
public function getTags()
{
return $this->tags;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(CreateOrUpdateTagsResponse::class, 'Google_Service_PlayGrouping_CreateOrUpdateTagsResponse');
@@ -0,0 +1,33 @@
<?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\PlayGrouping\Resource;
/**
* The "apps" collection of methods.
* Typical usage is:
* <code>
* $playgroupingService = new Google\Service\PlayGrouping(...);
* $apps = $playgroupingService->apps;
* </code>
*/
class Apps extends \Google\Service\Resource
{
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(Apps::class, 'Google_Service_PlayGrouping_Resource_Apps');
@@ -0,0 +1,57 @@
<?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\PlayGrouping\Resource;
use Google\Service\PlayGrouping\VerifyTokenRequest;
use Google\Service\PlayGrouping\VerifyTokenResponse;
/**
* The "tokens" collection of methods.
* Typical usage is:
* <code>
* $playgroupingService = new Google\Service\PlayGrouping(...);
* $tokens = $playgroupingService->apps_tokens;
* </code>
*/
class AppsTokens extends \Google\Service\Resource
{
/**
* Verify an API token by asserting the app and persona it belongs to. The
* verification is a protection against client-side attacks and will fail if the
* contents of the token don't match the provided values. A token must be
* verified before it can be used to manipulate user tags. (tokens.verify)
*
* @param string $appPackage Required. App the token belongs to. Format:
* apps/{package_name}
* @param string $token Required. The token to be verified. Format:
* tokens/{token}
* @param VerifyTokenRequest $postBody
* @param array $optParams Optional parameters.
* @return VerifyTokenResponse
* @throws \Google\Service\Exception
*/
public function verify($appPackage, $token, VerifyTokenRequest $postBody, $optParams = [])
{
$params = ['appPackage' => $appPackage, 'token' => $token, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('verify', [$params], VerifyTokenResponse::class);
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(AppsTokens::class, 'Google_Service_PlayGrouping_Resource_AppsTokens');
@@ -0,0 +1,55 @@
<?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\PlayGrouping\Resource;
use Google\Service\PlayGrouping\CreateOrUpdateTagsRequest;
use Google\Service\PlayGrouping\CreateOrUpdateTagsResponse;
/**
* The "tags" collection of methods.
* Typical usage is:
* <code>
* $playgroupingService = new Google\Service\PlayGrouping(...);
* $tags = $playgroupingService->apps_tokens_tags;
* </code>
*/
class AppsTokensTags extends \Google\Service\Resource
{
/**
* Create or update tags for the user and app that are represented by the given
* token. (tags.createOrUpdate)
*
* @param string $appPackage Required. App whose tags are being manipulated.
* Format: apps/{package_name}
* @param string $token Required. Token for which the tags are being inserted or
* updated. Format: tokens/{token}
* @param CreateOrUpdateTagsRequest $postBody
* @param array $optParams Optional parameters.
* @return CreateOrUpdateTagsResponse
* @throws \Google\Service\Exception
*/
public function createOrUpdate($appPackage, $token, CreateOrUpdateTagsRequest $postBody, $optParams = [])
{
$params = ['appPackage' => $appPackage, 'token' => $token, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('createOrUpdate', [$params], CreateOrUpdateTagsResponse::class);
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(AppsTokensTags::class, 'Google_Service_PlayGrouping_Resource_AppsTokensTags');
@@ -0,0 +1,136 @@
<?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\PlayGrouping;
class Tag extends \Google\Model
{
/**
* A boolean value of the tag.
*
* @var bool
*/
public $booleanValue;
/**
* A signed 64-bit integer value of the tag.
*
* @var string
*/
public $int64Value;
/**
* Required. Key for the tag.
*
* @var string
*/
public $key;
/**
* A string value of the tag.
*
* @var string
*/
public $stringValue;
/**
* A time value of the tag.
*
* @var string
*/
public $timeValue;
/**
* A boolean value of the tag.
*
* @param bool $booleanValue
*/
public function setBooleanValue($booleanValue)
{
$this->booleanValue = $booleanValue;
}
/**
* @return bool
*/
public function getBooleanValue()
{
return $this->booleanValue;
}
/**
* A signed 64-bit integer value of the tag.
*
* @param string $int64Value
*/
public function setInt64Value($int64Value)
{
$this->int64Value = $int64Value;
}
/**
* @return string
*/
public function getInt64Value()
{
return $this->int64Value;
}
/**
* Required. Key for the tag.
*
* @param string $key
*/
public function setKey($key)
{
$this->key = $key;
}
/**
* @return string
*/
public function getKey()
{
return $this->key;
}
/**
* A string value of the tag.
*
* @param string $stringValue
*/
public function setStringValue($stringValue)
{
$this->stringValue = $stringValue;
}
/**
* @return string
*/
public function getStringValue()
{
return $this->stringValue;
}
/**
* A time value of the tag.
*
* @param string $timeValue
*/
public function setTimeValue($timeValue)
{
$this->timeValue = $timeValue;
}
/**
* @return string
*/
public function getTimeValue()
{
return $this->timeValue;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(Tag::class, 'Google_Service_PlayGrouping_Tag');
@@ -0,0 +1,48 @@
<?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\PlayGrouping;
class VerifyTokenRequest extends \Google\Model
{
/**
* Required. Persona represented by the token. Format: personas/{persona}
*
* @var string
*/
public $persona;
/**
* Required. Persona represented by the token. Format: personas/{persona}
*
* @param string $persona
*/
public function setPersona($persona)
{
$this->persona = $persona;
}
/**
* @return string
*/
public function getPersona()
{
return $this->persona;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(VerifyTokenRequest::class, 'Google_Service_PlayGrouping_VerifyTokenRequest');
@@ -0,0 +1,25 @@
<?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\PlayGrouping;
class VerifyTokenResponse extends \Google\Model
{
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(VerifyTokenResponse::class, 'Google_Service_PlayGrouping_VerifyTokenResponse');