MDL-77374 libraries: Added #[AllowDynamicProperties] attribute
To temporarily prevent the PHP 8.2 warning about Dynamic Properties' deprecation, the #[AllowDynamicProperties] property was added. We encourage anyone to perform the upgrade as soon as the Google library complies with PHP 8.2.
This commit is contained in:
@@ -45,6 +45,14 @@ Local changes (to reapply until upstream upgrades contain them):
|
||||
we are using here.
|
||||
* MDL-76355 php81 compliance. Class methods require overriding methods to declare a
|
||||
compatible return type.
|
||||
* MDL-77374 PHP 8.2 compliance.
|
||||
To temporarily prevent the PHP 8.2 warning about the deprecation of dynamic properties,
|
||||
the #[AllowDynamicProperties] attribute was added on top of the classes.
|
||||
Below is a handy command to add the attribute above the class line:
|
||||
```
|
||||
cd lib/google/src
|
||||
for file in `find . -name '*.php' `; do sed -i '/^class /i #[AllowDynamicProperties]' $file; done
|
||||
```
|
||||
|
||||
Information
|
||||
-----------
|
||||
|
||||
@@ -29,6 +29,7 @@ if (!class_exists('Google_Client')) {
|
||||
/**
|
||||
* Authentication via the Google App Engine App Identity service.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Auth_AppIdentity extends Google_Auth_Abstract
|
||||
{
|
||||
const CACHE_PREFIX = "Google_Auth_AppIdentity::";
|
||||
|
||||
@@ -22,6 +22,7 @@ if (!class_exists('Google_Client')) {
|
||||
/**
|
||||
* Credentials object used for OAuth 2.0 Signed JWT assertion grants.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Auth_AssertionCredentials
|
||||
{
|
||||
const MAX_TOKEN_LIFETIME_SECS = 3600;
|
||||
|
||||
@@ -25,6 +25,7 @@ if (!class_exists('Google_Client')) {
|
||||
* and the appropriate scopes.
|
||||
* @author Jonathan Parrott <[email protected]>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Auth_ComputeEngine extends Google_Auth_Abstract
|
||||
{
|
||||
const METADATA_AUTH_URL =
|
||||
|
||||
@@ -19,6 +19,7 @@ if (!class_exists('Google_Client')) {
|
||||
require_once dirname(__FILE__) . '/../autoload.php';
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Auth_Exception extends Google_Exception
|
||||
{
|
||||
}
|
||||
|
||||
@@ -24,6 +24,7 @@ if (!class_exists('Google_Client')) {
|
||||
*
|
||||
* @author Brian Eaton <[email protected]>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Auth_LoginTicket
|
||||
{
|
||||
const USER_ATTR = "sub";
|
||||
|
||||
@@ -23,6 +23,7 @@ if (!class_exists('Google_Client')) {
|
||||
* Authentication class that deals with the OAuth 2 web-server authentication flow
|
||||
*
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Auth_OAuth2 extends Google_Auth_Abstract
|
||||
{
|
||||
const OAUTH2_REVOKE_URI = 'https://accounts.google.com/o/oauth2/revoke';
|
||||
|
||||
@@ -24,6 +24,7 @@ if (!class_exists('Google_Client')) {
|
||||
* completely unauthenticated, or by using a Simple API Access developer
|
||||
* key.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Auth_Simple extends Google_Auth_Abstract
|
||||
{
|
||||
private $client;
|
||||
|
||||
@@ -27,6 +27,7 @@ if (!class_exists('Google_Client')) {
|
||||
*
|
||||
* @author Chris Chabot <[email protected]>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Cache_Apc extends Google_Cache_Abstract
|
||||
{
|
||||
/**
|
||||
|
||||
@@ -19,6 +19,7 @@ if (!class_exists('Google_Client')) {
|
||||
require_once dirname(__FILE__) . '/../autoload.php';
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Cache_Exception extends Google_Exception
|
||||
{
|
||||
}
|
||||
|
||||
@@ -27,6 +27,7 @@ if (!class_exists('Google_Client')) {
|
||||
*
|
||||
* @author Chris Chabot <[email protected]>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Cache_File extends Google_Cache_Abstract
|
||||
{
|
||||
const MAX_LOCK_RETRIES = 10;
|
||||
|
||||
@@ -29,6 +29,7 @@ if (!class_exists('Google_Client')) {
|
||||
*
|
||||
* @author Chris Chabot <[email protected]>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Cache_Memcache extends Google_Cache_Abstract
|
||||
{
|
||||
private $connection = false;
|
||||
|
||||
@@ -23,6 +23,7 @@ if (!class_exists('Google_Client')) {
|
||||
* A blank storage class, for cases where caching is not
|
||||
* required.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Cache_Null extends Google_Cache_Abstract
|
||||
{
|
||||
public function __construct(Google_Client $client)
|
||||
|
||||
@@ -23,6 +23,7 @@ if (!class_exists('Google_Client')) {
|
||||
* The Google API Client
|
||||
* https://github.com/google/google-api-php-client
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Client
|
||||
{
|
||||
const LIBVER = "1.1.5";
|
||||
|
||||
@@ -9,6 +9,7 @@ if (!class_exists('Google_Client')) {
|
||||
* exposes the items array for iteration, so you can just
|
||||
* iterate over the object rather than a reference inside.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Collection extends Google_Model implements Iterator, Countable
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
|
||||
@@ -18,6 +18,7 @@
|
||||
/**
|
||||
* A class to contain the library configuration for the Google API client.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Config
|
||||
{
|
||||
const GZIP_DISABLED = true;
|
||||
|
||||
@@ -15,6 +15,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Exception extends Exception
|
||||
{
|
||||
}
|
||||
|
||||
@@ -22,6 +22,7 @@ if (!class_exists('Google_Client')) {
|
||||
/**
|
||||
* Class to handle batched requests to the Google API service.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Http_Batch
|
||||
{
|
||||
/** @var string Multipart Boundary. */
|
||||
|
||||
@@ -23,6 +23,7 @@ if (!class_exists('Google_Client')) {
|
||||
* Implement the caching directives specified in rfc2616. This
|
||||
* implementation is guided by the guidance offered in rfc2616-sec13.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Http_CacheParser
|
||||
{
|
||||
public static $CACHEABLE_HTTP_METHODS = array('GET', 'HEAD');
|
||||
|
||||
@@ -23,6 +23,7 @@ if (!class_exists('Google_Client')) {
|
||||
* Manage large file uploads, which may be media but can be any type
|
||||
* of sizable data.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Http_MediaFileUpload
|
||||
{
|
||||
const UPLOAD_MEDIA_TYPE = 'media';
|
||||
|
||||
@@ -22,6 +22,7 @@ if (!class_exists('Google_Client')) {
|
||||
/**
|
||||
* This class implements the RESTful transport of apiServiceRequest()'s
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Http_REST
|
||||
{
|
||||
/**
|
||||
|
||||
@@ -27,6 +27,7 @@ if (!class_exists('Google_Client')) {
|
||||
* @author Chirag Shah <[email protected]>
|
||||
*
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Http_Request
|
||||
{
|
||||
const GZIP_UA = " (gzip)";
|
||||
|
||||
@@ -25,6 +25,7 @@ if (!class_exists('Google_Client')) {
|
||||
require_once dirname(__FILE__) . '/../autoload.php';
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_IO_Curl extends Google_IO_Abstract
|
||||
{
|
||||
// cURL hex representation of version 7.30.0
|
||||
|
||||
@@ -19,6 +19,7 @@ if (!class_exists('Google_Client')) {
|
||||
require_once dirname(__FILE__) . '/../autoload.php';
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_IO_Exception extends Google_Exception implements Google_Task_Retryable
|
||||
{
|
||||
/**
|
||||
|
||||
@@ -25,6 +25,7 @@ if (!class_exists('Google_Client')) {
|
||||
require_once dirname(__FILE__) . '/../autoload.php';
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_IO_Stream extends Google_IO_Abstract
|
||||
{
|
||||
const TIMEOUT = "timeout";
|
||||
|
||||
@@ -19,6 +19,7 @@ if (!class_exists('Google_Client')) {
|
||||
require_once dirname(__FILE__) . '/../autoload.php';
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Logger_Exception extends Google_Exception
|
||||
{
|
||||
}
|
||||
|
||||
@@ -24,6 +24,7 @@ if (!class_exists('Google_Client')) {
|
||||
*
|
||||
* This logger writes to a PHP stream resource.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Logger_File extends Google_Logger_Abstract
|
||||
{
|
||||
/**
|
||||
|
||||
@@ -24,6 +24,7 @@ if (!class_exists('Google_Client')) {
|
||||
*
|
||||
* This logger simply discards all messages.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Logger_Null extends Google_Logger_Abstract
|
||||
{
|
||||
/**
|
||||
|
||||
@@ -25,6 +25,7 @@ if (!class_exists('Google_Client')) {
|
||||
* This logger will delegate all logging to a PSR-3 compatible logger specified
|
||||
* with the `Google_Logger_Psr::setLogger()` method.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Logger_Psr extends Google_Logger_Abstract
|
||||
{
|
||||
/**
|
||||
|
||||
@@ -21,6 +21,7 @@
|
||||
* http://tools.ietf.org/html/draft-zyp-json-schema-03#section-5
|
||||
*
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Model implements ArrayAccess
|
||||
{
|
||||
/**
|
||||
|
||||
@@ -15,6 +15,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service
|
||||
{
|
||||
public $batchPath;
|
||||
|
||||
@@ -29,6 +29,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer extends Google_Service
|
||||
{
|
||||
/** Manage your Ad Exchange buyer account configuration. */
|
||||
@@ -753,6 +754,7 @@ class Google_Service_AdExchangeBuyer extends Google_Service
|
||||
* $accounts = $adexchangebuyerService->accounts;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_Accounts_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -823,6 +825,7 @@ class Google_Service_AdExchangeBuyer_Accounts_Resource extends Google_Service_Re
|
||||
* $billingInfo = $adexchangebuyerService->billingInfo;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_BillingInfo_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -864,6 +867,7 @@ class Google_Service_AdExchangeBuyer_BillingInfo_Resource extends Google_Service
|
||||
* $budget = $adexchangebuyerService->budget;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_Budget_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -932,6 +936,7 @@ class Google_Service_AdExchangeBuyer_Budget_Resource extends Google_Service_Reso
|
||||
* $clientaccess = $adexchangebuyerService->clientaccess;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_Clientaccess_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1035,6 +1040,7 @@ class Google_Service_AdExchangeBuyer_Clientaccess_Resource extends Google_Servic
|
||||
* $creatives = $adexchangebuyerService->creatives;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_Creatives_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1105,6 +1111,7 @@ class Google_Service_AdExchangeBuyer_Creatives_Resource extends Google_Service_R
|
||||
* $deals = $adexchangebuyerService->deals;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_Deals_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1131,6 +1138,7 @@ class Google_Service_AdExchangeBuyer_Deals_Resource extends Google_Service_Resou
|
||||
* $marketplacedeals = $adexchangebuyerService->marketplacedeals;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_Marketplacedeals_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1203,6 +1211,7 @@ class Google_Service_AdExchangeBuyer_Marketplacedeals_Resource extends Google_Se
|
||||
* $marketplacenotes = $adexchangebuyerService->marketplacenotes;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_Marketplacenotes_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1245,6 +1254,7 @@ class Google_Service_AdExchangeBuyer_Marketplacenotes_Resource extends Google_Se
|
||||
* $marketplaceoffers = $adexchangebuyerService->marketplaceoffers;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_Marketplaceoffers_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1287,6 +1297,7 @@ class Google_Service_AdExchangeBuyer_Marketplaceoffers_Resource extends Google_S
|
||||
* $marketplaceorders = $adexchangebuyerService->marketplaceorders;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_Marketplaceorders_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1383,6 +1394,7 @@ class Google_Service_AdExchangeBuyer_Marketplaceorders_Resource extends Google_S
|
||||
* $negotiationrounds = $adexchangebuyerService->negotiationrounds;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_Negotiationrounds_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1411,6 +1423,7 @@ class Google_Service_AdExchangeBuyer_Negotiationrounds_Resource extends Google_S
|
||||
* $negotiations = $adexchangebuyerService->negotiations;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_Negotiations_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1465,6 +1478,7 @@ class Google_Service_AdExchangeBuyer_Negotiations_Resource extends Google_Servic
|
||||
* $offers = $adexchangebuyerService->offers;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_Offers_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1518,6 +1532,7 @@ class Google_Service_AdExchangeBuyer_Offers_Resource extends Google_Service_Reso
|
||||
* $performanceReport = $adexchangebuyerService->performanceReport;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_PerformanceReport_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1555,6 +1570,7 @@ class Google_Service_AdExchangeBuyer_PerformanceReport_Resource extends Google_S
|
||||
* $pretargetingConfig = $adexchangebuyerService->pretargetingConfig;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_PretargetingConfig_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1658,6 +1674,7 @@ class Google_Service_AdExchangeBuyer_PretargetingConfig_Resource extends Google_
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_Account extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'bidderLocation';
|
||||
@@ -1740,6 +1757,7 @@ class Google_Service_AdExchangeBuyer_Account extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_AccountBidderLocation extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1775,6 +1793,7 @@ class Google_Service_AdExchangeBuyer_AccountBidderLocation extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_AccountsList extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -1803,6 +1822,7 @@ class Google_Service_AdExchangeBuyer_AccountsList extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_AdSize extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1829,6 +1849,7 @@ class Google_Service_AdExchangeBuyer_AdSize extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_AdSlotDto extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1891,6 +1912,7 @@ class Google_Service_AdExchangeBuyer_AdSlotDto extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_AddOrderDealsRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'deals';
|
||||
@@ -1928,6 +1950,7 @@ class Google_Service_AdExchangeBuyer_AddOrderDealsRequest extends Google_Collect
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_AddOrderDealsResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'deals';
|
||||
@@ -1956,6 +1979,7 @@ class Google_Service_AdExchangeBuyer_AddOrderDealsResponse extends Google_Collec
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_AddOrderNotesRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'notes';
|
||||
@@ -1975,6 +1999,7 @@ class Google_Service_AdExchangeBuyer_AddOrderNotesRequest extends Google_Collect
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_AddOrderNotesResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'notes';
|
||||
@@ -1994,6 +2019,7 @@ class Google_Service_AdExchangeBuyer_AddOrderNotesResponse extends Google_Collec
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_AdvertiserDto extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'brands';
|
||||
@@ -2040,6 +2066,7 @@ class Google_Service_AdExchangeBuyer_AdvertiserDto extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_AudienceSegment extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2084,6 +2111,7 @@ class Google_Service_AdExchangeBuyer_AudienceSegment extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_BillingInfo extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'billingId';
|
||||
@@ -2129,6 +2157,7 @@ class Google_Service_AdExchangeBuyer_BillingInfo extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_BillingInfoList extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -2157,6 +2186,7 @@ class Google_Service_AdExchangeBuyer_BillingInfoList extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_BrandDto extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2192,6 +2222,7 @@ class Google_Service_AdExchangeBuyer_BrandDto extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_Budget extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2254,6 +2285,7 @@ class Google_Service_AdExchangeBuyer_Budget extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_Buyer extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2271,6 +2303,7 @@ class Google_Service_AdExchangeBuyer_Buyer extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_BuyerDto extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2342,6 +2375,7 @@ class Google_Service_AdExchangeBuyer_BuyerDto extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_ClientAccessCapabilities extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'capabilities';
|
||||
@@ -2369,6 +2403,7 @@ class Google_Service_AdExchangeBuyer_ClientAccessCapabilities extends Google_Col
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_ContactInformation extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2395,6 +2430,7 @@ class Google_Service_AdExchangeBuyer_ContactInformation extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_CreateOrdersRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'orders';
|
||||
@@ -2423,6 +2459,7 @@ class Google_Service_AdExchangeBuyer_CreateOrdersRequest extends Google_Collecti
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_CreateOrdersResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'orders';
|
||||
@@ -2442,6 +2479,7 @@ class Google_Service_AdExchangeBuyer_CreateOrdersResponse extends Google_Collect
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_Creative extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'vendorType';
|
||||
@@ -2682,6 +2720,7 @@ class Google_Service_AdExchangeBuyer_Creative extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_CreativeCorrections extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'details';
|
||||
@@ -2709,6 +2748,7 @@ class Google_Service_AdExchangeBuyer_CreativeCorrections extends Google_Collecti
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_CreativeFilteringReasons extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'reasons';
|
||||
@@ -2737,6 +2777,7 @@ class Google_Service_AdExchangeBuyer_CreativeFilteringReasons extends Google_Col
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_CreativeFilteringReasonsReasons extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2763,6 +2804,7 @@ class Google_Service_AdExchangeBuyer_CreativeFilteringReasonsReasons extends Goo
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_CreativeNativeAd extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'impressionTrackingUrl';
|
||||
@@ -2883,6 +2925,7 @@ class Google_Service_AdExchangeBuyer_CreativeNativeAd extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_CreativeNativeAdAppIcon extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2918,6 +2961,7 @@ class Google_Service_AdExchangeBuyer_CreativeNativeAdAppIcon extends Google_Mode
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_CreativeNativeAdImage extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2953,6 +2997,7 @@ class Google_Service_AdExchangeBuyer_CreativeNativeAdImage extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_CreativeNativeAdLogo extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2988,6 +3033,7 @@ class Google_Service_AdExchangeBuyer_CreativeNativeAdLogo extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_CreativeServingRestrictions extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'disapprovalReasons';
|
||||
@@ -3026,6 +3072,7 @@ class Google_Service_AdExchangeBuyer_CreativeServingRestrictions extends Google_
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_CreativeServingRestrictionsContexts extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'platform';
|
||||
@@ -3071,6 +3118,7 @@ class Google_Service_AdExchangeBuyer_CreativeServingRestrictionsContexts extends
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_CreativeServingRestrictionsDisapprovalReasons extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'details';
|
||||
@@ -3098,6 +3146,7 @@ class Google_Service_AdExchangeBuyer_CreativeServingRestrictionsDisapprovalReaso
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_CreativesList extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -3135,6 +3184,7 @@ class Google_Service_AdExchangeBuyer_CreativesList extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_DateTime extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3206,6 +3256,7 @@ class Google_Service_AdExchangeBuyer_DateTime extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_DealPartyDto extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3261,6 +3312,7 @@ class Google_Service_AdExchangeBuyer_DealPartyDto extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_DealTerms extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3308,6 +3360,7 @@ class Google_Service_AdExchangeBuyer_DealTerms extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_DealTermsGuaranteedFixedPriceTerms extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'fixedPrices';
|
||||
@@ -3345,6 +3398,7 @@ class Google_Service_AdExchangeBuyer_DealTermsGuaranteedFixedPriceTerms extends
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_DealTermsNonGuaranteedAuctionTerms extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'reservePricePerBuyers';
|
||||
@@ -3373,6 +3427,7 @@ class Google_Service_AdExchangeBuyer_DealTermsNonGuaranteedAuctionTerms extends
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_DealTermsNonGuaranteedFixedPriceTerms extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'fixedPrices';
|
||||
@@ -3392,6 +3447,7 @@ class Google_Service_AdExchangeBuyer_DealTermsNonGuaranteedFixedPriceTerms exten
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_DeleteOrderDealsRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'dealIds';
|
||||
@@ -3428,6 +3484,7 @@ class Google_Service_AdExchangeBuyer_DeleteOrderDealsRequest extends Google_Coll
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_DeleteOrderDealsResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'deals';
|
||||
@@ -3456,6 +3513,7 @@ class Google_Service_AdExchangeBuyer_DeleteOrderDealsResponse extends Google_Col
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_DeliveryControl extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'frequencyCaps';
|
||||
@@ -3484,6 +3542,7 @@ class Google_Service_AdExchangeBuyer_DeliveryControl extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_DeliveryControlFrequencyCap extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3519,6 +3578,7 @@ class Google_Service_AdExchangeBuyer_DeliveryControlFrequencyCap extends Google_
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_EditAllOrderDealsRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'deals';
|
||||
@@ -3566,6 +3626,7 @@ class Google_Service_AdExchangeBuyer_EditAllOrderDealsRequest extends Google_Col
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_EditAllOrderDealsResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'deals';
|
||||
@@ -3585,6 +3646,7 @@ class Google_Service_AdExchangeBuyer_EditAllOrderDealsResponse extends Google_Co
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_EditHistoryDto extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3629,6 +3691,7 @@ class Google_Service_AdExchangeBuyer_EditHistoryDto extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_GetFinalizedNegotiationByExternalDealIdRequest extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3646,6 +3709,7 @@ class Google_Service_AdExchangeBuyer_GetFinalizedNegotiationByExternalDealIdRequ
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_GetNegotiationByIdRequest extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3663,6 +3727,7 @@ class Google_Service_AdExchangeBuyer_GetNegotiationByIdRequest extends Google_Mo
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_GetNegotiationsRequest extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3698,6 +3763,7 @@ class Google_Service_AdExchangeBuyer_GetNegotiationsRequest extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_GetNegotiationsResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'negotiations';
|
||||
@@ -3726,6 +3792,7 @@ class Google_Service_AdExchangeBuyer_GetNegotiationsResponse extends Google_Coll
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_GetOffersResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'offers';
|
||||
@@ -3745,6 +3812,7 @@ class Google_Service_AdExchangeBuyer_GetOffersResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_GetOrderDealsResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'deals';
|
||||
@@ -3764,6 +3832,7 @@ class Google_Service_AdExchangeBuyer_GetOrderDealsResponse extends Google_Collec
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_GetOrderNotesResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'notes';
|
||||
@@ -3783,6 +3852,7 @@ class Google_Service_AdExchangeBuyer_GetOrderNotesResponse extends Google_Collec
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_GetOrdersResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'orders';
|
||||
@@ -3802,6 +3872,7 @@ class Google_Service_AdExchangeBuyer_GetOrdersResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_InventorySegmentTargeting extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'positiveXfpPlacements';
|
||||
@@ -4139,6 +4210,7 @@ class Google_Service_AdExchangeBuyer_InventorySegmentTargeting extends Google_Co
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_ListClientAccessCapabilitiesRequest extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -4156,6 +4228,7 @@ class Google_Service_AdExchangeBuyer_ListClientAccessCapabilitiesRequest extends
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_ListClientAccessCapabilitiesResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'clientAccessPermissions';
|
||||
@@ -4175,6 +4248,7 @@ class Google_Service_AdExchangeBuyer_ListClientAccessCapabilitiesResponse extend
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_ListOffersRequest extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -4192,6 +4266,7 @@ class Google_Service_AdExchangeBuyer_ListOffersRequest extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_ListOffersResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'offers';
|
||||
@@ -4220,6 +4295,7 @@ class Google_Service_AdExchangeBuyer_ListOffersResponse extends Google_Collectio
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_MarketplaceDeal extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'sharedTargetings';
|
||||
@@ -4405,6 +4481,7 @@ class Google_Service_AdExchangeBuyer_MarketplaceDeal extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_MarketplaceDealParty extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -4433,6 +4510,7 @@ class Google_Service_AdExchangeBuyer_MarketplaceDealParty extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_MarketplaceLabel extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -4478,6 +4556,7 @@ class Google_Service_AdExchangeBuyer_MarketplaceLabel extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_MarketplaceNote extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -4558,6 +4637,7 @@ class Google_Service_AdExchangeBuyer_MarketplaceNote extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_MarketplaceOffer extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'sharedTargetings';
|
||||
@@ -4725,6 +4805,7 @@ class Google_Service_AdExchangeBuyer_MarketplaceOffer extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_MarketplaceOrder extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'sellerContacts';
|
||||
@@ -4921,6 +5002,7 @@ class Google_Service_AdExchangeBuyer_MarketplaceOrder extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_MoneyDto extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -4947,6 +5029,7 @@ class Google_Service_AdExchangeBuyer_MoneyDto extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_NegotiationDto extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'sellerEmailContacts';
|
||||
@@ -5096,6 +5179,7 @@ class Google_Service_AdExchangeBuyer_NegotiationDto extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_NegotiationRoundDto extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5187,6 +5271,7 @@ class Google_Service_AdExchangeBuyer_NegotiationRoundDto extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_OfferDto extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'openToDealParties';
|
||||
@@ -5327,6 +5412,7 @@ class Google_Service_AdExchangeBuyer_OfferDto extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_PerformanceReport extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'hostedMatchStatusRate';
|
||||
@@ -5534,6 +5620,7 @@ class Google_Service_AdExchangeBuyer_PerformanceReport extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_PerformanceReportList extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'performanceReport';
|
||||
@@ -5562,6 +5649,7 @@ class Google_Service_AdExchangeBuyer_PerformanceReportList extends Google_Collec
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_PretargetingConfig extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'verticals';
|
||||
@@ -5781,6 +5869,7 @@ class Google_Service_AdExchangeBuyer_PretargetingConfig extends Google_Collectio
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_PretargetingConfigDimensions extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5807,6 +5896,7 @@ class Google_Service_AdExchangeBuyer_PretargetingConfigDimensions extends Google
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_PretargetingConfigExcludedPlacements extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5833,6 +5923,7 @@ class Google_Service_AdExchangeBuyer_PretargetingConfigExcludedPlacements extend
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_PretargetingConfigList extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -5861,6 +5952,7 @@ class Google_Service_AdExchangeBuyer_PretargetingConfigList extends Google_Colle
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_PretargetingConfigPlacements extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5887,6 +5979,7 @@ class Google_Service_AdExchangeBuyer_PretargetingConfigPlacements extends Google
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_Price extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5913,6 +6006,7 @@ class Google_Service_AdExchangeBuyer_Price extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_PricePerBuyer extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5941,6 +6035,7 @@ class Google_Service_AdExchangeBuyer_PricePerBuyer extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_PrivateData extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5967,6 +6062,7 @@ class Google_Service_AdExchangeBuyer_PrivateData extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_RuleKeyValuePair extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5993,6 +6089,7 @@ class Google_Service_AdExchangeBuyer_RuleKeyValuePair extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_Seller extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -6019,6 +6116,7 @@ class Google_Service_AdExchangeBuyer_Seller extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_SharedTargeting extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'inclusions';
|
||||
@@ -6057,6 +6155,7 @@ class Google_Service_AdExchangeBuyer_SharedTargeting extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_StatsDto extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -6121,6 +6220,7 @@ class Google_Service_AdExchangeBuyer_StatsDto extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_TargetingValue extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -6167,6 +6267,7 @@ class Google_Service_AdExchangeBuyer_TargetingValue extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_TargetingValueCreativeSize extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'companionSizes';
|
||||
@@ -6205,6 +6306,7 @@ class Google_Service_AdExchangeBuyer_TargetingValueCreativeSize extends Google_C
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_TargetingValueDayPartTargeting extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'dayParts';
|
||||
@@ -6233,6 +6335,7 @@ class Google_Service_AdExchangeBuyer_TargetingValueDayPartTargeting extends Goog
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_TargetingValueDayPartTargetingDayPart extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -6286,6 +6389,7 @@ class Google_Service_AdExchangeBuyer_TargetingValueDayPartTargetingDayPart exten
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_TargetingValueSize extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -6312,6 +6416,7 @@ class Google_Service_AdExchangeBuyer_TargetingValueSize extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_TermsDto extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'urls';
|
||||
@@ -6573,6 +6678,7 @@ class Google_Service_AdExchangeBuyer_TermsDto extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeBuyer_WebPropertyDto extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'siteUrls';
|
||||
|
||||
@@ -29,6 +29,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeSeller extends Google_Service
|
||||
{
|
||||
/** View and manage your Ad Exchange data. */
|
||||
@@ -438,6 +439,7 @@ class Google_Service_AdExchangeSeller extends Google_Service
|
||||
* $accounts = $adexchangesellerService->accounts;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeSeller_Accounts_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -485,6 +487,7 @@ class Google_Service_AdExchangeSeller_Accounts_Resource extends Google_Service_R
|
||||
* $adclients = $adexchangesellerService->adclients;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeSeller_AccountsAdclients_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -517,6 +520,7 @@ class Google_Service_AdExchangeSeller_AccountsAdclients_Resource extends Google_
|
||||
* $alerts = $adexchangesellerService->alerts;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeSeller_AccountsAlerts_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -546,6 +550,7 @@ class Google_Service_AdExchangeSeller_AccountsAlerts_Resource extends Google_Ser
|
||||
* $customchannels = $adexchangesellerService->customchannels;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeSeller_AccountsCustomchannels_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -596,6 +601,7 @@ class Google_Service_AdExchangeSeller_AccountsCustomchannels_Resource extends Go
|
||||
* $metadata = $adexchangesellerService->metadata;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeSeller_AccountsMetadata_Resource extends Google_Service_Resource
|
||||
{
|
||||
}
|
||||
@@ -608,6 +614,7 @@ class Google_Service_AdExchangeSeller_AccountsMetadata_Resource extends Google_S
|
||||
* $dimensions = $adexchangesellerService->dimensions;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeSeller_AccountsMetadataDimensions_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -634,6 +641,7 @@ class Google_Service_AdExchangeSeller_AccountsMetadataDimensions_Resource extend
|
||||
* $metrics = $adexchangesellerService->metrics;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeSeller_AccountsMetadataMetrics_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -660,6 +668,7 @@ class Google_Service_AdExchangeSeller_AccountsMetadataMetrics_Resource extends G
|
||||
* $preferreddeals = $adexchangesellerService->preferreddeals;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeSeller_AccountsPreferreddeals_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -702,6 +711,7 @@ class Google_Service_AdExchangeSeller_AccountsPreferreddeals_Resource extends Go
|
||||
* $reports = $adexchangesellerService->reports;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeSeller_AccountsReports_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -746,6 +756,7 @@ class Google_Service_AdExchangeSeller_AccountsReports_Resource extends Google_Se
|
||||
* $saved = $adexchangesellerService->saved;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeSeller_AccountsReportsSaved_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -800,6 +811,7 @@ class Google_Service_AdExchangeSeller_AccountsReportsSaved_Resource extends Goog
|
||||
* $urlchannels = $adexchangesellerService->urlchannels;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeSeller_AccountsUrlchannels_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -829,6 +841,7 @@ class Google_Service_AdExchangeSeller_AccountsUrlchannels_Resource extends Googl
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeSeller_Account extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -864,6 +877,7 @@ class Google_Service_AdExchangeSeller_Account extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeSeller_Accounts extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -910,6 +924,7 @@ class Google_Service_AdExchangeSeller_Accounts extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeSeller_AdClient extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -963,6 +978,7 @@ class Google_Service_AdExchangeSeller_AdClient extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeSeller_AdClients extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -1009,6 +1025,7 @@ class Google_Service_AdExchangeSeller_AdClients extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeSeller_Alert extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1062,6 +1079,7 @@ class Google_Service_AdExchangeSeller_Alert extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeSeller_Alerts extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -1090,6 +1108,7 @@ class Google_Service_AdExchangeSeller_Alerts extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeSeller_CustomChannel extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1144,6 +1163,7 @@ class Google_Service_AdExchangeSeller_CustomChannel extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeSeller_CustomChannelTargetingInfo extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1188,6 +1208,7 @@ class Google_Service_AdExchangeSeller_CustomChannelTargetingInfo extends Google_
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeSeller_CustomChannels extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -1234,6 +1255,7 @@ class Google_Service_AdExchangeSeller_CustomChannels extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeSeller_Metadata extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -1262,6 +1284,7 @@ class Google_Service_AdExchangeSeller_Metadata extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeSeller_PreferredDeal extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1342,6 +1365,7 @@ class Google_Service_AdExchangeSeller_PreferredDeal extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeSeller_PreferredDeals extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -1370,6 +1394,7 @@ class Google_Service_AdExchangeSeller_PreferredDeals extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeSeller_Report extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'warnings';
|
||||
@@ -1443,6 +1468,7 @@ class Google_Service_AdExchangeSeller_Report extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeSeller_ReportHeaders extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1478,6 +1504,7 @@ class Google_Service_AdExchangeSeller_ReportHeaders extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeSeller_ReportingMetadataEntry extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'supportedProducts';
|
||||
@@ -1550,6 +1577,7 @@ class Google_Service_AdExchangeSeller_ReportingMetadataEntry extends Google_Coll
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeSeller_SavedReport extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1585,6 +1613,7 @@ class Google_Service_AdExchangeSeller_SavedReport extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeSeller_SavedReports extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -1631,6 +1660,7 @@ class Google_Service_AdExchangeSeller_SavedReports extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeSeller_UrlChannel extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1666,6 +1696,7 @@ class Google_Service_AdExchangeSeller_UrlChannel extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdExchangeSeller_UrlChannels extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
|
||||
@@ -29,6 +29,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSense extends Google_Service
|
||||
{
|
||||
/** View and manage your AdSense data. */
|
||||
@@ -1070,6 +1071,7 @@ class Google_Service_AdSense extends Google_Service
|
||||
* $accounts = $adsenseService->accounts;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSense_Accounts_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1117,6 +1119,7 @@ class Google_Service_AdSense_Accounts_Resource extends Google_Service_Resource
|
||||
* $adclients = $adsenseService->adclients;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSense_AccountsAdclients_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1149,6 +1152,7 @@ class Google_Service_AdSense_AccountsAdclients_Resource extends Google_Service_R
|
||||
* $adunits = $adsenseService->adunits;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSense_AccountsAdunits_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1218,6 +1222,7 @@ class Google_Service_AdSense_AccountsAdunits_Resource extends Google_Service_Res
|
||||
* $customchannels = $adsenseService->customchannels;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSense_AccountsAdunitsCustomchannels_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1252,6 +1257,7 @@ class Google_Service_AdSense_AccountsAdunitsCustomchannels_Resource extends Goog
|
||||
* $alerts = $adsenseService->alerts;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSense_AccountsAlerts_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1297,6 +1303,7 @@ class Google_Service_AdSense_AccountsAlerts_Resource extends Google_Service_Reso
|
||||
* $customchannels = $adsenseService->customchannels;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSense_AccountsCustomchannels_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1348,6 +1355,7 @@ class Google_Service_AdSense_AccountsCustomchannels_Resource extends Google_Serv
|
||||
* $adunits = $adsenseService->adunits;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSense_AccountsCustomchannelsAdunits_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1384,6 +1392,7 @@ class Google_Service_AdSense_AccountsCustomchannelsAdunits_Resource extends Goog
|
||||
* $payments = $adsenseService->payments;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSense_AccountsPayments_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1410,6 +1419,7 @@ class Google_Service_AdSense_AccountsPayments_Resource extends Google_Service_Re
|
||||
* $reports = $adsenseService->reports;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSense_AccountsReports_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1459,6 +1469,7 @@ class Google_Service_AdSense_AccountsReports_Resource extends Google_Service_Res
|
||||
* $saved = $adsenseService->saved;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSense_AccountsReportsSaved_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1513,6 +1524,7 @@ class Google_Service_AdSense_AccountsReportsSaved_Resource extends Google_Servic
|
||||
* $savedadstyles = $adsenseService->savedadstyles;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSense_AccountsSavedadstyles_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1560,6 +1572,7 @@ class Google_Service_AdSense_AccountsSavedadstyles_Resource extends Google_Servi
|
||||
* $urlchannels = $adsenseService->urlchannels;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSense_AccountsUrlchannels_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1594,6 +1607,7 @@ class Google_Service_AdSense_AccountsUrlchannels_Resource extends Google_Service
|
||||
* $adclients = $adsenseService->adclients;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSense_Adclients_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1625,6 +1639,7 @@ class Google_Service_AdSense_Adclients_Resource extends Google_Service_Resource
|
||||
* $adunits = $adsenseService->adunits;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSense_Adunits_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1690,6 +1705,7 @@ class Google_Service_AdSense_Adunits_Resource extends Google_Service_Resource
|
||||
* $customchannels = $adsenseService->customchannels;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSense_AdunitsCustomchannels_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1724,6 +1740,7 @@ class Google_Service_AdSense_AdunitsCustomchannels_Resource extends Google_Servi
|
||||
* $alerts = $adsenseService->alerts;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSense_Alerts_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1767,6 +1784,7 @@ class Google_Service_AdSense_Alerts_Resource extends Google_Service_Resource
|
||||
* $customchannels = $adsenseService->customchannels;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSense_Customchannels_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1816,6 +1834,7 @@ class Google_Service_AdSense_Customchannels_Resource extends Google_Service_Reso
|
||||
* $adunits = $adsenseService->adunits;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSense_CustomchannelsAdunits_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1852,6 +1871,7 @@ class Google_Service_AdSense_CustomchannelsAdunits_Resource extends Google_Servi
|
||||
* $metadata = $adsenseService->metadata;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSense_Metadata_Resource extends Google_Service_Resource
|
||||
{
|
||||
}
|
||||
@@ -1864,6 +1884,7 @@ class Google_Service_AdSense_Metadata_Resource extends Google_Service_Resource
|
||||
* $dimensions = $adsenseService->dimensions;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSense_MetadataDimensions_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1889,6 +1910,7 @@ class Google_Service_AdSense_MetadataDimensions_Resource extends Google_Service_
|
||||
* $metrics = $adsenseService->metrics;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSense_MetadataMetrics_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1915,6 +1937,7 @@ class Google_Service_AdSense_MetadataMetrics_Resource extends Google_Service_Res
|
||||
* $payments = $adsenseService->payments;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSense_Payments_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1940,6 +1963,7 @@ class Google_Service_AdSense_Payments_Resource extends Google_Service_Resource
|
||||
* $reports = $adsenseService->reports;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSense_Reports_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1989,6 +2013,7 @@ class Google_Service_AdSense_Reports_Resource extends Google_Service_Resource
|
||||
* $saved = $adsenseService->saved;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSense_ReportsSaved_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2041,6 +2066,7 @@ class Google_Service_AdSense_ReportsSaved_Resource extends Google_Service_Resour
|
||||
* $savedadstyles = $adsenseService->savedadstyles;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSense_Savedadstyles_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2087,6 +2113,7 @@ class Google_Service_AdSense_Savedadstyles_Resource extends Google_Service_Resou
|
||||
* $urlchannels = $adsenseService->urlchannels;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSense_Urlchannels_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2115,6 +2142,7 @@ class Google_Service_AdSense_Urlchannels_Resource extends Google_Service_Resourc
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSense_Account extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'subAccounts';
|
||||
@@ -2189,6 +2217,7 @@ class Google_Service_AdSense_Account extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSense_Accounts extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -2235,6 +2264,7 @@ class Google_Service_AdSense_Accounts extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSense_AdClient extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2297,6 +2327,7 @@ class Google_Service_AdSense_AdClient extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSense_AdClients extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -2343,6 +2374,7 @@ class Google_Service_AdSense_AdClients extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSense_AdCode extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2369,6 +2401,7 @@ class Google_Service_AdSense_AdCode extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSense_AdStyle extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2415,6 +2448,7 @@ class Google_Service_AdSense_AdStyle extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSense_AdStyleColors extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2468,6 +2502,7 @@ class Google_Service_AdSense_AdStyleColors extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSense_AdStyleFont extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2494,6 +2529,7 @@ class Google_Service_AdSense_AdStyleFont extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSense_AdUnit extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2596,6 +2632,7 @@ class Google_Service_AdSense_AdUnit extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSense_AdUnitContentAdsSettings extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2632,6 +2669,7 @@ class Google_Service_AdSense_AdUnitContentAdsSettings extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSense_AdUnitContentAdsSettingsBackupOption extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2667,6 +2705,7 @@ class Google_Service_AdSense_AdUnitContentAdsSettingsBackupOption extends Google
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSense_AdUnitFeedAdsSettings extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2711,6 +2750,7 @@ class Google_Service_AdSense_AdUnitFeedAdsSettings extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSense_AdUnitMobileContentAdsSettings extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2755,6 +2795,7 @@ class Google_Service_AdSense_AdUnitMobileContentAdsSettings extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSense_AdUnits extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -2801,6 +2842,7 @@ class Google_Service_AdSense_AdUnits extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSense_AdsenseReportsGenerateResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'warnings';
|
||||
@@ -2892,6 +2934,7 @@ class Google_Service_AdSense_AdsenseReportsGenerateResponse extends Google_Colle
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSense_AdsenseReportsGenerateResponseHeaders extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2927,6 +2970,7 @@ class Google_Service_AdSense_AdsenseReportsGenerateResponseHeaders extends Googl
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSense_Alert extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2989,6 +3033,7 @@ class Google_Service_AdSense_Alert extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSense_Alerts extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -3017,6 +3062,7 @@ class Google_Service_AdSense_Alerts extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSense_CustomChannel extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3071,6 +3117,7 @@ class Google_Service_AdSense_CustomChannel extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSense_CustomChannelTargetingInfo extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3115,6 +3162,7 @@ class Google_Service_AdSense_CustomChannelTargetingInfo extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSense_CustomChannels extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -3161,6 +3209,7 @@ class Google_Service_AdSense_CustomChannels extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSense_Metadata extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -3189,6 +3238,7 @@ class Google_Service_AdSense_Metadata extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSense_Payment extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3242,6 +3292,7 @@ class Google_Service_AdSense_Payment extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSense_Payments extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -3270,6 +3321,7 @@ class Google_Service_AdSense_Payments extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSense_ReportingMetadataEntry extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'supportedProducts';
|
||||
@@ -3342,6 +3394,7 @@ class Google_Service_AdSense_ReportingMetadataEntry extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSense_SavedAdStyle extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3387,6 +3440,7 @@ class Google_Service_AdSense_SavedAdStyle extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSense_SavedAdStyles extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -3433,6 +3487,7 @@ class Google_Service_AdSense_SavedAdStyles extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSense_SavedReport extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3468,6 +3523,7 @@ class Google_Service_AdSense_SavedReport extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSense_SavedReports extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -3514,6 +3570,7 @@ class Google_Service_AdSense_SavedReports extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSense_UrlChannel extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3549,6 +3606,7 @@ class Google_Service_AdSense_UrlChannel extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSense_UrlChannels extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
|
||||
@@ -29,6 +29,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSenseHost extends Google_Service
|
||||
{
|
||||
/** View and manage your AdSense host data and associated accounts. */
|
||||
@@ -639,6 +640,7 @@ class Google_Service_AdSenseHost extends Google_Service
|
||||
* $accounts = $adsensehostService->accounts;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSenseHost_Accounts_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -680,6 +682,7 @@ class Google_Service_AdSenseHost_Accounts_Resource extends Google_Service_Resour
|
||||
* $adclients = $adsensehostService->adclients;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSenseHost_AccountsAdclients_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -728,6 +731,7 @@ class Google_Service_AdSenseHost_AccountsAdclients_Resource extends Google_Servi
|
||||
* $adunits = $adsensehostService->adunits;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSenseHost_AccountsAdunits_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -868,6 +872,7 @@ class Google_Service_AdSenseHost_AccountsAdunits_Resource extends Google_Service
|
||||
* $reports = $adsensehostService->reports;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSenseHost_AccountsReports_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -912,6 +917,7 @@ class Google_Service_AdSenseHost_AccountsReports_Resource extends Google_Service
|
||||
* $adclients = $adsensehostService->adclients;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSenseHost_Adclients_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -958,6 +964,7 @@ class Google_Service_AdSenseHost_Adclients_Resource extends Google_Service_Resou
|
||||
* $associationsessions = $adsensehostService->associationsessions;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSenseHost_Associationsessions_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1004,6 +1011,7 @@ class Google_Service_AdSenseHost_Associationsessions_Resource extends Google_Ser
|
||||
* $customchannels = $adsensehostService->customchannels;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSenseHost_Customchannels_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1119,6 +1127,7 @@ class Google_Service_AdSenseHost_Customchannels_Resource extends Google_Service_
|
||||
* $reports = $adsensehostService->reports;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSenseHost_Reports_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1162,6 +1171,7 @@ class Google_Service_AdSenseHost_Reports_Resource extends Google_Service_Resourc
|
||||
* $urlchannels = $adsensehostService->urlchannels;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSenseHost_Urlchannels_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1221,6 +1231,7 @@ class Google_Service_AdSenseHost_Urlchannels_Resource extends Google_Service_Res
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSenseHost_Account extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1265,6 +1276,7 @@ class Google_Service_AdSenseHost_Account extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSenseHost_Accounts extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -1302,6 +1314,7 @@ class Google_Service_AdSenseHost_Accounts extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSenseHost_AdClient extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1355,6 +1368,7 @@ class Google_Service_AdSenseHost_AdClient extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSenseHost_AdClients extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -1401,6 +1415,7 @@ class Google_Service_AdSenseHost_AdClients extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSenseHost_AdCode extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1427,6 +1442,7 @@ class Google_Service_AdSenseHost_AdCode extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSenseHost_AdStyle extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1473,6 +1489,7 @@ class Google_Service_AdSenseHost_AdStyle extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSenseHost_AdStyleColors extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1526,6 +1543,7 @@ class Google_Service_AdSenseHost_AdStyleColors extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSenseHost_AdStyleFont extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1552,6 +1570,7 @@ class Google_Service_AdSenseHost_AdStyleFont extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSenseHost_AdUnit extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1635,6 +1654,7 @@ class Google_Service_AdSenseHost_AdUnit extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSenseHost_AdUnitContentAdsSettings extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1671,6 +1691,7 @@ class Google_Service_AdSenseHost_AdUnitContentAdsSettings extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSenseHost_AdUnitContentAdsSettingsBackupOption extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1706,6 +1727,7 @@ class Google_Service_AdSenseHost_AdUnitContentAdsSettingsBackupOption extends Go
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSenseHost_AdUnitMobileContentAdsSettings extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1750,6 +1772,7 @@ class Google_Service_AdSenseHost_AdUnitMobileContentAdsSettings extends Google_M
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSenseHost_AdUnits extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -1796,6 +1819,7 @@ class Google_Service_AdSenseHost_AdUnits extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSenseHost_AssociationSession extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'productCodes';
|
||||
@@ -1886,6 +1910,7 @@ class Google_Service_AdSenseHost_AssociationSession extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSenseHost_CustomChannel extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1930,6 +1955,7 @@ class Google_Service_AdSenseHost_CustomChannel extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSenseHost_CustomChannels extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -1976,6 +2002,7 @@ class Google_Service_AdSenseHost_CustomChannels extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSenseHost_Report extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'warnings';
|
||||
@@ -2049,6 +2076,7 @@ class Google_Service_AdSenseHost_Report extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSenseHost_ReportHeaders extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2084,6 +2112,7 @@ class Google_Service_AdSenseHost_ReportHeaders extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSenseHost_UrlChannel extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2119,6 +2148,7 @@ class Google_Service_AdSenseHost_UrlChannel extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AdSenseHost_UrlChannels extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
|
||||
@@ -28,6 +28,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Admin extends Google_Service
|
||||
{
|
||||
/** Manage email messages of users on your domain. */
|
||||
@@ -82,6 +83,7 @@ class Google_Service_Admin extends Google_Service
|
||||
* $mail = $adminService->mail;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Admin_Mail_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -103,6 +105,7 @@ class Google_Service_Admin_Mail_Resource extends Google_Service_Resource
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Admin_MailItem extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'labels';
|
||||
|
||||
@@ -28,6 +28,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics extends Google_Service
|
||||
{
|
||||
/** View and manage your Google Analytics data. */
|
||||
@@ -1970,6 +1971,7 @@ class Google_Service_Analytics extends Google_Service
|
||||
* $data = $analyticsService->data;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_Data_Resource extends Google_Service_Resource
|
||||
{
|
||||
}
|
||||
@@ -1982,6 +1984,7 @@ class Google_Service_Analytics_Data_Resource extends Google_Service_Resource
|
||||
* $ga = $analyticsService->ga;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_DataGa_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2031,6 +2034,7 @@ class Google_Service_Analytics_DataGa_Resource extends Google_Service_Resource
|
||||
* $mcf = $analyticsService->mcf;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_DataMcf_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2078,6 +2082,7 @@ class Google_Service_Analytics_DataMcf_Resource extends Google_Service_Resource
|
||||
* $realtime = $analyticsService->realtime;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_DataRealtime_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2116,6 +2121,7 @@ class Google_Service_Analytics_DataRealtime_Resource extends Google_Service_Reso
|
||||
* $management = $analyticsService->management;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_Management_Resource extends Google_Service_Resource
|
||||
{
|
||||
}
|
||||
@@ -2128,6 +2134,7 @@ class Google_Service_Analytics_Management_Resource extends Google_Service_Resour
|
||||
* $accountSummaries = $analyticsService->accountSummaries;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_ManagementAccountSummaries_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2159,6 +2166,7 @@ class Google_Service_Analytics_ManagementAccountSummaries_Resource extends Googl
|
||||
* $accountUserLinks = $analyticsService->accountUserLinks;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_ManagementAccountUserLinks_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2237,6 +2245,7 @@ class Google_Service_Analytics_ManagementAccountUserLinks_Resource extends Googl
|
||||
* $accounts = $analyticsService->accounts;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_ManagementAccounts_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2268,6 +2277,7 @@ class Google_Service_Analytics_ManagementAccounts_Resource extends Google_Servic
|
||||
* $customDataSources = $analyticsService->customDataSources;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_ManagementCustomDataSources_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2302,6 +2312,7 @@ class Google_Service_Analytics_ManagementCustomDataSources_Resource extends Goog
|
||||
* $customDimensions = $analyticsService->customDimensions;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_ManagementCustomDimensions_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2416,6 +2427,7 @@ class Google_Service_Analytics_ManagementCustomDimensions_Resource extends Googl
|
||||
* $customMetrics = $analyticsService->customMetrics;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_ManagementCustomMetrics_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2528,6 +2540,7 @@ class Google_Service_Analytics_ManagementCustomMetrics_Resource extends Google_S
|
||||
* $experiments = $analyticsService->experiments;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_ManagementExperiments_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2649,6 +2662,7 @@ class Google_Service_Analytics_ManagementExperiments_Resource extends Google_Ser
|
||||
* $filters = $analyticsService->filters;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_ManagementFilters_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2757,6 +2771,7 @@ class Google_Service_Analytics_ManagementFilters_Resource extends Google_Service
|
||||
* $goals = $analyticsService->goals;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_ManagementGoals_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2866,6 +2881,7 @@ class Google_Service_Analytics_ManagementGoals_Resource extends Google_Service_R
|
||||
* $profileFilterLinks = $analyticsService->profileFilterLinks;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_ManagementProfileFilterLinks_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2995,6 +3011,7 @@ class Google_Service_Analytics_ManagementProfileFilterLinks_Resource extends Goo
|
||||
* $profileUserLinks = $analyticsService->profileUserLinks;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_ManagementProfileUserLinks_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -3086,6 +3103,7 @@ class Google_Service_Analytics_ManagementProfileUserLinks_Resource extends Googl
|
||||
* $profiles = $analyticsService->profiles;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_ManagementProfiles_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -3208,6 +3226,7 @@ class Google_Service_Analytics_ManagementProfiles_Resource extends Google_Servic
|
||||
* $segments = $analyticsService->segments;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_ManagementSegments_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -3239,6 +3258,7 @@ class Google_Service_Analytics_ManagementSegments_Resource extends Google_Servic
|
||||
* $unsampledReports = $analyticsService->unsampledReports;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_ManagementUnsampledReports_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -3313,6 +3333,7 @@ class Google_Service_Analytics_ManagementUnsampledReports_Resource extends Googl
|
||||
* $uploads = $analyticsService->uploads;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_ManagementUploads_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -3400,6 +3421,7 @@ class Google_Service_Analytics_ManagementUploads_Resource extends Google_Service
|
||||
* $webPropertyAdWordsLinks = $analyticsService->webPropertyAdWordsLinks;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_ManagementWebPropertyAdWordsLinks_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -3527,6 +3549,7 @@ class Google_Service_Analytics_ManagementWebPropertyAdWordsLinks_Resource extend
|
||||
* $webproperties = $analyticsService->webproperties;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_ManagementWebproperties_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -3625,6 +3648,7 @@ class Google_Service_Analytics_ManagementWebproperties_Resource extends Google_S
|
||||
* $webpropertyUserLinks = $analyticsService->webpropertyUserLinks;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_ManagementWebpropertyUserLinks_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -3711,6 +3735,7 @@ class Google_Service_Analytics_ManagementWebpropertyUserLinks_Resource extends G
|
||||
* $metadata = $analyticsService->metadata;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_Metadata_Resource extends Google_Service_Resource
|
||||
{
|
||||
}
|
||||
@@ -3723,6 +3748,7 @@ class Google_Service_Analytics_Metadata_Resource extends Google_Service_Resource
|
||||
* $columns = $analyticsService->columns;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_MetadataColumns_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -3750,6 +3776,7 @@ class Google_Service_Analytics_MetadataColumns_Resource extends Google_Service_R
|
||||
* $provisioning = $analyticsService->provisioning;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_Provisioning_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -3771,6 +3798,7 @@ class Google_Service_Analytics_Provisioning_Resource extends Google_Service_Reso
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_Account extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3853,6 +3881,7 @@ class Google_Service_Analytics_Account extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_AccountChildLink extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3879,6 +3908,7 @@ class Google_Service_Analytics_AccountChildLink extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_AccountPermissions extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'effective';
|
||||
@@ -3897,6 +3927,7 @@ class Google_Service_Analytics_AccountPermissions extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_AccountRef extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3941,6 +3972,7 @@ class Google_Service_Analytics_AccountRef extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_AccountSummaries extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -4023,6 +4055,7 @@ class Google_Service_Analytics_AccountSummaries extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_AccountSummary extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'webProperties';
|
||||
@@ -4069,6 +4102,7 @@ class Google_Service_Analytics_AccountSummary extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_AccountTicket extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -4134,6 +4168,7 @@ class Google_Service_Analytics_AccountTicket extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_Accounts extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -4216,6 +4251,7 @@ class Google_Service_Analytics_Accounts extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_AdWordsAccount extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -4251,6 +4287,7 @@ class Google_Service_Analytics_AdWordsAccount extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_AnalyticsDataimportDeleteUploadDataRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'customDataImportUids';
|
||||
@@ -4269,6 +4306,7 @@ class Google_Service_Analytics_AnalyticsDataimportDeleteUploadDataRequest extend
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_Column extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -4304,10 +4342,12 @@ class Google_Service_Analytics_Column extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_ColumnAttributes extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_Columns extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -4363,6 +4403,7 @@ class Google_Service_Analytics_Columns extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_CustomDataSource extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'profilesLinked';
|
||||
@@ -4509,6 +4550,7 @@ class Google_Service_Analytics_CustomDataSource extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_CustomDataSourceChildLink extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -4535,6 +4577,7 @@ class Google_Service_Analytics_CustomDataSourceChildLink extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_CustomDataSourceParentLink extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -4561,6 +4604,7 @@ class Google_Service_Analytics_CustomDataSourceParentLink extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_CustomDataSources extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -4643,6 +4687,7 @@ class Google_Service_Analytics_CustomDataSources extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_CustomDimension extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -4760,6 +4805,7 @@ class Google_Service_Analytics_CustomDimension extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_CustomDimensionParentLink extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -4786,6 +4832,7 @@ class Google_Service_Analytics_CustomDimensionParentLink extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_CustomDimensions extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -4868,6 +4915,7 @@ class Google_Service_Analytics_CustomDimensions extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_CustomMetric extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5014,6 +5062,7 @@ class Google_Service_Analytics_CustomMetric extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_CustomMetricParentLink extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5040,6 +5089,7 @@ class Google_Service_Analytics_CustomMetricParentLink extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_CustomMetrics extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -5122,6 +5172,7 @@ class Google_Service_Analytics_CustomMetrics extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_EntityAdWordsLink extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'profileIds';
|
||||
@@ -5196,6 +5247,7 @@ class Google_Service_Analytics_EntityAdWordsLink extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_EntityAdWordsLinkEntity extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5214,6 +5266,7 @@ class Google_Service_Analytics_EntityAdWordsLinkEntity extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_EntityAdWordsLinks extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -5287,6 +5340,7 @@ class Google_Service_Analytics_EntityAdWordsLinks extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_EntityUserLink extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5352,6 +5406,7 @@ class Google_Service_Analytics_EntityUserLink extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_EntityUserLinkEntity extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5390,6 +5445,7 @@ class Google_Service_Analytics_EntityUserLinkEntity extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_EntityUserLinkPermissions extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'local';
|
||||
@@ -5417,6 +5473,7 @@ class Google_Service_Analytics_EntityUserLinkPermissions extends Google_Collecti
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_EntityUserLinks extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -5490,6 +5547,7 @@ class Google_Service_Analytics_EntityUserLinks extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_Experiment extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'variations';
|
||||
@@ -5753,6 +5811,7 @@ class Google_Service_Analytics_Experiment extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_ExperimentParentLink extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5779,6 +5838,7 @@ class Google_Service_Analytics_ExperimentParentLink extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_ExperimentVariations extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5832,6 +5892,7 @@ class Google_Service_Analytics_ExperimentVariations extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_Experiments extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -5914,6 +5975,7 @@ class Google_Service_Analytics_Experiments extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_Filter extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -6064,6 +6126,7 @@ class Google_Service_Analytics_Filter extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_FilterAdvancedDetails extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -6189,6 +6252,7 @@ class Google_Service_Analytics_FilterAdvancedDetails extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_FilterExpression extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -6251,6 +6315,7 @@ class Google_Service_Analytics_FilterExpression extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_FilterLowercaseDetails extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -6277,6 +6342,7 @@ class Google_Service_Analytics_FilterLowercaseDetails extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_FilterParentLink extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -6303,6 +6369,7 @@ class Google_Service_Analytics_FilterParentLink extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_FilterRef extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -6356,6 +6423,7 @@ class Google_Service_Analytics_FilterRef extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_FilterSearchAndReplaceDetails extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -6409,6 +6477,7 @@ class Google_Service_Analytics_FilterSearchAndReplaceDetails extends Google_Mode
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_FilterUppercaseDetails extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -6435,6 +6504,7 @@ class Google_Service_Analytics_FilterUppercaseDetails extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_Filters extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -6517,6 +6587,7 @@ class Google_Service_Analytics_Filters extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_GaData extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'rows';
|
||||
@@ -6674,6 +6745,7 @@ class Google_Service_Analytics_GaData extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_GaDataColumnHeaders extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -6709,6 +6781,7 @@ class Google_Service_Analytics_GaDataColumnHeaders extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_GaDataDataTable extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'rows';
|
||||
@@ -6738,6 +6811,7 @@ class Google_Service_Analytics_GaDataDataTable extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_GaDataDataTableCols extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -6773,6 +6847,7 @@ class Google_Service_Analytics_GaDataDataTableCols extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_GaDataDataTableRows extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'c';
|
||||
@@ -6792,6 +6867,7 @@ class Google_Service_Analytics_GaDataDataTableRows extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_GaDataDataTableRowsC extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -6809,6 +6885,7 @@ class Google_Service_Analytics_GaDataDataTableRowsC extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_GaDataProfileInfo extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -6871,6 +6948,7 @@ class Google_Service_Analytics_GaDataProfileInfo extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_GaDataQuery extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'sort';
|
||||
@@ -6983,10 +7061,12 @@ class Google_Service_Analytics_GaDataQuery extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_GaDataTotalsForAllResults extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_Goal extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -7162,6 +7242,7 @@ class Google_Service_Analytics_Goal extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_GoalEventDetails extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'eventConditions';
|
||||
@@ -7190,6 +7271,7 @@ class Google_Service_Analytics_GoalEventDetails extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_GoalEventDetailsEventConditions extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -7243,6 +7325,7 @@ class Google_Service_Analytics_GoalEventDetailsEventConditions extends Google_Mo
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_GoalParentLink extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -7269,6 +7352,7 @@ class Google_Service_Analytics_GoalParentLink extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_GoalUrlDestinationDetails extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'steps';
|
||||
@@ -7324,6 +7408,7 @@ class Google_Service_Analytics_GoalUrlDestinationDetails extends Google_Collecti
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_GoalUrlDestinationDetailsSteps extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -7359,6 +7444,7 @@ class Google_Service_Analytics_GoalUrlDestinationDetailsSteps extends Google_Mod
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_GoalVisitNumPagesDetails extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -7385,6 +7471,7 @@ class Google_Service_Analytics_GoalVisitNumPagesDetails extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_GoalVisitTimeOnSiteDetails extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -7411,6 +7498,7 @@ class Google_Service_Analytics_GoalVisitTimeOnSiteDetails extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_Goals extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -7493,6 +7581,7 @@ class Google_Service_Analytics_Goals extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_McfData extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'rows';
|
||||
@@ -7641,6 +7730,7 @@ class Google_Service_Analytics_McfData extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_McfDataColumnHeaders extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -7676,6 +7766,7 @@ class Google_Service_Analytics_McfDataColumnHeaders extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_McfDataProfileInfo extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -7738,6 +7829,7 @@ class Google_Service_Analytics_McfDataProfileInfo extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_McfDataQuery extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'sort';
|
||||
@@ -7850,6 +7942,7 @@ class Google_Service_Analytics_McfDataQuery extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_McfDataRows extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'conversionPathValue';
|
||||
@@ -7878,6 +7971,7 @@ class Google_Service_Analytics_McfDataRows extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_McfDataRowsConversionPathValue extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -7904,10 +7998,12 @@ class Google_Service_Analytics_McfDataRowsConversionPathValue extends Google_Mod
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_McfDataTotalsForAllResults extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_Profile extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -8135,6 +8231,7 @@ class Google_Service_Analytics_Profile extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_ProfileChildLink extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -8161,6 +8258,7 @@ class Google_Service_Analytics_ProfileChildLink extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_ProfileFilterLink extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -8225,6 +8323,7 @@ class Google_Service_Analytics_ProfileFilterLink extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_ProfileFilterLinks extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -8307,6 +8406,7 @@ class Google_Service_Analytics_ProfileFilterLinks extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_ProfileParentLink extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -8333,6 +8433,7 @@ class Google_Service_Analytics_ProfileParentLink extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_ProfilePermissions extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'effective';
|
||||
@@ -8351,6 +8452,7 @@ class Google_Service_Analytics_ProfilePermissions extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_ProfileRef extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -8422,6 +8524,7 @@ class Google_Service_Analytics_ProfileRef extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_ProfileSummary extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -8466,6 +8569,7 @@ class Google_Service_Analytics_ProfileSummary extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_Profiles extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -8548,6 +8652,7 @@ class Google_Service_Analytics_Profiles extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_RealtimeData extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'rows';
|
||||
@@ -8641,6 +8746,7 @@ class Google_Service_Analytics_RealtimeData extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_RealtimeDataColumnHeaders extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -8676,6 +8782,7 @@ class Google_Service_Analytics_RealtimeDataColumnHeaders extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_RealtimeDataProfileInfo extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -8738,6 +8845,7 @@ class Google_Service_Analytics_RealtimeDataProfileInfo extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_RealtimeDataQuery extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'sort';
|
||||
@@ -8802,10 +8910,12 @@ class Google_Service_Analytics_RealtimeDataQuery extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_RealtimeDataTotalsForAllResults extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_Segment extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -8895,6 +9005,7 @@ class Google_Service_Analytics_Segment extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_Segments extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -8977,6 +9088,7 @@ class Google_Service_Analytics_Segments extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_UnsampledReport extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -9160,6 +9272,7 @@ class Google_Service_Analytics_UnsampledReport extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_UnsampledReportCloudStorageDownloadDetails extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -9186,6 +9299,7 @@ class Google_Service_Analytics_UnsampledReportCloudStorageDownloadDetails extend
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_UnsampledReportDriveDownloadDetails extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -9203,6 +9317,7 @@ class Google_Service_Analytics_UnsampledReportDriveDownloadDetails extends Googl
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_UnsampledReports extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -9285,6 +9400,7 @@ class Google_Service_Analytics_UnsampledReports extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_Upload extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'errors';
|
||||
@@ -9348,6 +9464,7 @@ class Google_Service_Analytics_Upload extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_Uploads extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -9421,6 +9538,7 @@ class Google_Service_Analytics_Uploads extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_UserRef extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -9456,6 +9574,7 @@ class Google_Service_Analytics_UserRef extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_WebPropertyRef extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -9518,6 +9637,7 @@ class Google_Service_Analytics_WebPropertyRef extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_WebPropertySummary extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'profiles';
|
||||
@@ -9591,6 +9711,7 @@ class Google_Service_Analytics_WebPropertySummary extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_Webproperties extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -9673,6 +9794,7 @@ class Google_Service_Analytics_Webproperties extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_Webproperty extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -9828,6 +9950,7 @@ class Google_Service_Analytics_Webproperty extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_WebpropertyChildLink extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -9854,6 +9977,7 @@ class Google_Service_Analytics_WebpropertyChildLink extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_WebpropertyParentLink extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -9880,6 +10004,7 @@ class Google_Service_Analytics_WebpropertyParentLink extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Analytics_WebpropertyPermissions extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'effective';
|
||||
|
||||
@@ -29,6 +29,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidEnterprise extends Google_Service
|
||||
{
|
||||
/** Manage corporate Android devices. */
|
||||
@@ -982,6 +983,7 @@ class Google_Service_AndroidEnterprise extends Google_Service
|
||||
* $collections = $androidenterpriseService->collections;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidEnterprise_Collections_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1086,6 +1088,7 @@ class Google_Service_AndroidEnterprise_Collections_Resource extends Google_Servi
|
||||
* $collectionviewers = $androidenterpriseService->collectionviewers;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidEnterprise_Collectionviewers_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1190,6 +1193,7 @@ class Google_Service_AndroidEnterprise_Collectionviewers_Resource extends Google
|
||||
* $devices = $androidenterpriseService->devices;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidEnterprise_Devices_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1274,6 +1278,7 @@ class Google_Service_AndroidEnterprise_Devices_Resource extends Google_Service_R
|
||||
* $enterprises = $androidenterpriseService->enterprises;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidEnterprise_Enterprises_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1409,6 +1414,7 @@ class Google_Service_AndroidEnterprise_Enterprises_Resource extends Google_Servi
|
||||
* $entitlements = $androidenterpriseService->entitlements;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidEnterprise_Entitlements_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1518,6 +1524,7 @@ class Google_Service_AndroidEnterprise_Entitlements_Resource extends Google_Serv
|
||||
* $grouplicenses = $androidenterpriseService->grouplicenses;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidEnterprise_Grouplicenses_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1562,6 +1569,7 @@ class Google_Service_AndroidEnterprise_Grouplicenses_Resource extends Google_Ser
|
||||
* $grouplicenseusers = $androidenterpriseService->grouplicenseusers;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidEnterprise_Grouplicenseusers_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1591,6 +1599,7 @@ class Google_Service_AndroidEnterprise_Grouplicenseusers_Resource extends Google
|
||||
* $installs = $androidenterpriseService->installs;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidEnterprise_Installs_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1699,6 +1708,7 @@ class Google_Service_AndroidEnterprise_Installs_Resource extends Google_Service_
|
||||
* $permissions = $androidenterpriseService->permissions;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidEnterprise_Permissions_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1729,6 +1739,7 @@ class Google_Service_AndroidEnterprise_Permissions_Resource extends Google_Servi
|
||||
* $products = $androidenterpriseService->products;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidEnterprise_Products_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1856,6 +1867,7 @@ class Google_Service_AndroidEnterprise_Products_Resource extends Google_Service_
|
||||
* $users = $androidenterpriseService->users;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidEnterprise_Users_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1958,6 +1970,7 @@ class Google_Service_AndroidEnterprise_Users_Resource extends Google_Service_Res
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidEnterprise_AppRestrictionsSchema extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'restrictions';
|
||||
@@ -1986,6 +1999,7 @@ class Google_Service_AndroidEnterprise_AppRestrictionsSchema extends Google_Coll
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidEnterprise_AppRestrictionsSchemaRestriction extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'entryValue';
|
||||
@@ -2059,6 +2073,7 @@ class Google_Service_AndroidEnterprise_AppRestrictionsSchemaRestriction extends
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidEnterprise_AppRestrictionsSchemaRestrictionRestrictionValue extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'valueMultiselect';
|
||||
@@ -2113,6 +2128,7 @@ class Google_Service_AndroidEnterprise_AppRestrictionsSchemaRestrictionRestricti
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidEnterprise_AppVersion extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2139,6 +2155,7 @@ class Google_Service_AndroidEnterprise_AppVersion extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidEnterprise_ApprovalUrlInfo extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2165,6 +2182,7 @@ class Google_Service_AndroidEnterprise_ApprovalUrlInfo extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidEnterprise_Collection extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'productId';
|
||||
@@ -2219,6 +2237,7 @@ class Google_Service_AndroidEnterprise_Collection extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidEnterprise_CollectionViewersListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'user';
|
||||
@@ -2247,6 +2266,7 @@ class Google_Service_AndroidEnterprise_CollectionViewersListResponse extends Goo
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidEnterprise_CollectionsListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'collection';
|
||||
@@ -2275,6 +2295,7 @@ class Google_Service_AndroidEnterprise_CollectionsListResponse extends Google_Co
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidEnterprise_Device extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2310,6 +2331,7 @@ class Google_Service_AndroidEnterprise_Device extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidEnterprise_DeviceState extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2336,6 +2358,7 @@ class Google_Service_AndroidEnterprise_DeviceState extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidEnterprise_DevicesListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'device';
|
||||
@@ -2364,6 +2387,7 @@ class Google_Service_AndroidEnterprise_DevicesListResponse extends Google_Collec
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidEnterprise_Enterprise extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2408,6 +2432,7 @@ class Google_Service_AndroidEnterprise_Enterprise extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidEnterprise_EnterpriseAccount extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2434,6 +2459,7 @@ class Google_Service_AndroidEnterprise_EnterpriseAccount extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidEnterprise_EnterprisesListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'enterprise';
|
||||
@@ -2462,6 +2488,7 @@ class Google_Service_AndroidEnterprise_EnterprisesListResponse extends Google_Co
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidEnterprise_EnterprisesSendTestPushNotificationResponse extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2488,6 +2515,7 @@ class Google_Service_AndroidEnterprise_EnterprisesSendTestPushNotificationRespon
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidEnterprise_Entitlement extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2523,6 +2551,7 @@ class Google_Service_AndroidEnterprise_Entitlement extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidEnterprise_EntitlementsListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'entitlement';
|
||||
@@ -2551,6 +2580,7 @@ class Google_Service_AndroidEnterprise_EntitlementsListResponse extends Google_C
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidEnterprise_GroupLicense extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2613,6 +2643,7 @@ class Google_Service_AndroidEnterprise_GroupLicense extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidEnterprise_GroupLicenseUsersListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'user';
|
||||
@@ -2641,6 +2672,7 @@ class Google_Service_AndroidEnterprise_GroupLicenseUsersListResponse extends Goo
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidEnterprise_GroupLicensesListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'groupLicense';
|
||||
@@ -2669,6 +2701,7 @@ class Google_Service_AndroidEnterprise_GroupLicensesListResponse extends Google_
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidEnterprise_Install extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2713,6 +2746,7 @@ class Google_Service_AndroidEnterprise_Install extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidEnterprise_InstallsListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'install';
|
||||
@@ -2741,6 +2775,7 @@ class Google_Service_AndroidEnterprise_InstallsListResponse extends Google_Colle
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidEnterprise_Permission extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2785,6 +2820,7 @@ class Google_Service_AndroidEnterprise_Permission extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidEnterprise_Product extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'appVersion';
|
||||
@@ -2885,6 +2921,7 @@ class Google_Service_AndroidEnterprise_Product extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidEnterprise_ProductPermission extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2911,6 +2948,7 @@ class Google_Service_AndroidEnterprise_ProductPermission extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidEnterprise_ProductPermissions extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'permission';
|
||||
@@ -2948,6 +2986,7 @@ class Google_Service_AndroidEnterprise_ProductPermissions extends Google_Collect
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidEnterprise_ProductSet extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'productId';
|
||||
@@ -2975,6 +3014,7 @@ class Google_Service_AndroidEnterprise_ProductSet extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidEnterprise_ProductsApproveRequest extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2993,6 +3033,7 @@ class Google_Service_AndroidEnterprise_ProductsApproveRequest extends Google_Mod
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidEnterprise_ProductsGenerateApprovalUrlResponse extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3010,6 +3051,7 @@ class Google_Service_AndroidEnterprise_ProductsGenerateApprovalUrlResponse exten
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidEnterprise_User extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3045,6 +3087,7 @@ class Google_Service_AndroidEnterprise_User extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidEnterprise_UserToken extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3080,6 +3123,7 @@ class Google_Service_AndroidEnterprise_UserToken extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidEnterprise_UsersListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'user';
|
||||
|
||||
@@ -28,6 +28,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher extends Google_Service
|
||||
{
|
||||
/** View and manage your Google Play Developer account. */
|
||||
@@ -1208,6 +1209,7 @@ class Google_Service_AndroidPublisher extends Google_Service
|
||||
* $edits = $androidpublisherService->edits;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_Edits_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1304,6 +1306,7 @@ class Google_Service_AndroidPublisher_Edits_Resource extends Google_Service_Reso
|
||||
* $apklistings = $androidpublisherService->apklistings;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_EditsApklistings_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1441,6 +1444,7 @@ class Google_Service_AndroidPublisher_EditsApklistings_Resource extends Google_S
|
||||
* $apks = $androidpublisherService->apks;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_EditsApks_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1504,6 +1508,7 @@ class Google_Service_AndroidPublisher_EditsApks_Resource extends Google_Service_
|
||||
* $details = $androidpublisherService->details;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_EditsDetails_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1567,6 +1572,7 @@ class Google_Service_AndroidPublisher_EditsDetails_Resource extends Google_Servi
|
||||
* $expansionfiles = $androidpublisherService->expansionfiles;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_EditsExpansionfiles_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1662,6 +1668,7 @@ class Google_Service_AndroidPublisher_EditsExpansionfiles_Resource extends Googl
|
||||
* $images = $androidpublisherService->images;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_EditsImages_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1757,6 +1764,7 @@ class Google_Service_AndroidPublisher_EditsImages_Resource extends Google_Servic
|
||||
* $listings = $androidpublisherService->listings;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_EditsListings_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1878,6 +1886,7 @@ class Google_Service_AndroidPublisher_EditsListings_Resource extends Google_Serv
|
||||
* $testers = $androidpublisherService->testers;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_EditsTesters_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1942,6 +1951,7 @@ class Google_Service_AndroidPublisher_EditsTesters_Resource extends Google_Servi
|
||||
* $tracks = $androidpublisherService->tracks;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_EditsTracks_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2029,6 +2039,7 @@ class Google_Service_AndroidPublisher_EditsTracks_Resource extends Google_Servic
|
||||
* $entitlements = $androidpublisherService->entitlements;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_Entitlements_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2063,6 +2074,7 @@ class Google_Service_AndroidPublisher_Entitlements_Resource extends Google_Servi
|
||||
* $inappproducts = $androidpublisherService->inappproducts;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_Inappproducts_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2205,6 +2217,7 @@ class Google_Service_AndroidPublisher_Inappproducts_Resource extends Google_Serv
|
||||
* $purchases = $androidpublisherService->purchases;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_Purchases_Resource extends Google_Service_Resource
|
||||
{
|
||||
}
|
||||
@@ -2217,6 +2230,7 @@ class Google_Service_AndroidPublisher_Purchases_Resource extends Google_Service_
|
||||
* $products = $androidpublisherService->products;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_PurchasesProducts_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2247,6 +2261,7 @@ class Google_Service_AndroidPublisher_PurchasesProducts_Resource extends Google_
|
||||
* $subscriptions = $androidpublisherService->subscriptions;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_PurchasesSubscriptions_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2354,6 +2369,7 @@ class Google_Service_AndroidPublisher_PurchasesSubscriptions_Resource extends Go
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_Apk extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2381,6 +2397,7 @@ class Google_Service_AndroidPublisher_Apk extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_ApkBinary extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2398,6 +2415,7 @@ class Google_Service_AndroidPublisher_ApkBinary extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_ApkListing extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2424,6 +2442,7 @@ class Google_Service_AndroidPublisher_ApkListing extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_ApkListingsListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'listings';
|
||||
@@ -2452,6 +2471,7 @@ class Google_Service_AndroidPublisher_ApkListingsListResponse extends Google_Col
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_ApksAddExternallyHostedRequest extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2470,6 +2490,7 @@ class Google_Service_AndroidPublisher_ApksAddExternallyHostedRequest extends Goo
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_ApksAddExternallyHostedResponse extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2488,6 +2509,7 @@ class Google_Service_AndroidPublisher_ApksAddExternallyHostedResponse extends Go
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_ApksListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'apks';
|
||||
@@ -2516,6 +2538,7 @@ class Google_Service_AndroidPublisher_ApksListResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_AppDetails extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2560,6 +2583,7 @@ class Google_Service_AndroidPublisher_AppDetails extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_AppEdit extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2586,6 +2610,7 @@ class Google_Service_AndroidPublisher_AppEdit extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_Entitlement extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2630,6 +2655,7 @@ class Google_Service_AndroidPublisher_Entitlement extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_EntitlementsListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'resources';
|
||||
@@ -2669,6 +2695,7 @@ class Google_Service_AndroidPublisher_EntitlementsListResponse extends Google_Co
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_ExpansionFile extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2695,6 +2722,7 @@ class Google_Service_AndroidPublisher_ExpansionFile extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_ExpansionFilesUploadResponse extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2713,6 +2741,7 @@ class Google_Service_AndroidPublisher_ExpansionFilesUploadResponse extends Googl
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_ExternallyHostedApk extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'usesPermissions';
|
||||
@@ -2858,6 +2887,7 @@ class Google_Service_AndroidPublisher_ExternallyHostedApk extends Google_Collect
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_ExternallyHostedApkUsesPermission extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2884,6 +2914,7 @@ class Google_Service_AndroidPublisher_ExternallyHostedApkUsesPermission extends
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_Image extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2919,6 +2950,7 @@ class Google_Service_AndroidPublisher_Image extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_ImagesDeleteAllResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'deleted';
|
||||
@@ -2938,6 +2970,7 @@ class Google_Service_AndroidPublisher_ImagesDeleteAllResponse extends Google_Col
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_ImagesListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'images';
|
||||
@@ -2957,6 +2990,7 @@ class Google_Service_AndroidPublisher_ImagesListResponse extends Google_Collecti
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_ImagesUploadResponse extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2975,6 +3009,7 @@ class Google_Service_AndroidPublisher_ImagesUploadResponse extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_InAppProduct extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3086,6 +3121,7 @@ class Google_Service_AndroidPublisher_InAppProduct extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_InAppProductListing extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3112,14 +3148,17 @@ class Google_Service_AndroidPublisher_InAppProductListing extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_InAppProductListings extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_InAppProductPrices extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_InappproductsBatchRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'entrys';
|
||||
@@ -3139,6 +3178,7 @@ class Google_Service_AndroidPublisher_InappproductsBatchRequest extends Google_C
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_InappproductsBatchRequestEntry extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3185,6 +3225,7 @@ class Google_Service_AndroidPublisher_InappproductsBatchRequestEntry extends Goo
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_InappproductsBatchResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'entrys';
|
||||
@@ -3213,6 +3254,7 @@ class Google_Service_AndroidPublisher_InappproductsBatchResponse extends Google_
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_InappproductsBatchResponseEntry extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3250,6 +3292,7 @@ class Google_Service_AndroidPublisher_InappproductsBatchResponseEntry extends Go
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_InappproductsInsertRequest extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3268,6 +3311,7 @@ class Google_Service_AndroidPublisher_InappproductsInsertRequest extends Google_
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_InappproductsInsertResponse extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3286,6 +3330,7 @@ class Google_Service_AndroidPublisher_InappproductsInsertResponse extends Google
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_InappproductsListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'inappproduct';
|
||||
@@ -3334,6 +3379,7 @@ class Google_Service_AndroidPublisher_InappproductsListResponse extends Google_C
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_InappproductsUpdateRequest extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3352,6 +3398,7 @@ class Google_Service_AndroidPublisher_InappproductsUpdateRequest extends Google_
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_InappproductsUpdateResponse extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3370,6 +3417,7 @@ class Google_Service_AndroidPublisher_InappproductsUpdateResponse extends Google
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_Listing extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3423,6 +3471,7 @@ class Google_Service_AndroidPublisher_Listing extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_ListingsListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'listings';
|
||||
@@ -3451,6 +3500,7 @@ class Google_Service_AndroidPublisher_ListingsListResponse extends Google_Collec
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_MonthDay extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3477,6 +3527,7 @@ class Google_Service_AndroidPublisher_MonthDay extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_PageInfo extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3512,6 +3563,7 @@ class Google_Service_AndroidPublisher_PageInfo extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_Price extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3538,6 +3590,7 @@ class Google_Service_AndroidPublisher_Price extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_ProductPurchase extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3591,6 +3644,7 @@ class Google_Service_AndroidPublisher_ProductPurchase extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_Season extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3619,6 +3673,7 @@ class Google_Service_AndroidPublisher_Season extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_SubscriptionDeferralInfo extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3645,6 +3700,7 @@ class Google_Service_AndroidPublisher_SubscriptionDeferralInfo extends Google_Mo
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_SubscriptionPurchase extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3689,6 +3745,7 @@ class Google_Service_AndroidPublisher_SubscriptionPurchase extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_SubscriptionPurchasesDeferRequest extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3707,6 +3764,7 @@ class Google_Service_AndroidPublisher_SubscriptionPurchasesDeferRequest extends
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_SubscriptionPurchasesDeferResponse extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3724,6 +3782,7 @@ class Google_Service_AndroidPublisher_SubscriptionPurchasesDeferResponse extends
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_Testers extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'googlePlusCommunities';
|
||||
@@ -3751,6 +3810,7 @@ class Google_Service_AndroidPublisher_Testers extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_TokenPagination extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3777,6 +3837,7 @@ class Google_Service_AndroidPublisher_TokenPagination extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_Track extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'versionCodes';
|
||||
@@ -3813,6 +3874,7 @@ class Google_Service_AndroidPublisher_Track extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AndroidPublisher_TracksListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'tracks';
|
||||
|
||||
@@ -28,6 +28,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AppState extends Google_Service
|
||||
{
|
||||
/** View and manage your data for this application. */
|
||||
@@ -129,6 +130,7 @@ class Google_Service_AppState extends Google_Service
|
||||
* $states = $appstateService->states;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AppState_States_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -226,6 +228,7 @@ class Google_Service_AppState_States_Resource extends Google_Service_Resource
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AppState_GetResponse extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -270,6 +273,7 @@ class Google_Service_AppState_GetResponse extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AppState_ListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -307,6 +311,7 @@ class Google_Service_AppState_ListResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AppState_UpdateRequest extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -333,6 +338,7 @@ class Google_Service_AppState_UpdateRequest extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_AppState_WriteResult extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
|
||||
@@ -29,6 +29,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Appengine extends Google_Service
|
||||
{
|
||||
/** View and manage your data across Google Cloud Platform services. */
|
||||
@@ -314,6 +315,7 @@ class Google_Service_Appengine extends Google_Service
|
||||
* $apps = $appengineService->apps;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Appengine_Apps_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -346,6 +348,7 @@ class Google_Service_Appengine_Apps_Resource extends Google_Service_Resource
|
||||
* $modules = $appengineService->modules;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Appengine_AppsModules_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -432,6 +435,7 @@ class Google_Service_Appengine_AppsModules_Resource extends Google_Service_Resou
|
||||
* $versions = $appengineService->versions;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Appengine_AppsModulesVersions_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -519,6 +523,7 @@ class Google_Service_Appengine_AppsModulesVersions_Resource extends Google_Servi
|
||||
* $operations = $appengineService->operations;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Appengine_AppsOperations_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -565,6 +570,7 @@ class Google_Service_Appengine_AppsOperations_Resource extends Google_Service_Re
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Appengine_ApiConfigHandler extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -618,6 +624,7 @@ class Google_Service_Appengine_ApiConfigHandler extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Appengine_ApiEndpointHandler extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -635,6 +642,7 @@ class Google_Service_Appengine_ApiEndpointHandler extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Appengine_Application extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'dispatchRules';
|
||||
@@ -690,6 +698,7 @@ class Google_Service_Appengine_Application extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Appengine_AutomaticScaling extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -780,6 +789,7 @@ class Google_Service_Appengine_AutomaticScaling extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Appengine_BasicScaling extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -806,6 +816,7 @@ class Google_Service_Appengine_BasicScaling extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Appengine_ContainerInfo extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -823,6 +834,7 @@ class Google_Service_Appengine_ContainerInfo extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Appengine_CpuUtilization extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -849,6 +861,7 @@ class Google_Service_Appengine_CpuUtilization extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Appengine_Deployment extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'sourceReferences';
|
||||
@@ -888,10 +901,12 @@ class Google_Service_Appengine_Deployment extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Appengine_DeploymentFiles extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Appengine_ErrorHandler extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -927,6 +942,7 @@ class Google_Service_Appengine_ErrorHandler extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Appengine_FileInfo extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -962,6 +978,7 @@ class Google_Service_Appengine_FileInfo extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Appengine_HealthCheck extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1033,6 +1050,7 @@ class Google_Service_Appengine_HealthCheck extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Appengine_Library extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1059,6 +1077,7 @@ class Google_Service_Appengine_Library extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Appengine_ListModulesResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'modules';
|
||||
@@ -1087,6 +1106,7 @@ class Google_Service_Appengine_ListModulesResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Appengine_ListOperationsResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'operations';
|
||||
@@ -1115,6 +1135,7 @@ class Google_Service_Appengine_ListOperationsResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Appengine_ListVersionsResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'versions';
|
||||
@@ -1143,6 +1164,7 @@ class Google_Service_Appengine_ListVersionsResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Appengine_ManualScaling extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1160,6 +1182,7 @@ class Google_Service_Appengine_ManualScaling extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Appengine_Module extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1196,6 +1219,7 @@ class Google_Service_Appengine_Module extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Appengine_Network extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'forwardedPorts';
|
||||
@@ -1232,6 +1256,7 @@ class Google_Service_Appengine_Network extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Appengine_Operation extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1286,6 +1311,7 @@ class Google_Service_Appengine_Operation extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Appengine_OperationMetadata extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1348,10 +1374,12 @@ class Google_Service_Appengine_OperationMetadata extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Appengine_OperationResponse extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Appengine_Resources extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1387,6 +1415,7 @@ class Google_Service_Appengine_Resources extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Appengine_ScriptHandler extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1404,6 +1433,7 @@ class Google_Service_Appengine_ScriptHandler extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Appengine_SourceReference extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1430,6 +1460,7 @@ class Google_Service_Appengine_SourceReference extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Appengine_StaticDirectoryHandler extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1492,10 +1523,12 @@ class Google_Service_Appengine_StaticDirectoryHandler extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Appengine_StaticDirectoryHandlerHttpHeaders extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Appengine_StaticFilesHandler extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1567,10 +1600,12 @@ class Google_Service_Appengine_StaticFilesHandler extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Appengine_StaticFilesHandlerHttpHeaders extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Appengine_Status extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'details';
|
||||
@@ -1607,10 +1642,12 @@ class Google_Service_Appengine_Status extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Appengine_StatusDetails extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Appengine_TrafficSplit extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1637,10 +1674,12 @@ class Google_Service_Appengine_TrafficSplit extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Appengine_TrafficSplitAllocations extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Appengine_UrlDispatchRule extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1676,6 +1715,7 @@ class Google_Service_Appengine_UrlDispatchRule extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Appengine_UrlMap extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1769,6 +1809,7 @@ class Google_Service_Appengine_UrlMap extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Appengine_Version extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'libraries';
|
||||
@@ -2023,10 +2064,12 @@ class Google_Service_Appengine_Version extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Appengine_VersionBetaSettings extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Appengine_VersionEnvVariables extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
@@ -28,6 +28,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Appsactivity extends Google_Service
|
||||
{
|
||||
/** View the activity history of your Google Apps. */
|
||||
@@ -117,6 +118,7 @@ class Google_Service_Appsactivity extends Google_Service
|
||||
* $activities = $appsactivityService->activities;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Appsactivity_Activities_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -156,6 +158,7 @@ class Google_Service_Appsactivity_Activities_Resource extends Google_Service_Res
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Appsactivity_Activity extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'singleEvents';
|
||||
@@ -185,6 +188,7 @@ class Google_Service_Appsactivity_Activity extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Appsactivity_Event extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'permissionChanges';
|
||||
@@ -280,6 +284,7 @@ class Google_Service_Appsactivity_Event extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Appsactivity_ListActivitiesResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'activities';
|
||||
@@ -308,6 +313,7 @@ class Google_Service_Appsactivity_ListActivitiesResponse extends Google_Collecti
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Appsactivity_Move extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'removedParents';
|
||||
@@ -337,6 +343,7 @@ class Google_Service_Appsactivity_Move extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Appsactivity_Parent extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -372,6 +379,7 @@ class Google_Service_Appsactivity_Parent extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Appsactivity_Permission extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -435,6 +443,7 @@ class Google_Service_Appsactivity_Permission extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Appsactivity_PermissionChange extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'removedPermissions';
|
||||
@@ -464,6 +473,7 @@ class Google_Service_Appsactivity_PermissionChange extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Appsactivity_Photo extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -481,6 +491,7 @@ class Google_Service_Appsactivity_Photo extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Appsactivity_Rename extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -507,6 +518,7 @@ class Google_Service_Appsactivity_Rename extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Appsactivity_Target extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -542,6 +554,7 @@ class Google_Service_Appsactivity_Target extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Appsactivity_User extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
|
||||
@@ -29,6 +29,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Audit extends Google_Service
|
||||
{
|
||||
|
||||
@@ -121,6 +122,7 @@ class Google_Service_Audit extends Google_Service
|
||||
* $activities = $auditService->activities;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Audit_Activities_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -161,6 +163,7 @@ class Google_Service_Audit_Activities_Resource extends Google_Service_Resource
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Audit_Activities extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -198,6 +201,7 @@ class Google_Service_Audit_Activities extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Audit_Activity extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'events';
|
||||
@@ -264,6 +268,7 @@ class Google_Service_Audit_Activity extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Audit_ActivityActor extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -308,6 +313,7 @@ class Google_Service_Audit_ActivityActor extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Audit_ActivityEvents extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'parameters';
|
||||
@@ -345,6 +351,7 @@ class Google_Service_Audit_ActivityEvents extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Audit_ActivityEventsParameters extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -371,6 +378,7 @@ class Google_Service_Audit_ActivityEventsParameters extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Audit_ActivityId extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
|
||||
@@ -29,6 +29,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Autoscaler extends Google_Service
|
||||
{
|
||||
/** View and manage your Google Compute Engine resources. */
|
||||
@@ -309,6 +310,7 @@ class Google_Service_Autoscaler extends Google_Service
|
||||
* $autoscalers = $autoscalerService->autoscalers;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Autoscaler_Autoscalers_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -423,6 +425,7 @@ class Google_Service_Autoscaler_Autoscalers_Resource extends Google_Service_Reso
|
||||
* $zoneOperations = $autoscalerService->zoneOperations;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Autoscaler_ZoneOperations_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -488,6 +491,7 @@ class Google_Service_Autoscaler_ZoneOperations_Resource extends Google_Service_R
|
||||
* $zones = $autoscalerService->zones;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Autoscaler_Zones_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -513,6 +517,7 @@ class Google_Service_Autoscaler_Zones_Resource extends Google_Service_Resource
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Autoscaler_Autoscaler extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -594,6 +599,7 @@ class Google_Service_Autoscaler_Autoscaler extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Autoscaler_AutoscalerListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -631,6 +637,7 @@ class Google_Service_Autoscaler_AutoscalerListResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Autoscaler_AutoscalingPolicy extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'customMetricUtilizations';
|
||||
@@ -697,6 +704,7 @@ class Google_Service_Autoscaler_AutoscalingPolicy extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Autoscaler_AutoscalingPolicyCpuUtilization extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -714,6 +722,7 @@ class Google_Service_Autoscaler_AutoscalingPolicyCpuUtilization extends Google_M
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Autoscaler_AutoscalingPolicyCustomMetricUtilization extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -749,6 +758,7 @@ class Google_Service_Autoscaler_AutoscalingPolicyCustomMetricUtilization extends
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Autoscaler_AutoscalingPolicyLoadBalancingUtilization extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -766,6 +776,7 @@ class Google_Service_Autoscaler_AutoscalingPolicyLoadBalancingUtilization extend
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Autoscaler_DeprecationStatus extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -819,6 +830,7 @@ class Google_Service_Autoscaler_DeprecationStatus extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Autoscaler_Operation extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'warnings';
|
||||
@@ -1028,6 +1040,7 @@ class Google_Service_Autoscaler_Operation extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Autoscaler_OperationError extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'errors';
|
||||
@@ -1047,6 +1060,7 @@ class Google_Service_Autoscaler_OperationError extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Autoscaler_OperationErrorErrors extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1082,6 +1096,7 @@ class Google_Service_Autoscaler_OperationErrorErrors extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Autoscaler_OperationList extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -1137,6 +1152,7 @@ class Google_Service_Autoscaler_OperationList extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Autoscaler_OperationWarnings extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'data';
|
||||
@@ -1174,6 +1190,7 @@ class Google_Service_Autoscaler_OperationWarnings extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Autoscaler_OperationWarningsData extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1200,6 +1217,7 @@ class Google_Service_Autoscaler_OperationWarningsData extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Autoscaler_Zone extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'maintenanceWindows';
|
||||
@@ -1301,6 +1319,7 @@ class Google_Service_Autoscaler_Zone extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Autoscaler_ZoneList extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -1356,6 +1375,7 @@ class Google_Service_Autoscaler_ZoneList extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Autoscaler_ZoneMaintenanceWindows extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
|
||||
@@ -28,6 +28,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Bigquery extends Google_Service
|
||||
{
|
||||
/** View and manage your data in Google BigQuery. */
|
||||
@@ -525,6 +526,7 @@ class Google_Service_Bigquery extends Google_Service
|
||||
* $datasets = $bigqueryService->datasets;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Bigquery_Datasets_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -645,6 +647,7 @@ class Google_Service_Bigquery_Datasets_Resource extends Google_Service_Resource
|
||||
* $jobs = $bigqueryService->jobs;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Bigquery_Jobs_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -775,6 +778,7 @@ class Google_Service_Bigquery_Jobs_Resource extends Google_Service_Resource
|
||||
* $projects = $bigqueryService->projects;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Bigquery_Projects_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -805,6 +809,7 @@ class Google_Service_Bigquery_Projects_Resource extends Google_Service_Resource
|
||||
* $tabledata = $bigqueryService->tabledata;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Bigquery_Tabledata_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -857,6 +862,7 @@ class Google_Service_Bigquery_Tabledata_Resource extends Google_Service_Resource
|
||||
* $tables = $bigqueryService->tables;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Bigquery_Tables_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -973,6 +979,7 @@ class Google_Service_Bigquery_Tables_Resource extends Google_Service_Resource
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Bigquery_CsvOptions extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1035,6 +1042,7 @@ class Google_Service_Bigquery_CsvOptions extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Bigquery_Dataset extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'access';
|
||||
@@ -1154,6 +1162,7 @@ class Google_Service_Bigquery_Dataset extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Bigquery_DatasetAccess extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1217,6 +1226,7 @@ class Google_Service_Bigquery_DatasetAccess extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Bigquery_DatasetList extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'datasets';
|
||||
@@ -1263,6 +1273,7 @@ class Google_Service_Bigquery_DatasetList extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Bigquery_DatasetListDatasets extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1308,6 +1319,7 @@ class Google_Service_Bigquery_DatasetListDatasets extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Bigquery_DatasetReference extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1334,6 +1346,7 @@ class Google_Service_Bigquery_DatasetReference extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Bigquery_ErrorProto extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1378,6 +1391,7 @@ class Google_Service_Bigquery_ErrorProto extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Bigquery_ExternalDataConfiguration extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'sourceUris';
|
||||
@@ -1452,6 +1466,7 @@ class Google_Service_Bigquery_ExternalDataConfiguration extends Google_Collectio
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Bigquery_GetQueryResultsResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'rows';
|
||||
@@ -1564,6 +1579,7 @@ class Google_Service_Bigquery_GetQueryResultsResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Bigquery_Job extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1658,6 +1674,7 @@ class Google_Service_Bigquery_Job extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Bigquery_JobCancelResponse extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1685,6 +1702,7 @@ class Google_Service_Bigquery_JobCancelResponse extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Bigquery_JobConfiguration extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1752,6 +1770,7 @@ class Google_Service_Bigquery_JobConfiguration extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Bigquery_JobConfigurationExtract extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'destinationUris';
|
||||
@@ -1825,6 +1844,7 @@ class Google_Service_Bigquery_JobConfigurationExtract extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Bigquery_JobConfigurationLink extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'sourceUri';
|
||||
@@ -1871,6 +1891,7 @@ class Google_Service_Bigquery_JobConfigurationLink extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Bigquery_JobConfigurationLoad extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'sourceUris';
|
||||
@@ -2035,6 +2056,7 @@ class Google_Service_Bigquery_JobConfigurationLoad extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Bigquery_JobConfigurationQuery extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'userDefinedFunctionResources';
|
||||
@@ -2156,10 +2178,12 @@ class Google_Service_Bigquery_JobConfigurationQuery extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Bigquery_JobConfigurationQueryTableDefinitions extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Bigquery_JobConfigurationTableCopy extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'sourceTables';
|
||||
@@ -2217,6 +2241,7 @@ class Google_Service_Bigquery_JobConfigurationTableCopy extends Google_Collectio
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Bigquery_JobList extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'jobs';
|
||||
@@ -2263,6 +2288,7 @@ class Google_Service_Bigquery_JobList extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Bigquery_JobListJobs extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2358,6 +2384,7 @@ class Google_Service_Bigquery_JobListJobs extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Bigquery_JobReference extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2384,6 +2411,7 @@ class Google_Service_Bigquery_JobReference extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Bigquery_JobStatistics extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2458,6 +2486,7 @@ class Google_Service_Bigquery_JobStatistics extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Bigquery_JobStatistics2 extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2502,6 +2531,7 @@ class Google_Service_Bigquery_JobStatistics2 extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Bigquery_JobStatistics3 extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2546,6 +2576,7 @@ class Google_Service_Bigquery_JobStatistics3 extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Bigquery_JobStatistics4 extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'destinationUriFileCounts';
|
||||
@@ -2564,6 +2595,7 @@ class Google_Service_Bigquery_JobStatistics4 extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Bigquery_JobStatus extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'errors';
|
||||
@@ -2602,10 +2634,12 @@ class Google_Service_Bigquery_JobStatus extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Bigquery_JsonObject extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Bigquery_ProjectList extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'projects';
|
||||
@@ -2661,6 +2695,7 @@ class Google_Service_Bigquery_ProjectList extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Bigquery_ProjectListProjects extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2715,6 +2750,7 @@ class Google_Service_Bigquery_ProjectListProjects extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Bigquery_ProjectReference extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2732,6 +2768,7 @@ class Google_Service_Bigquery_ProjectReference extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Bigquery_QueryRequest extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2813,6 +2850,7 @@ class Google_Service_Bigquery_QueryRequest extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Bigquery_QueryResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'rows';
|
||||
@@ -2916,6 +2954,7 @@ class Google_Service_Bigquery_QueryResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Bigquery_Streamingbuffer extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2951,6 +2990,7 @@ class Google_Service_Bigquery_Streamingbuffer extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Bigquery_Table extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3126,6 +3166,7 @@ class Google_Service_Bigquery_Table extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Bigquery_TableCell extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3143,6 +3184,7 @@ class Google_Service_Bigquery_TableCell extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Bigquery_TableDataInsertAllRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'rows';
|
||||
@@ -3189,6 +3231,7 @@ class Google_Service_Bigquery_TableDataInsertAllRequest extends Google_Collectio
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Bigquery_TableDataInsertAllRequestRows extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3215,6 +3258,7 @@ class Google_Service_Bigquery_TableDataInsertAllRequestRows extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Bigquery_TableDataInsertAllResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'insertErrors';
|
||||
@@ -3243,6 +3287,7 @@ class Google_Service_Bigquery_TableDataInsertAllResponse extends Google_Collecti
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Bigquery_TableDataInsertAllResponseInsertErrors extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'errors';
|
||||
@@ -3271,6 +3316,7 @@ class Google_Service_Bigquery_TableDataInsertAllResponseInsertErrors extends Goo
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Bigquery_TableDataList extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'rows';
|
||||
@@ -3326,6 +3372,7 @@ class Google_Service_Bigquery_TableDataList extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Bigquery_TableFieldSchema extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'fields';
|
||||
@@ -3381,6 +3428,7 @@ class Google_Service_Bigquery_TableFieldSchema extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Bigquery_TableList extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'tables';
|
||||
@@ -3436,6 +3484,7 @@ class Google_Service_Bigquery_TableList extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Bigquery_TableListTables extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3490,6 +3539,7 @@ class Google_Service_Bigquery_TableListTables extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Bigquery_TableReference extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3525,6 +3575,7 @@ class Google_Service_Bigquery_TableReference extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Bigquery_TableRow extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'f';
|
||||
@@ -3544,6 +3595,7 @@ class Google_Service_Bigquery_TableRow extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Bigquery_TableSchema extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'fields';
|
||||
@@ -3563,6 +3615,7 @@ class Google_Service_Bigquery_TableSchema extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Bigquery_UserDefinedFunctionResource extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3589,6 +3642,7 @@ class Google_Service_Bigquery_UserDefinedFunctionResource extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Bigquery_ViewDefinition extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
|
||||
@@ -28,6 +28,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Blogger extends Google_Service
|
||||
{
|
||||
/** Manage your Blogger account. */
|
||||
@@ -939,6 +940,7 @@ class Google_Service_Blogger extends Google_Service
|
||||
* $blogUserInfos = $bloggerService->blogUserInfos;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Blogger_BlogUserInfos_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -970,6 +972,7 @@ class Google_Service_Blogger_BlogUserInfos_Resource extends Google_Service_Resou
|
||||
* $blogs = $bloggerService->blogs;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Blogger_Blogs_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1043,6 +1046,7 @@ class Google_Service_Blogger_Blogs_Resource extends Google_Service_Resource
|
||||
* $comments = $bloggerService->comments;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Blogger_Comments_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1193,6 +1197,7 @@ class Google_Service_Blogger_Comments_Resource extends Google_Service_Resource
|
||||
* $pageViews = $bloggerService->pageViews;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Blogger_PageViews_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1221,6 +1226,7 @@ class Google_Service_Blogger_PageViews_Resource extends Google_Service_Resource
|
||||
* $pages = $bloggerService->pages;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Blogger_Pages_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1376,6 +1382,7 @@ class Google_Service_Blogger_Pages_Resource extends Google_Service_Resource
|
||||
* $postUserInfos = $bloggerService->postUserInfos;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Blogger_PostUserInfos_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1445,6 +1452,7 @@ class Google_Service_Blogger_PostUserInfos_Resource extends Google_Service_Resou
|
||||
* $posts = $bloggerService->posts;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Blogger_Posts_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1680,6 +1688,7 @@ class Google_Service_Blogger_Posts_Resource extends Google_Service_Resource
|
||||
* $users = $bloggerService->users;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Blogger_Users_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1701,6 +1710,7 @@ class Google_Service_Blogger_Users_Resource extends Google_Service_Resource
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Blogger_Blog extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1829,6 +1839,7 @@ class Google_Service_Blogger_Blog extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Blogger_BlogList extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -1867,6 +1878,7 @@ class Google_Service_Blogger_BlogList extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Blogger_BlogLocale extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1902,6 +1914,7 @@ class Google_Service_Blogger_BlogLocale extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Blogger_BlogPages extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1928,6 +1941,7 @@ class Google_Service_Blogger_BlogPages extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Blogger_BlogPerUserInfo extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1990,6 +2004,7 @@ class Google_Service_Blogger_BlogPerUserInfo extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Blogger_BlogPosts extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -2027,6 +2042,7 @@ class Google_Service_Blogger_BlogPosts extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Blogger_BlogUserInfo extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2065,6 +2081,7 @@ class Google_Service_Blogger_BlogUserInfo extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Blogger_Comment extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2176,6 +2193,7 @@ class Google_Service_Blogger_Comment extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Blogger_CommentAuthor extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2221,6 +2239,7 @@ class Google_Service_Blogger_CommentAuthor extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Blogger_CommentAuthorImage extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2238,6 +2257,7 @@ class Google_Service_Blogger_CommentAuthorImage extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Blogger_CommentBlog extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2255,6 +2275,7 @@ class Google_Service_Blogger_CommentBlog extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Blogger_CommentInReplyTo extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2272,6 +2293,7 @@ class Google_Service_Blogger_CommentInReplyTo extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Blogger_CommentList extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -2327,6 +2349,7 @@ class Google_Service_Blogger_CommentList extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Blogger_CommentPost extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2344,6 +2367,7 @@ class Google_Service_Blogger_CommentPost extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Blogger_Page extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2462,6 +2486,7 @@ class Google_Service_Blogger_Page extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Blogger_PageAuthor extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2507,6 +2532,7 @@ class Google_Service_Blogger_PageAuthor extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Blogger_PageAuthorImage extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2524,6 +2550,7 @@ class Google_Service_Blogger_PageAuthorImage extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Blogger_PageBlog extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2541,6 +2568,7 @@ class Google_Service_Blogger_PageBlog extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Blogger_PageList extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -2587,6 +2615,7 @@ class Google_Service_Blogger_PageList extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Blogger_Pageviews extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'counts';
|
||||
@@ -2624,6 +2653,7 @@ class Google_Service_Blogger_Pageviews extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Blogger_PageviewsCounts extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2650,6 +2680,7 @@ class Google_Service_Blogger_PageviewsCounts extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Blogger_Post extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'labels';
|
||||
@@ -2835,6 +2866,7 @@ class Google_Service_Blogger_Post extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Blogger_PostAuthor extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2880,6 +2912,7 @@ class Google_Service_Blogger_PostAuthor extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Blogger_PostAuthorImage extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2897,6 +2930,7 @@ class Google_Service_Blogger_PostAuthorImage extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Blogger_PostBlog extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2914,6 +2948,7 @@ class Google_Service_Blogger_PostBlog extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Blogger_PostImages extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2931,6 +2966,7 @@ class Google_Service_Blogger_PostImages extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Blogger_PostList extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -2977,6 +3013,7 @@ class Google_Service_Blogger_PostList extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Blogger_PostLocation extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3021,6 +3058,7 @@ class Google_Service_Blogger_PostLocation extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Blogger_PostPerUserInfo extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3074,6 +3112,7 @@ class Google_Service_Blogger_PostPerUserInfo extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Blogger_PostReplies extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -3111,6 +3150,7 @@ class Google_Service_Blogger_PostReplies extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Blogger_PostUserInfo extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3149,6 +3189,7 @@ class Google_Service_Blogger_PostUserInfo extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Blogger_PostUserInfosList extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -3186,6 +3227,7 @@ class Google_Service_Blogger_PostUserInfosList extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Blogger_User extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3277,6 +3319,7 @@ class Google_Service_Blogger_User extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Blogger_UserBlogs extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3294,6 +3337,7 @@ class Google_Service_Blogger_UserBlogs extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Blogger_UserLocale extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
|
||||
@@ -28,6 +28,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books extends Google_Service
|
||||
{
|
||||
/** Manage your books. */
|
||||
@@ -1450,6 +1451,7 @@ class Google_Service_Books extends Google_Service
|
||||
* $bookshelves = $booksService->bookshelves;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_Bookshelves_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1497,6 +1499,7 @@ class Google_Service_Books_Bookshelves_Resource extends Google_Service_Resource
|
||||
* $volumes = $booksService->volumes;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_BookshelvesVolumes_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1532,6 +1535,7 @@ class Google_Service_Books_BookshelvesVolumes_Resource extends Google_Service_Re
|
||||
* $cloudloading = $booksService->cloudloading;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_Cloudloading_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1592,6 +1596,7 @@ class Google_Service_Books_Cloudloading_Resource extends Google_Service_Resource
|
||||
* $dictionary = $booksService->dictionary;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_Dictionary_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1619,6 +1624,7 @@ class Google_Service_Books_Dictionary_Resource extends Google_Service_Resource
|
||||
* $layers = $booksService->layers;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_Layers_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1671,6 +1677,7 @@ class Google_Service_Books_Layers_Resource extends Google_Service_Resource
|
||||
* $annotationData = $booksService->annotationData;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_LayersAnnotationData_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1746,6 +1753,7 @@ class Google_Service_Books_LayersAnnotationData_Resource extends Google_Service_
|
||||
* $volumeAnnotations = $booksService->volumeAnnotations;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_LayersVolumeAnnotations_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1815,6 +1823,7 @@ class Google_Service_Books_LayersVolumeAnnotations_Resource extends Google_Servi
|
||||
* $myconfig = $booksService->myconfig;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_Myconfig_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1928,6 +1937,7 @@ class Google_Service_Books_Myconfig_Resource extends Google_Service_Resource
|
||||
* $mylibrary = $booksService->mylibrary;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_Mylibrary_Resource extends Google_Service_Resource
|
||||
{
|
||||
}
|
||||
@@ -1940,6 +1950,7 @@ class Google_Service_Books_Mylibrary_Resource extends Google_Service_Resource
|
||||
* $annotations = $booksService->annotations;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_MylibraryAnnotations_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2047,6 +2058,7 @@ class Google_Service_Books_MylibraryAnnotations_Resource extends Google_Service_
|
||||
* $bookshelves = $booksService->bookshelves;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_MylibraryBookshelves_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2162,6 +2174,7 @@ class Google_Service_Books_MylibraryBookshelves_Resource extends Google_Service_
|
||||
* $volumes = $booksService->volumes;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_MylibraryBookshelvesVolumes_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2199,6 +2212,7 @@ class Google_Service_Books_MylibraryBookshelvesVolumes_Resource extends Google_S
|
||||
* $readingpositions = $booksService->readingpositions;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_MylibraryReadingpositions_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2256,6 +2270,7 @@ class Google_Service_Books_MylibraryReadingpositions_Resource extends Google_Ser
|
||||
* $notification = $booksService->notification;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_Notification_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2286,6 +2301,7 @@ class Google_Service_Books_Notification_Resource extends Google_Service_Resource
|
||||
* $onboarding = $booksService->onboarding;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_Onboarding_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2339,6 +2355,7 @@ class Google_Service_Books_Onboarding_Resource extends Google_Service_Resource
|
||||
* $personalizedstream = $booksService->personalizedstream;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_Personalizedstream_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2371,6 +2388,7 @@ class Google_Service_Books_Personalizedstream_Resource extends Google_Service_Re
|
||||
* $promooffer = $booksService->promooffer;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_Promooffer_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2444,6 +2462,7 @@ class Google_Service_Books_Promooffer_Resource extends Google_Service_Resource
|
||||
* $volumes = $booksService->volumes;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_Volumes_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2508,6 +2527,7 @@ class Google_Service_Books_Volumes_Resource extends Google_Service_Resource
|
||||
* $associated = $booksService->associated;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_VolumesAssociated_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2541,6 +2561,7 @@ class Google_Service_Books_VolumesAssociated_Resource extends Google_Service_Res
|
||||
* $mybooks = $booksService->mybooks;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_VolumesMybooks_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2576,6 +2597,7 @@ class Google_Service_Books_VolumesMybooks_Resource extends Google_Service_Resour
|
||||
* $recommended = $booksService->recommended;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_VolumesRecommended_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2627,6 +2649,7 @@ class Google_Service_Books_VolumesRecommended_Resource extends Google_Service_Re
|
||||
* $useruploaded = $booksService->useruploaded;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_VolumesUseruploaded_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2659,6 +2682,7 @@ class Google_Service_Books_VolumesUseruploaded_Resource extends Google_Service_R
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_Annotation extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'pageIds';
|
||||
@@ -2824,6 +2848,7 @@ class Google_Service_Books_Annotation extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_AnnotationClientVersionRanges extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2881,6 +2906,7 @@ class Google_Service_Books_AnnotationClientVersionRanges extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_AnnotationCurrentVersionRanges extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2938,6 +2964,7 @@ class Google_Service_Books_AnnotationCurrentVersionRanges extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_AnnotationLayerSummary extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2973,6 +3000,7 @@ class Google_Service_Books_AnnotationLayerSummary extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_Annotationdata extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3063,6 +3091,7 @@ class Google_Service_Books_Annotationdata extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_Annotations extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -3109,6 +3138,7 @@ class Google_Service_Books_Annotations extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_AnnotationsSummary extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'layers';
|
||||
@@ -3137,6 +3167,7 @@ class Google_Service_Books_AnnotationsSummary extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_AnnotationsSummaryLayers extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3190,6 +3221,7 @@ class Google_Service_Books_AnnotationsSummaryLayers extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_Annotationsdata extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -3236,6 +3268,7 @@ class Google_Service_Books_Annotationsdata extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_BooksAnnotationsRange extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3280,6 +3313,7 @@ class Google_Service_Books_BooksAnnotationsRange extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_BooksCloudloadingResource extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3324,6 +3358,7 @@ class Google_Service_Books_BooksCloudloadingResource extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_BooksVolumesRecommendedRateResponse extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3342,6 +3377,7 @@ class Google_Service_Books_BooksVolumesRecommendedRateResponse extends Google_Mo
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_Bookshelf extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3440,6 +3476,7 @@ class Google_Service_Books_Bookshelf extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_Bookshelves extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -3468,6 +3505,7 @@ class Google_Service_Books_Bookshelves extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_Category extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -3496,6 +3534,7 @@ class Google_Service_Books_Category extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_CategoryItems extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3531,6 +3570,7 @@ class Google_Service_Books_CategoryItems extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_ConcurrentAccessRestriction extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3638,6 +3678,7 @@ class Google_Service_Books_ConcurrentAccessRestriction extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_Dictlayerdata extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3675,6 +3716,7 @@ class Google_Service_Books_Dictlayerdata extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_DictlayerdataCommon extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3692,6 +3734,7 @@ class Google_Service_Books_DictlayerdataCommon extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_DictlayerdataDict extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'words';
|
||||
@@ -3721,6 +3764,7 @@ class Google_Service_Books_DictlayerdataDict extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_DictlayerdataDictSource extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3747,6 +3791,7 @@ class Google_Service_Books_DictlayerdataDictSource extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_DictlayerdataDictWords extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'senses';
|
||||
@@ -3796,6 +3841,7 @@ class Google_Service_Books_DictlayerdataDictWords extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_DictlayerdataDictWordsDerivatives extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3823,6 +3869,7 @@ class Google_Service_Books_DictlayerdataDictWordsDerivatives extends Google_Mode
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_DictlayerdataDictWordsDerivativesSource extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3849,6 +3896,7 @@ class Google_Service_Books_DictlayerdataDictWordsDerivativesSource extends Googl
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_DictlayerdataDictWordsExamples extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3876,6 +3924,7 @@ class Google_Service_Books_DictlayerdataDictWordsExamples extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_DictlayerdataDictWordsExamplesSource extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3902,6 +3951,7 @@ class Google_Service_Books_DictlayerdataDictWordsExamplesSource extends Google_M
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_DictlayerdataDictWordsSenses extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'synonyms';
|
||||
@@ -3987,6 +4037,7 @@ class Google_Service_Books_DictlayerdataDictWordsSenses extends Google_Collectio
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_DictlayerdataDictWordsSensesConjugations extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -4013,6 +4064,7 @@ class Google_Service_Books_DictlayerdataDictWordsSensesConjugations extends Goog
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_DictlayerdataDictWordsSensesDefinitions extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'examples';
|
||||
@@ -4041,6 +4093,7 @@ class Google_Service_Books_DictlayerdataDictWordsSensesDefinitions extends Googl
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_DictlayerdataDictWordsSensesDefinitionsExamples extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -4068,6 +4121,7 @@ class Google_Service_Books_DictlayerdataDictWordsSensesDefinitionsExamples exten
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_DictlayerdataDictWordsSensesDefinitionsExamplesSource extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -4094,6 +4148,7 @@ class Google_Service_Books_DictlayerdataDictWordsSensesDefinitionsExamplesSource
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_DictlayerdataDictWordsSensesSource extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -4120,6 +4175,7 @@ class Google_Service_Books_DictlayerdataDictWordsSensesSource extends Google_Mod
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_DictlayerdataDictWordsSensesSynonyms extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -4147,6 +4203,7 @@ class Google_Service_Books_DictlayerdataDictWordsSensesSynonyms extends Google_M
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_DictlayerdataDictWordsSensesSynonymsSource extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -4173,6 +4230,7 @@ class Google_Service_Books_DictlayerdataDictWordsSensesSynonymsSource extends Go
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_DictlayerdataDictWordsSource extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -4199,6 +4257,7 @@ class Google_Service_Books_DictlayerdataDictWordsSource extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_Discoveryclusters extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'clusters';
|
||||
@@ -4236,6 +4295,7 @@ class Google_Service_Books_Discoveryclusters extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_DiscoveryclustersClusters extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'volumes';
|
||||
@@ -4302,6 +4362,7 @@ class Google_Service_Books_DiscoveryclustersClusters extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_DiscoveryclustersClustersBannerWithContentContainer extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -4364,6 +4425,7 @@ class Google_Service_Books_DiscoveryclustersClustersBannerWithContentContainer e
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_DownloadAccessRestriction extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -4480,6 +4542,7 @@ class Google_Service_Books_DownloadAccessRestriction extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_DownloadAccesses extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'downloadAccessList';
|
||||
@@ -4508,6 +4571,7 @@ class Google_Service_Books_DownloadAccesses extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_Geolayerdata extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -4545,6 +4609,7 @@ class Google_Service_Books_Geolayerdata extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_GeolayerdataCommon extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -4598,6 +4663,7 @@ class Google_Service_Books_GeolayerdataCommon extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_GeolayerdataGeo extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'boundary';
|
||||
@@ -4681,6 +4747,7 @@ class Google_Service_Books_GeolayerdataGeo extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_GeolayerdataGeoBoundary extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -4707,6 +4774,7 @@ class Google_Service_Books_GeolayerdataGeoBoundary extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_GeolayerdataGeoViewport extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -4735,6 +4803,7 @@ class Google_Service_Books_GeolayerdataGeoViewport extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_GeolayerdataGeoViewportHi extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -4761,6 +4830,7 @@ class Google_Service_Books_GeolayerdataGeoViewportHi extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_GeolayerdataGeoViewportLo extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -4787,6 +4857,7 @@ class Google_Service_Books_GeolayerdataGeoViewportLo extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_Layersummaries extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -4824,6 +4895,7 @@ class Google_Service_Books_Layersummaries extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_Layersummary extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'annotationTypes';
|
||||
@@ -4950,6 +5022,7 @@ class Google_Service_Books_Layersummary extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_Metadata extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -4978,6 +5051,7 @@ class Google_Service_Books_Metadata extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_MetadataItems extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5033,6 +5107,7 @@ class Google_Service_Books_MetadataItems extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_Notification extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5086,6 +5161,7 @@ class Google_Service_Books_Notification extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_Offers extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -5114,6 +5190,7 @@ class Google_Service_Books_Offers extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_OffersItems extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -5160,6 +5237,7 @@ class Google_Service_Books_OffersItems extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_OffersItemsItems extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5222,6 +5300,7 @@ class Google_Service_Books_OffersItemsItems extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_ReadingPosition extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5293,6 +5372,7 @@ class Google_Service_Books_ReadingPosition extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_RequestAccess extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5330,6 +5410,7 @@ class Google_Service_Books_RequestAccess extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_Review extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5430,6 +5511,7 @@ class Google_Service_Books_Review extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_ReviewAuthor extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5447,6 +5529,7 @@ class Google_Service_Books_ReviewAuthor extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_ReviewSource extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5482,6 +5565,7 @@ class Google_Service_Books_ReviewSource extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_Usersettings extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5519,6 +5603,7 @@ class Google_Service_Books_Usersettings extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_UsersettingsNotesExport extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5545,6 +5630,7 @@ class Google_Service_Books_UsersettingsNotesExport extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_UsersettingsNotification extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5563,6 +5649,7 @@ class Google_Service_Books_UsersettingsNotification extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_UsersettingsNotificationMoreFromAuthors extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5581,6 +5668,7 @@ class Google_Service_Books_UsersettingsNotificationMoreFromAuthors extends Googl
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_Volume extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5695,6 +5783,7 @@ class Google_Service_Books_Volume extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_Volume2 extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -5732,6 +5821,7 @@ class Google_Service_Books_Volume2 extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_VolumeAccessInfo extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5869,6 +5959,7 @@ class Google_Service_Books_VolumeAccessInfo extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_VolumeAccessInfoEpub extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5904,6 +5995,7 @@ class Google_Service_Books_VolumeAccessInfoEpub extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_VolumeAccessInfoPdf extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5939,6 +6031,7 @@ class Google_Service_Books_VolumeAccessInfoPdf extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_VolumeLayerInfo extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'layers';
|
||||
@@ -5958,6 +6051,7 @@ class Google_Service_Books_VolumeLayerInfo extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_VolumeLayerInfoLayers extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5984,6 +6078,7 @@ class Google_Service_Books_VolumeLayerInfoLayers extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_VolumeRecommendedInfo extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -6001,6 +6096,7 @@ class Google_Service_Books_VolumeRecommendedInfo extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_VolumeSaleInfo extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'offers';
|
||||
@@ -6085,6 +6181,7 @@ class Google_Service_Books_VolumeSaleInfo extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_VolumeSaleInfoListPrice extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -6111,6 +6208,7 @@ class Google_Service_Books_VolumeSaleInfoListPrice extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_VolumeSaleInfoOffers extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -6158,6 +6256,7 @@ class Google_Service_Books_VolumeSaleInfoOffers extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_VolumeSaleInfoOffersListPrice extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -6184,6 +6283,7 @@ class Google_Service_Books_VolumeSaleInfoOffersListPrice extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_VolumeSaleInfoOffersRentalDuration extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -6210,6 +6310,7 @@ class Google_Service_Books_VolumeSaleInfoOffersRentalDuration extends Google_Mod
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_VolumeSaleInfoOffersRetailPrice extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -6236,6 +6337,7 @@ class Google_Service_Books_VolumeSaleInfoOffersRetailPrice extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_VolumeSaleInfoRetailPrice extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -6262,6 +6364,7 @@ class Google_Service_Books_VolumeSaleInfoRetailPrice extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_VolumeSearchInfo extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -6279,6 +6382,7 @@ class Google_Service_Books_VolumeSearchInfo extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_VolumeUserInfo extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -6409,6 +6513,7 @@ class Google_Service_Books_VolumeUserInfo extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_VolumeUserInfoCopy extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -6453,6 +6558,7 @@ class Google_Service_Books_VolumeUserInfoCopy extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_VolumeUserInfoRentalPeriod extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -6479,6 +6585,7 @@ class Google_Service_Books_VolumeUserInfoRentalPeriod extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_VolumeUserInfoUserUploadedVolumeInfo extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -6496,6 +6603,7 @@ class Google_Service_Books_VolumeUserInfoUserUploadedVolumeInfo extends Google_M
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_VolumeVolumeInfo extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'industryIdentifiers';
|
||||
@@ -6733,6 +6841,7 @@ class Google_Service_Books_VolumeVolumeInfo extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_VolumeVolumeInfoDimensions extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -6768,6 +6877,7 @@ class Google_Service_Books_VolumeVolumeInfoDimensions extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_VolumeVolumeInfoImageLinks extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -6830,6 +6940,7 @@ class Google_Service_Books_VolumeVolumeInfoImageLinks extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_VolumeVolumeInfoIndustryIdentifiers extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -6856,6 +6967,7 @@ class Google_Service_Books_VolumeVolumeInfoIndustryIdentifiers extends Google_Mo
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_Volumeannotation extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'pageIds';
|
||||
@@ -6992,6 +7104,7 @@ class Google_Service_Books_Volumeannotation extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_VolumeannotationContentRanges extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -7039,6 +7152,7 @@ class Google_Service_Books_VolumeannotationContentRanges extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_Volumeannotations extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -7094,6 +7208,7 @@ class Google_Service_Books_Volumeannotations extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Books_Volumes extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
|
||||
@@ -28,6 +28,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Calendar extends Google_Service
|
||||
{
|
||||
/** Manage your calendars. */
|
||||
@@ -897,6 +898,7 @@ class Google_Service_Calendar extends Google_Service
|
||||
* $acl = $calendarService->acl;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Calendar_Acl_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1065,6 +1067,7 @@ class Google_Service_Calendar_Acl_Resource extends Google_Service_Resource
|
||||
* $calendarList = $calendarService->calendarList;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Calendar_CalendarList_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1247,6 +1250,7 @@ class Google_Service_Calendar_CalendarList_Resource extends Google_Service_Resou
|
||||
* $calendars = $calendarService->calendars;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Calendar_Calendars_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1356,6 +1360,7 @@ class Google_Service_Calendar_Calendars_Resource extends Google_Service_Resource
|
||||
* $channels = $calendarService->channels;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Calendar_Channels_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1381,6 +1386,7 @@ class Google_Service_Calendar_Channels_Resource extends Google_Service_Resource
|
||||
* $colors = $calendarService->colors;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Calendar_Colors_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1406,6 +1412,7 @@ class Google_Service_Calendar_Colors_Resource extends Google_Service_Resource
|
||||
* $events = $calendarService->events;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Calendar_Events_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1841,6 +1848,7 @@ class Google_Service_Calendar_Events_Resource extends Google_Service_Resource
|
||||
* $freebusy = $calendarService->freebusy;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Calendar_Freebusy_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1867,6 +1875,7 @@ class Google_Service_Calendar_Freebusy_Resource extends Google_Service_Resource
|
||||
* $settings = $calendarService->settings;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Calendar_Settings_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1941,6 +1950,7 @@ class Google_Service_Calendar_Settings_Resource extends Google_Service_Resource
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Calendar_Acl extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -1996,6 +2006,7 @@ class Google_Service_Calendar_Acl extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Calendar_AclRule extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2050,6 +2061,7 @@ class Google_Service_Calendar_AclRule extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Calendar_AclRuleScope extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2076,6 +2088,7 @@ class Google_Service_Calendar_AclRuleScope extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Calendar_Calendar extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2147,6 +2160,7 @@ class Google_Service_Calendar_Calendar extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Calendar_CalendarList extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -2202,6 +2216,7 @@ class Google_Service_Calendar_CalendarList extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Calendar_CalendarListEntry extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'defaultReminders';
|
||||
@@ -2375,6 +2390,7 @@ class Google_Service_Calendar_CalendarListEntry extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Calendar_CalendarListEntryNotificationSettings extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'notifications';
|
||||
@@ -2394,6 +2410,7 @@ class Google_Service_Calendar_CalendarListEntryNotificationSettings extends Goog
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Calendar_CalendarNotification extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2420,6 +2437,7 @@ class Google_Service_Calendar_CalendarNotification extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Calendar_Channel extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2518,10 +2536,12 @@ class Google_Service_Calendar_Channel extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Calendar_ChannelParams extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Calendar_ColorDefinition extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2548,6 +2568,7 @@ class Google_Service_Calendar_ColorDefinition extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Calendar_Colors extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2594,14 +2615,17 @@ class Google_Service_Calendar_Colors extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Calendar_ColorsCalendar extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Calendar_ColorsEvent extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Calendar_Error extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2628,6 +2652,7 @@ class Google_Service_Calendar_Error extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Calendar_Event extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'recurrence';
|
||||
@@ -2981,6 +3006,7 @@ class Google_Service_Calendar_Event extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Calendar_EventAttachment extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3034,6 +3060,7 @@ class Google_Service_Calendar_EventAttachment extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Calendar_EventAttendee extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3132,6 +3159,7 @@ class Google_Service_Calendar_EventAttendee extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Calendar_EventCreator extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3176,6 +3204,7 @@ class Google_Service_Calendar_EventCreator extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Calendar_EventDateTime extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3211,6 +3240,7 @@ class Google_Service_Calendar_EventDateTime extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Calendar_EventExtendedProperties extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3237,14 +3267,17 @@ class Google_Service_Calendar_EventExtendedProperties extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Calendar_EventExtendedPropertiesPrivate extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Calendar_EventExtendedPropertiesShared extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Calendar_EventGadget extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3325,10 +3358,12 @@ class Google_Service_Calendar_EventGadget extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Calendar_EventGadgetPreferences extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Calendar_EventOrganizer extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3373,6 +3408,7 @@ class Google_Service_Calendar_EventOrganizer extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Calendar_EventReminder extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3399,6 +3435,7 @@ class Google_Service_Calendar_EventReminder extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Calendar_EventReminders extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'overrides';
|
||||
@@ -3427,6 +3464,7 @@ class Google_Service_Calendar_EventReminders extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Calendar_EventSource extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3453,6 +3491,7 @@ class Google_Service_Calendar_EventSource extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Calendar_Events extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -3563,6 +3602,7 @@ class Google_Service_Calendar_Events extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Calendar_FreeBusyCalendar extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'errors';
|
||||
@@ -3592,6 +3632,7 @@ class Google_Service_Calendar_FreeBusyCalendar extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Calendar_FreeBusyGroup extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'errors';
|
||||
@@ -3620,6 +3661,7 @@ class Google_Service_Calendar_FreeBusyGroup extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Calendar_FreeBusyRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -3684,6 +3726,7 @@ class Google_Service_Calendar_FreeBusyRequest extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Calendar_FreeBusyRequestItem extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3701,6 +3744,7 @@ class Google_Service_Calendar_FreeBusyRequestItem extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Calendar_FreeBusyResponse extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3756,14 +3800,17 @@ class Google_Service_Calendar_FreeBusyResponse extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Calendar_FreeBusyResponseCalendars extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Calendar_FreeBusyResponseGroups extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Calendar_Setting extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3808,6 +3855,7 @@ class Google_Service_Calendar_Setting extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Calendar_Settings extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -3863,6 +3911,7 @@ class Google_Service_Calendar_Settings extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Calendar_TimePeriod extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
|
||||
@@ -28,6 +28,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CivicInfo extends Google_Service
|
||||
{
|
||||
|
||||
@@ -170,6 +171,7 @@ class Google_Service_CivicInfo extends Google_Service
|
||||
* $divisions = $civicinfoService->divisions;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CivicInfo_Divisions_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -202,6 +204,7 @@ class Google_Service_CivicInfo_Divisions_Resource extends Google_Service_Resourc
|
||||
* $elections = $civicinfoService->elections;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CivicInfo_Elections_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -248,6 +251,7 @@ class Google_Service_CivicInfo_Elections_Resource extends Google_Service_Resourc
|
||||
* $representatives = $civicinfoService->representatives;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CivicInfo_Representatives_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -308,6 +312,7 @@ class Google_Service_CivicInfo_Representatives_Resource extends Google_Service_R
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CivicInfo_AdministrationRegion extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'sources';
|
||||
@@ -366,6 +371,7 @@ class Google_Service_CivicInfo_AdministrationRegion extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CivicInfo_AdministrativeBody extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'voter_services';
|
||||
@@ -496,6 +502,7 @@ class Google_Service_CivicInfo_AdministrativeBody extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CivicInfo_Candidate extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'channels';
|
||||
@@ -578,6 +585,7 @@ class Google_Service_CivicInfo_Candidate extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CivicInfo_Channel extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -604,6 +612,7 @@ class Google_Service_CivicInfo_Channel extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CivicInfo_Contest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'sources';
|
||||
@@ -832,6 +841,7 @@ class Google_Service_CivicInfo_Contest extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CivicInfo_DivisionSearchResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'results';
|
||||
@@ -860,6 +870,7 @@ class Google_Service_CivicInfo_DivisionSearchResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CivicInfo_DivisionSearchResult extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'aliases';
|
||||
@@ -896,6 +907,7 @@ class Google_Service_CivicInfo_DivisionSearchResult extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CivicInfo_Election extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -940,6 +952,7 @@ class Google_Service_CivicInfo_Election extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CivicInfo_ElectionOfficial extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -993,6 +1006,7 @@ class Google_Service_CivicInfo_ElectionOfficial extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CivicInfo_ElectionsQueryResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'elections';
|
||||
@@ -1021,6 +1035,7 @@ class Google_Service_CivicInfo_ElectionsQueryResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CivicInfo_ElectoralDistrict extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1056,6 +1071,7 @@ class Google_Service_CivicInfo_ElectoralDistrict extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CivicInfo_GeographicDivision extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'officeIndices';
|
||||
@@ -1092,6 +1108,7 @@ class Google_Service_CivicInfo_GeographicDivision extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CivicInfo_Office extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'sources';
|
||||
@@ -1156,6 +1173,7 @@ class Google_Service_CivicInfo_Office extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CivicInfo_Official extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'urls';
|
||||
@@ -1239,6 +1257,7 @@ class Google_Service_CivicInfo_Official extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CivicInfo_PollingLocation extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'sources';
|
||||
@@ -1331,6 +1350,7 @@ class Google_Service_CivicInfo_PollingLocation extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CivicInfo_RepresentativeInfoData extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'officials';
|
||||
@@ -1370,10 +1390,12 @@ class Google_Service_CivicInfo_RepresentativeInfoData extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CivicInfo_RepresentativeInfoDataDivisions extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CivicInfo_RepresentativeInfoResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'officials';
|
||||
@@ -1432,10 +1454,12 @@ class Google_Service_CivicInfo_RepresentativeInfoResponse extends Google_Collect
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CivicInfo_RepresentativeInfoResponseDivisions extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CivicInfo_SimpleAddressType extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1507,6 +1531,7 @@ class Google_Service_CivicInfo_SimpleAddressType extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CivicInfo_Source extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1533,6 +1558,7 @@ class Google_Service_CivicInfo_Source extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CivicInfo_VoterInfoResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'state';
|
||||
|
||||
@@ -28,6 +28,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Classroom extends Google_Service
|
||||
{
|
||||
/** Manage your Google Classroom classes. */
|
||||
@@ -439,6 +440,7 @@ class Google_Service_Classroom extends Google_Service
|
||||
* $courses = $classroomService->courses;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Classroom_Courses_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -590,6 +592,7 @@ class Google_Service_Classroom_Courses_Resource extends Google_Service_Resource
|
||||
* $aliases = $classroomService->aliases;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Classroom_CoursesAliases_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -667,6 +670,7 @@ class Google_Service_Classroom_CoursesAliases_Resource extends Google_Service_Re
|
||||
* $students = $classroomService->students;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Classroom_CoursesStudents_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -777,6 +781,7 @@ class Google_Service_Classroom_CoursesStudents_Resource extends Google_Service_R
|
||||
* $teachers = $classroomService->teachers;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Classroom_CoursesTeachers_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -884,6 +889,7 @@ class Google_Service_Classroom_CoursesTeachers_Resource extends Google_Service_R
|
||||
* $invitations = $classroomService->invitations;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Classroom_Invitations_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1004,6 +1010,7 @@ class Google_Service_Classroom_Invitations_Resource extends Google_Service_Resou
|
||||
* $userProfiles = $classroomService->userProfiles;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Classroom_UserProfiles_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1031,6 +1038,7 @@ class Google_Service_Classroom_UserProfiles_Resource extends Google_Service_Reso
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Classroom_Course extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1147,6 +1155,7 @@ class Google_Service_Classroom_Course extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Classroom_CourseAlias extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1164,10 +1173,12 @@ class Google_Service_Classroom_CourseAlias extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Classroom_Empty extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Classroom_GlobalPermission extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1185,6 +1196,7 @@ class Google_Service_Classroom_GlobalPermission extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Classroom_Invitation extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1229,6 +1241,7 @@ class Google_Service_Classroom_Invitation extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Classroom_ListCourseAliasesResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'aliases';
|
||||
@@ -1257,6 +1270,7 @@ class Google_Service_Classroom_ListCourseAliasesResponse extends Google_Collecti
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Classroom_ListCoursesResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'courses';
|
||||
@@ -1285,6 +1299,7 @@ class Google_Service_Classroom_ListCoursesResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Classroom_ListInvitationsResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'invitations';
|
||||
@@ -1313,6 +1328,7 @@ class Google_Service_Classroom_ListInvitationsResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Classroom_ListStudentsResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'students';
|
||||
@@ -1341,6 +1357,7 @@ class Google_Service_Classroom_ListStudentsResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Classroom_ListTeachersResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'teachers';
|
||||
@@ -1369,6 +1386,7 @@ class Google_Service_Classroom_ListTeachersResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Classroom_Name extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1404,6 +1422,7 @@ class Google_Service_Classroom_Name extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Classroom_Student extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1440,6 +1459,7 @@ class Google_Service_Classroom_Student extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Classroom_Teacher extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1476,6 +1496,7 @@ class Google_Service_Classroom_Teacher extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Classroom_UserProfile extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'permissions';
|
||||
|
||||
@@ -28,6 +28,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CloudMonitoring extends Google_Service
|
||||
{
|
||||
/** View and manage your data across Google Cloud Platform services. */
|
||||
@@ -252,6 +253,7 @@ class Google_Service_CloudMonitoring extends Google_Service
|
||||
* $metricDescriptors = $cloudmonitoringService->metricDescriptors;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CloudMonitoring_MetricDescriptors_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -325,6 +327,7 @@ class Google_Service_CloudMonitoring_MetricDescriptors_Resource extends Google_S
|
||||
* $timeseries = $cloudmonitoringService->timeseries;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CloudMonitoring_Timeseries_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -415,6 +418,7 @@ class Google_Service_CloudMonitoring_Timeseries_Resource extends Google_Service_
|
||||
* $timeseriesDescriptors = $cloudmonitoringService->timeseriesDescriptors;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CloudMonitoring_TimeseriesDescriptors_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -478,6 +482,7 @@ class Google_Service_CloudMonitoring_TimeseriesDescriptors_Resource extends Goog
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CloudMonitoring_DeleteMetricDescriptorResponse extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -495,6 +500,7 @@ class Google_Service_CloudMonitoring_DeleteMetricDescriptorResponse extends Goog
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CloudMonitoring_ListMetricDescriptorsRequest extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -512,6 +518,7 @@ class Google_Service_CloudMonitoring_ListMetricDescriptorsRequest extends Google
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CloudMonitoring_ListMetricDescriptorsResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'metrics';
|
||||
@@ -549,6 +556,7 @@ class Google_Service_CloudMonitoring_ListMetricDescriptorsResponse extends Googl
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CloudMonitoring_ListTimeseriesDescriptorsRequest extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -566,6 +574,7 @@ class Google_Service_CloudMonitoring_ListTimeseriesDescriptorsRequest extends Go
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CloudMonitoring_ListTimeseriesDescriptorsResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'timeseries';
|
||||
@@ -621,6 +630,7 @@ class Google_Service_CloudMonitoring_ListTimeseriesDescriptorsResponse extends G
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CloudMonitoring_ListTimeseriesRequest extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -638,6 +648,7 @@ class Google_Service_CloudMonitoring_ListTimeseriesRequest extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CloudMonitoring_ListTimeseriesResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'timeseries';
|
||||
@@ -693,6 +704,7 @@ class Google_Service_CloudMonitoring_ListTimeseriesResponse extends Google_Colle
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CloudMonitoring_MetricDescriptor extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'labels';
|
||||
@@ -749,6 +761,7 @@ class Google_Service_CloudMonitoring_MetricDescriptor extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CloudMonitoring_MetricDescriptorLabelDescriptor extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -775,6 +788,7 @@ class Google_Service_CloudMonitoring_MetricDescriptorLabelDescriptor extends Goo
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CloudMonitoring_MetricDescriptorTypeDescriptor extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -801,6 +815,7 @@ class Google_Service_CloudMonitoring_MetricDescriptorTypeDescriptor extends Goog
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CloudMonitoring_Point extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -873,6 +888,7 @@ class Google_Service_CloudMonitoring_Point extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CloudMonitoring_PointDistribution extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'buckets';
|
||||
@@ -912,6 +928,7 @@ class Google_Service_CloudMonitoring_PointDistribution extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CloudMonitoring_PointDistributionBucket extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -947,6 +964,7 @@ class Google_Service_CloudMonitoring_PointDistributionBucket extends Google_Mode
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CloudMonitoring_PointDistributionOverflowBucket extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -973,6 +991,7 @@ class Google_Service_CloudMonitoring_PointDistributionOverflowBucket extends Goo
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CloudMonitoring_PointDistributionUnderflowBucket extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -999,6 +1018,7 @@ class Google_Service_CloudMonitoring_PointDistributionUnderflowBucket extends Go
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CloudMonitoring_Timeseries extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'points';
|
||||
@@ -1028,6 +1048,7 @@ class Google_Service_CloudMonitoring_Timeseries extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CloudMonitoring_TimeseriesDescriptor extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1063,6 +1084,7 @@ class Google_Service_CloudMonitoring_TimeseriesDescriptor extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CloudMonitoring_TimeseriesDescriptorLabel extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1089,10 +1111,12 @@ class Google_Service_CloudMonitoring_TimeseriesDescriptorLabel extends Google_Mo
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CloudMonitoring_TimeseriesDescriptorLabels extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CloudMonitoring_TimeseriesPoint extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1121,6 +1145,7 @@ class Google_Service_CloudMonitoring_TimeseriesPoint extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CloudMonitoring_WriteTimeseriesRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'timeseries';
|
||||
@@ -1149,10 +1174,12 @@ class Google_Service_CloudMonitoring_WriteTimeseriesRequest extends Google_Colle
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CloudMonitoring_WriteTimeseriesRequestCommonLabels extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CloudMonitoring_WriteTimeseriesResponse extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
|
||||
@@ -28,6 +28,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CloudUserAccounts extends Google_Service
|
||||
{
|
||||
/** View and manage your data across Google Cloud Platform services. */
|
||||
@@ -522,6 +523,7 @@ class Google_Service_CloudUserAccounts extends Google_Service
|
||||
* $globalAccountsOperations = $clouduseraccountsService->globalAccountsOperations;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CloudUserAccounts_GlobalAccountsOperations_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -606,6 +608,7 @@ class Google_Service_CloudUserAccounts_GlobalAccountsOperations_Resource extends
|
||||
* $groups = $clouduseraccountsService->groups;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CloudUserAccounts_Groups_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -789,6 +792,7 @@ class Google_Service_CloudUserAccounts_Groups_Resource extends Google_Service_Re
|
||||
* $linux = $clouduseraccountsService->linux;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CloudUserAccounts_Linux_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -870,6 +874,7 @@ class Google_Service_CloudUserAccounts_Linux_Resource extends Google_Service_Res
|
||||
* $users = $clouduseraccountsService->users;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CloudUserAccounts_Users_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1051,6 +1056,7 @@ class Google_Service_CloudUserAccounts_Users_Resource extends Google_Service_Res
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CloudUserAccounts_AuthorizedKeysView extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'keys';
|
||||
@@ -1078,6 +1084,7 @@ class Google_Service_CloudUserAccounts_AuthorizedKeysView extends Google_Collect
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CloudUserAccounts_Binding extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'members';
|
||||
@@ -1105,6 +1112,7 @@ class Google_Service_CloudUserAccounts_Binding extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CloudUserAccounts_Condition extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'values';
|
||||
@@ -1168,6 +1176,7 @@ class Google_Service_CloudUserAccounts_Condition extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CloudUserAccounts_Group extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'members';
|
||||
@@ -1240,6 +1249,7 @@ class Google_Service_CloudUserAccounts_Group extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CloudUserAccounts_GroupList extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -1295,6 +1305,7 @@ class Google_Service_CloudUserAccounts_GroupList extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CloudUserAccounts_GroupsAddMemberRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'users';
|
||||
@@ -1313,6 +1324,7 @@ class Google_Service_CloudUserAccounts_GroupsAddMemberRequest extends Google_Col
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CloudUserAccounts_GroupsRemoveMemberRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'users';
|
||||
@@ -1331,6 +1343,7 @@ class Google_Service_CloudUserAccounts_GroupsRemoveMemberRequest extends Google_
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CloudUserAccounts_LinuxAccountViews extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'userViews';
|
||||
@@ -1369,6 +1382,7 @@ class Google_Service_CloudUserAccounts_LinuxAccountViews extends Google_Collecti
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CloudUserAccounts_LinuxGetAuthorizedKeysViewResponse extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1387,6 +1401,7 @@ class Google_Service_CloudUserAccounts_LinuxGetAuthorizedKeysViewResponse extend
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CloudUserAccounts_LinuxGetLinuxAccountViewsResponse extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1405,6 +1420,7 @@ class Google_Service_CloudUserAccounts_LinuxGetLinuxAccountViewsResponse extends
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CloudUserAccounts_LinuxGroupView extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'members';
|
||||
@@ -1441,6 +1457,7 @@ class Google_Service_CloudUserAccounts_LinuxGroupView extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CloudUserAccounts_LinuxUserView extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1503,6 +1520,7 @@ class Google_Service_CloudUserAccounts_LinuxUserView extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CloudUserAccounts_LogConfig extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1521,6 +1539,7 @@ class Google_Service_CloudUserAccounts_LogConfig extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CloudUserAccounts_LogConfigCounterOptions extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1547,6 +1566,7 @@ class Google_Service_CloudUserAccounts_LogConfigCounterOptions extends Google_Mo
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CloudUserAccounts_Operation extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'warnings';
|
||||
@@ -1756,6 +1776,7 @@ class Google_Service_CloudUserAccounts_Operation extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CloudUserAccounts_OperationError extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'errors';
|
||||
@@ -1775,6 +1796,7 @@ class Google_Service_CloudUserAccounts_OperationError extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CloudUserAccounts_OperationErrorErrors extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1810,6 +1832,7 @@ class Google_Service_CloudUserAccounts_OperationErrorErrors extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CloudUserAccounts_OperationList extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -1865,6 +1888,7 @@ class Google_Service_CloudUserAccounts_OperationList extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CloudUserAccounts_OperationWarnings extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'data';
|
||||
@@ -1902,6 +1926,7 @@ class Google_Service_CloudUserAccounts_OperationWarnings extends Google_Collecti
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CloudUserAccounts_OperationWarningsData extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1928,6 +1953,7 @@ class Google_Service_CloudUserAccounts_OperationWarningsData extends Google_Mode
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CloudUserAccounts_Policy extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'rules';
|
||||
@@ -1975,6 +2001,7 @@ class Google_Service_CloudUserAccounts_Policy extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CloudUserAccounts_PublicKey extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2028,6 +2055,7 @@ class Google_Service_CloudUserAccounts_PublicKey extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CloudUserAccounts_Rule extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'permissions';
|
||||
@@ -2102,6 +2130,7 @@ class Google_Service_CloudUserAccounts_Rule extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CloudUserAccounts_TestPermissionsRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'permissions';
|
||||
@@ -2120,6 +2149,7 @@ class Google_Service_CloudUserAccounts_TestPermissionsRequest extends Google_Col
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CloudUserAccounts_TestPermissionsResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'permissions';
|
||||
@@ -2138,6 +2168,7 @@ class Google_Service_CloudUserAccounts_TestPermissionsResponse extends Google_Co
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CloudUserAccounts_User extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'publicKeys';
|
||||
@@ -2229,6 +2260,7 @@ class Google_Service_CloudUserAccounts_User extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_CloudUserAccounts_UserList extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
|
||||
@@ -29,6 +29,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Cloudbilling extends Google_Service
|
||||
{
|
||||
/** View and manage your data across Google Cloud Platform services. */
|
||||
@@ -156,6 +157,7 @@ class Google_Service_Cloudbilling extends Google_Service
|
||||
* $billingAccounts = $cloudbillingService->billingAccounts;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Cloudbilling_BillingAccounts_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -208,6 +210,7 @@ class Google_Service_Cloudbilling_BillingAccounts_Resource extends Google_Servic
|
||||
* $projects = $cloudbillingService->projects;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Cloudbilling_BillingAccountsProjects_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -246,6 +249,7 @@ class Google_Service_Cloudbilling_BillingAccountsProjects_Resource extends Googl
|
||||
* $projects = $cloudbillingService->projects;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Cloudbilling_Projects_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -310,6 +314,7 @@ class Google_Service_Cloudbilling_Projects_Resource extends Google_Service_Resou
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Cloudbilling_BillingAccount extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -345,6 +350,7 @@ class Google_Service_Cloudbilling_BillingAccount extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Cloudbilling_ListBillingAccountsResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'billingAccounts';
|
||||
@@ -373,6 +379,7 @@ class Google_Service_Cloudbilling_ListBillingAccountsResponse extends Google_Col
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Cloudbilling_ListProjectBillingInfoResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'projectBillingInfo';
|
||||
@@ -401,6 +408,7 @@ class Google_Service_Cloudbilling_ListProjectBillingInfoResponse extends Google_
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Cloudbilling_ProjectBillingInfo extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
|
||||
@@ -29,6 +29,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Clouddebugger extends Google_Service
|
||||
{
|
||||
/** View and manage your data across Google Cloud Platform services. */
|
||||
@@ -228,6 +229,7 @@ class Google_Service_Clouddebugger extends Google_Service
|
||||
* $controller = $clouddebuggerService->controller;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Clouddebugger_Controller_Resource extends Google_Service_Resource
|
||||
{
|
||||
}
|
||||
@@ -240,6 +242,7 @@ class Google_Service_Clouddebugger_Controller_Resource extends Google_Service_Re
|
||||
* $debuggees = $clouddebuggerService->debuggees;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Clouddebugger_ControllerDebuggees_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -272,6 +275,7 @@ class Google_Service_Clouddebugger_ControllerDebuggees_Resource extends Google_S
|
||||
* $breakpoints = $clouddebuggerService->breakpoints;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Clouddebugger_ControllerDebuggeesBreakpoints_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -335,6 +339,7 @@ class Google_Service_Clouddebugger_ControllerDebuggeesBreakpoints_Resource exten
|
||||
* $debugger = $clouddebuggerService->debugger;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Clouddebugger_Debugger_Resource extends Google_Service_Resource
|
||||
{
|
||||
}
|
||||
@@ -347,6 +352,7 @@ class Google_Service_Clouddebugger_Debugger_Resource extends Google_Service_Reso
|
||||
* $debuggees = $clouddebuggerService->debuggees;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Clouddebugger_DebuggerDebuggees_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -378,6 +384,7 @@ class Google_Service_Clouddebugger_DebuggerDebuggees_Resource extends Google_Ser
|
||||
* $breakpoints = $clouddebuggerService->breakpoints;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Clouddebugger_DebuggerDebuggeesBreakpoints_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -461,6 +468,7 @@ class Google_Service_Clouddebugger_DebuggerDebuggeesBreakpoints_Resource extends
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Clouddebugger_Breakpoint extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'variableTable';
|
||||
@@ -610,6 +618,7 @@ class Google_Service_Clouddebugger_Breakpoint extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Clouddebugger_CloudRepoSourceContext extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -646,6 +655,7 @@ class Google_Service_Clouddebugger_CloudRepoSourceContext extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Clouddebugger_CloudWorkspaceId extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -673,6 +683,7 @@ class Google_Service_Clouddebugger_CloudWorkspaceId extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Clouddebugger_CloudWorkspaceSourceContext extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -700,6 +711,7 @@ class Google_Service_Clouddebugger_CloudWorkspaceSourceContext extends Google_Mo
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Clouddebugger_Debuggee extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'sourceContexts';
|
||||
@@ -801,14 +813,17 @@ class Google_Service_Clouddebugger_Debuggee extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Clouddebugger_DebuggeeLabels extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Clouddebugger_Empty extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Clouddebugger_FormatMessage extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'parameters';
|
||||
@@ -836,6 +851,7 @@ class Google_Service_Clouddebugger_FormatMessage extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Clouddebugger_GerritSourceContext extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -880,6 +896,7 @@ class Google_Service_Clouddebugger_GerritSourceContext extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Clouddebugger_GetBreakpointResponse extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -898,6 +915,7 @@ class Google_Service_Clouddebugger_GetBreakpointResponse extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Clouddebugger_GitSourceContext extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -924,6 +942,7 @@ class Google_Service_Clouddebugger_GitSourceContext extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Clouddebugger_ListActiveBreakpointsResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'breakpoints';
|
||||
@@ -952,6 +971,7 @@ class Google_Service_Clouddebugger_ListActiveBreakpointsResponse extends Google_
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Clouddebugger_ListBreakpointsResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'breakpoints';
|
||||
@@ -980,6 +1000,7 @@ class Google_Service_Clouddebugger_ListBreakpointsResponse extends Google_Collec
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Clouddebugger_ListDebuggeesResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'debuggees';
|
||||
@@ -999,6 +1020,7 @@ class Google_Service_Clouddebugger_ListDebuggeesResponse extends Google_Collecti
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Clouddebugger_ProjectRepoId extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1025,6 +1047,7 @@ class Google_Service_Clouddebugger_ProjectRepoId extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Clouddebugger_RegisterDebuggeeRequest extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1043,6 +1066,7 @@ class Google_Service_Clouddebugger_RegisterDebuggeeRequest extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Clouddebugger_RegisterDebuggeeResponse extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1061,6 +1085,7 @@ class Google_Service_Clouddebugger_RegisterDebuggeeResponse extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Clouddebugger_RepoId extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1088,6 +1113,7 @@ class Google_Service_Clouddebugger_RepoId extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Clouddebugger_SetBreakpointResponse extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1106,6 +1132,7 @@ class Google_Service_Clouddebugger_SetBreakpointResponse extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Clouddebugger_SourceContext extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1154,6 +1181,7 @@ class Google_Service_Clouddebugger_SourceContext extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Clouddebugger_SourceLocation extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1180,6 +1208,7 @@ class Google_Service_Clouddebugger_SourceLocation extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Clouddebugger_StackFrame extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'locals';
|
||||
@@ -1228,6 +1257,7 @@ class Google_Service_Clouddebugger_StackFrame extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Clouddebugger_StatusMessage extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1264,6 +1294,7 @@ class Google_Service_Clouddebugger_StatusMessage extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Clouddebugger_UpdateActiveBreakpointRequest extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1282,10 +1313,12 @@ class Google_Service_Clouddebugger_UpdateActiveBreakpointRequest extends Google_
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Clouddebugger_UpdateActiveBreakpointResponse extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Clouddebugger_Variable extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'members';
|
||||
|
||||
@@ -28,6 +28,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Cloudlatencytest extends Google_Service
|
||||
{
|
||||
/** View monitoring data for all of your Google Cloud and API projects. */
|
||||
@@ -80,6 +81,7 @@ class Google_Service_Cloudlatencytest extends Google_Service
|
||||
* $statscollection = $cloudlatencytestService->statscollection;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Cloudlatencytest_Statscollection_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -115,6 +117,7 @@ class Google_Service_Cloudlatencytest_Statscollection_Resource extends Google_Se
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Cloudlatencytest_AggregatedStats extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'stats';
|
||||
@@ -134,6 +137,7 @@ class Google_Service_Cloudlatencytest_AggregatedStats extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Cloudlatencytest_AggregatedStatsReply extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -151,6 +155,7 @@ class Google_Service_Cloudlatencytest_AggregatedStatsReply extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Cloudlatencytest_DoubleValue extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -177,6 +182,7 @@ class Google_Service_Cloudlatencytest_DoubleValue extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Cloudlatencytest_IntValue extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -203,6 +209,7 @@ class Google_Service_Cloudlatencytest_IntValue extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Cloudlatencytest_Stats extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'stringValues';
|
||||
@@ -251,6 +258,7 @@ class Google_Service_Cloudlatencytest_Stats extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Cloudlatencytest_StatsReply extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -268,6 +276,7 @@ class Google_Service_Cloudlatencytest_StatsReply extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Cloudlatencytest_StringValue extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
|
||||
@@ -29,6 +29,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Cloudresourcemanager extends Google_Service
|
||||
{
|
||||
/** View and manage your data across Google Cloud Platform services. */
|
||||
@@ -242,6 +243,7 @@ class Google_Service_Cloudresourcemanager extends Google_Service
|
||||
* $organizations = $cloudresourcemanagerService->organizations;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Cloudresourcemanager_Organizations_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -367,6 +369,7 @@ class Google_Service_Cloudresourcemanager_Organizations_Resource extends Google_
|
||||
* $projects = $cloudresourcemanagerService->projects;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Cloudresourcemanager_Projects_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -574,6 +577,7 @@ class Google_Service_Cloudresourcemanager_Projects_Resource extends Google_Servi
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Cloudresourcemanager_Binding extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'members';
|
||||
@@ -601,14 +605,17 @@ class Google_Service_Cloudresourcemanager_Binding extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Cloudresourcemanager_Empty extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Cloudresourcemanager_GetIamPolicyRequest extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Cloudresourcemanager_ListOrganizationsResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'organizations';
|
||||
@@ -637,6 +644,7 @@ class Google_Service_Cloudresourcemanager_ListOrganizationsResponse extends Goog
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Cloudresourcemanager_ListProjectsResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'projects';
|
||||
@@ -665,6 +673,7 @@ class Google_Service_Cloudresourcemanager_ListProjectsResponse extends Google_Co
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Cloudresourcemanager_Organization extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -701,6 +710,7 @@ class Google_Service_Cloudresourcemanager_Organization extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Cloudresourcemanager_OrganizationOwner extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -718,6 +728,7 @@ class Google_Service_Cloudresourcemanager_OrganizationOwner extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Cloudresourcemanager_Policy extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'bindings';
|
||||
@@ -755,6 +766,7 @@ class Google_Service_Cloudresourcemanager_Policy extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Cloudresourcemanager_Project extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -827,10 +839,12 @@ class Google_Service_Cloudresourcemanager_Project extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Cloudresourcemanager_ProjectLabels extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Cloudresourcemanager_ResourceId extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -857,6 +871,7 @@ class Google_Service_Cloudresourcemanager_ResourceId extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Cloudresourcemanager_SetIamPolicyRequest extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -875,6 +890,7 @@ class Google_Service_Cloudresourcemanager_SetIamPolicyRequest extends Google_Mod
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Cloudresourcemanager_TestIamPermissionsRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'permissions';
|
||||
@@ -893,6 +909,7 @@ class Google_Service_Cloudresourcemanager_TestIamPermissionsRequest extends Goog
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Cloudresourcemanager_TestIamPermissionsResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'permissions';
|
||||
|
||||
@@ -30,6 +30,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Cloudsearch extends Google_Service
|
||||
{
|
||||
|
||||
|
||||
@@ -29,6 +29,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Cloudtrace extends Google_Service
|
||||
{
|
||||
/** View and manage your data across Google Cloud Platform services. */
|
||||
@@ -181,6 +182,7 @@ class Google_Service_Cloudtrace extends Google_Service
|
||||
* $projects = $cloudtraceService->projects;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Cloudtrace_Projects_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -211,6 +213,7 @@ class Google_Service_Cloudtrace_Projects_Resource extends Google_Service_Resourc
|
||||
* $traces = $cloudtraceService->traces;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Cloudtrace_ProjectsTraces_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -269,6 +272,7 @@ class Google_Service_Cloudtrace_ProjectsTraces_Resource extends Google_Service_R
|
||||
* $v1 = $cloudtraceService->v1;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Cloudtrace_V1_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -296,10 +300,12 @@ class Google_Service_Cloudtrace_V1_Resource extends Google_Service_Resource
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Cloudtrace_Empty extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Cloudtrace_ListTracesResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'traces';
|
||||
@@ -328,6 +334,7 @@ class Google_Service_Cloudtrace_ListTracesResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Cloudtrace_Trace extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'spans';
|
||||
@@ -365,6 +372,7 @@ class Google_Service_Cloudtrace_Trace extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Cloudtrace_TraceSpan extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -436,10 +444,12 @@ class Google_Service_Cloudtrace_TraceSpan extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Cloudtrace_TraceSpanLabels extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Cloudtrace_Traces extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'traces';
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -28,6 +28,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Computeaccounts extends Google_Service
|
||||
{
|
||||
/** View and manage your data across Google Cloud Platform services. */
|
||||
@@ -412,6 +413,7 @@ class Google_Service_Computeaccounts extends Google_Service
|
||||
* $globalAccountsOperations = $computeaccountsService->globalAccountsOperations;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Computeaccounts_GlobalAccountsOperations_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -475,6 +477,7 @@ class Google_Service_Computeaccounts_GlobalAccountsOperations_Resource extends G
|
||||
* $groups = $computeaccountsService->groups;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Computeaccounts_Groups_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -587,6 +590,7 @@ class Google_Service_Computeaccounts_Groups_Resource extends Google_Service_Reso
|
||||
* $linux = $computeaccountsService->linux;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Computeaccounts_Linux_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -645,6 +649,7 @@ class Google_Service_Computeaccounts_Linux_Resource extends Google_Service_Resou
|
||||
* $users = $computeaccountsService->users;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Computeaccounts_Users_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -755,6 +760,7 @@ class Google_Service_Computeaccounts_Users_Resource extends Google_Service_Resou
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Computeaccounts_AuthorizedKeysView extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'keys';
|
||||
@@ -773,6 +779,7 @@ class Google_Service_Computeaccounts_AuthorizedKeysView extends Google_Collectio
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Computeaccounts_Group extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'members';
|
||||
@@ -845,6 +852,7 @@ class Google_Service_Computeaccounts_Group extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Computeaccounts_GroupList extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -900,6 +908,7 @@ class Google_Service_Computeaccounts_GroupList extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Computeaccounts_GroupsAddMemberRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'users';
|
||||
@@ -918,6 +927,7 @@ class Google_Service_Computeaccounts_GroupsAddMemberRequest extends Google_Colle
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Computeaccounts_GroupsRemoveMemberRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'users';
|
||||
@@ -936,6 +946,7 @@ class Google_Service_Computeaccounts_GroupsRemoveMemberRequest extends Google_Co
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Computeaccounts_LinuxAccountViews extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'userViews';
|
||||
@@ -974,6 +985,7 @@ class Google_Service_Computeaccounts_LinuxAccountViews extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Computeaccounts_LinuxGetAuthorizedKeysViewResponse extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -992,6 +1004,7 @@ class Google_Service_Computeaccounts_LinuxGetAuthorizedKeysViewResponse extends
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Computeaccounts_LinuxGetLinuxAccountViewsResponse extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1010,6 +1023,7 @@ class Google_Service_Computeaccounts_LinuxGetLinuxAccountViewsResponse extends G
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Computeaccounts_LinuxGroupView extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'members';
|
||||
@@ -1046,6 +1060,7 @@ class Google_Service_Computeaccounts_LinuxGroupView extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Computeaccounts_LinuxUserView extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1108,6 +1123,7 @@ class Google_Service_Computeaccounts_LinuxUserView extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Computeaccounts_Operation extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'warnings';
|
||||
@@ -1317,6 +1333,7 @@ class Google_Service_Computeaccounts_Operation extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Computeaccounts_OperationError extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'errors';
|
||||
@@ -1336,6 +1353,7 @@ class Google_Service_Computeaccounts_OperationError extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Computeaccounts_OperationErrorErrors extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1371,6 +1389,7 @@ class Google_Service_Computeaccounts_OperationErrorErrors extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Computeaccounts_OperationList extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -1426,6 +1445,7 @@ class Google_Service_Computeaccounts_OperationList extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Computeaccounts_OperationWarnings extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'data';
|
||||
@@ -1463,6 +1483,7 @@ class Google_Service_Computeaccounts_OperationWarnings extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Computeaccounts_OperationWarningsData extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1489,6 +1510,7 @@ class Google_Service_Computeaccounts_OperationWarningsData extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Computeaccounts_PublicKey extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1542,6 +1564,7 @@ class Google_Service_Computeaccounts_PublicKey extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Computeaccounts_User extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'publicKeys';
|
||||
@@ -1633,6 +1656,7 @@ class Google_Service_Computeaccounts_User extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Computeaccounts_UserList extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
|
||||
@@ -29,6 +29,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Container extends Google_Service
|
||||
{
|
||||
/** View and manage your data across Google Cloud Platform services. */
|
||||
@@ -235,6 +236,7 @@ class Google_Service_Container extends Google_Service
|
||||
* $projects = $containerService->projects;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Container_Projects_Resource extends Google_Service_Resource
|
||||
{
|
||||
}
|
||||
@@ -247,6 +249,7 @@ class Google_Service_Container_Projects_Resource extends Google_Service_Resource
|
||||
* $zones = $containerService->zones;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Container_ProjectsZones_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -278,6 +281,7 @@ class Google_Service_Container_ProjectsZones_Resource extends Google_Service_Res
|
||||
* $clusters = $containerService->clusters;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Container_ProjectsZonesClusters_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -390,6 +394,7 @@ class Google_Service_Container_ProjectsZonesClusters_Resource extends Google_Ser
|
||||
* $operations = $containerService->operations;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Container_ProjectsZonesOperations_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -434,6 +439,7 @@ class Google_Service_Container_ProjectsZonesOperations_Resource extends Google_S
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Container_Cluster extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'instanceGroupUrls';
|
||||
@@ -634,6 +640,7 @@ class Google_Service_Container_Cluster extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Container_ClusterUpdate extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -651,6 +658,7 @@ class Google_Service_Container_ClusterUpdate extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Container_CreateClusterRequest extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -669,6 +677,7 @@ class Google_Service_Container_CreateClusterRequest extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Container_ListClustersResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'clusters';
|
||||
@@ -688,6 +697,7 @@ class Google_Service_Container_ListClustersResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Container_ListOperationsResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'operations';
|
||||
@@ -707,6 +717,7 @@ class Google_Service_Container_ListOperationsResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Container_MasterAuth extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -760,6 +771,7 @@ class Google_Service_Container_MasterAuth extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Container_NodeConfig extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'oauthScopes';
|
||||
@@ -796,6 +808,7 @@ class Google_Service_Container_NodeConfig extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Container_Operation extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -867,6 +880,7 @@ class Google_Service_Container_Operation extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Container_ServerConfig extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'validNodeVersions';
|
||||
@@ -894,6 +908,7 @@ class Google_Service_Container_ServerConfig extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Container_UpdateClusterRequest extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
|
||||
@@ -28,6 +28,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Coordinate extends Google_Service
|
||||
{
|
||||
/** View and manage your Google Maps Coordinate jobs. */
|
||||
@@ -476,6 +477,7 @@ class Google_Service_Coordinate extends Google_Service
|
||||
* $customFieldDef = $coordinateService->customFieldDef;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Coordinate_CustomFieldDef_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -503,6 +505,7 @@ class Google_Service_Coordinate_CustomFieldDef_Resource extends Google_Service_R
|
||||
* $jobs = $coordinateService->jobs;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Coordinate_Jobs_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -651,6 +654,7 @@ class Google_Service_Coordinate_Jobs_Resource extends Google_Service_Resource
|
||||
* $location = $coordinateService->location;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Coordinate_Location_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -683,6 +687,7 @@ class Google_Service_Coordinate_Location_Resource extends Google_Service_Resourc
|
||||
* $schedule = $coordinateService->schedule;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Coordinate_Schedule_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -755,6 +760,7 @@ class Google_Service_Coordinate_Schedule_Resource extends Google_Service_Resourc
|
||||
* $team = $coordinateService->team;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Coordinate_Team_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -787,6 +793,7 @@ class Google_Service_Coordinate_Team_Resource extends Google_Service_Resource
|
||||
* $worker = $coordinateService->worker;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Coordinate_Worker_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -808,6 +815,7 @@ class Google_Service_Coordinate_Worker_Resource extends Google_Service_Resource
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Coordinate_CustomField extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -843,6 +851,7 @@ class Google_Service_Coordinate_CustomField extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Coordinate_CustomFieldDef extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'enumitems';
|
||||
@@ -916,6 +925,7 @@ class Google_Service_Coordinate_CustomFieldDef extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Coordinate_CustomFieldDefListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -944,6 +954,7 @@ class Google_Service_Coordinate_CustomFieldDefListResponse extends Google_Collec
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Coordinate_CustomFields extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'customField';
|
||||
@@ -972,6 +983,7 @@ class Google_Service_Coordinate_CustomFields extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Coordinate_EnumItemDef extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1007,6 +1019,7 @@ class Google_Service_Coordinate_EnumItemDef extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Coordinate_Job extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'jobChange';
|
||||
@@ -1054,6 +1067,7 @@ class Google_Service_Coordinate_Job extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Coordinate_JobChange extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1090,6 +1104,7 @@ class Google_Service_Coordinate_JobChange extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Coordinate_JobListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -1127,6 +1142,7 @@ class Google_Service_Coordinate_JobListResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Coordinate_JobState extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'note';
|
||||
@@ -1219,6 +1235,7 @@ class Google_Service_Coordinate_JobState extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Coordinate_Location extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'addressLine';
|
||||
@@ -1264,6 +1281,7 @@ class Google_Service_Coordinate_Location extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Coordinate_LocationListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -1311,6 +1329,7 @@ class Google_Service_Coordinate_LocationListResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Coordinate_LocationRecord extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1364,6 +1383,7 @@ class Google_Service_Coordinate_LocationRecord extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Coordinate_Schedule extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1417,6 +1437,7 @@ class Google_Service_Coordinate_Schedule extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Coordinate_Team extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1452,6 +1473,7 @@ class Google_Service_Coordinate_Team extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Coordinate_TeamListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -1480,6 +1502,7 @@ class Google_Service_Coordinate_TeamListResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Coordinate_TokenPagination extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1515,6 +1538,7 @@ class Google_Service_Coordinate_TokenPagination extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Coordinate_Worker extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1541,6 +1565,7 @@ class Google_Service_Coordinate_Worker extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Coordinate_WorkerListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
|
||||
@@ -28,6 +28,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Customsearch extends Google_Service
|
||||
{
|
||||
|
||||
@@ -204,6 +205,7 @@ class Google_Service_Customsearch extends Google_Service
|
||||
* $cse = $customsearchService->cse;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Customsearch_Cse_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -278,6 +280,7 @@ class Google_Service_Customsearch_Cse_Resource extends Google_Service_Resource
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Customsearch_Context extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'facets';
|
||||
@@ -306,6 +309,7 @@ class Google_Service_Customsearch_Context extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Customsearch_ContextFacets extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -342,6 +346,7 @@ class Google_Service_Customsearch_ContextFacets extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Customsearch_Promotion extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'bodyLines';
|
||||
@@ -407,6 +412,7 @@ class Google_Service_Customsearch_Promotion extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Customsearch_PromotionBodyLines extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -451,6 +457,7 @@ class Google_Service_Customsearch_PromotionBodyLines extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Customsearch_PromotionImage extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -486,6 +493,7 @@ class Google_Service_Customsearch_PromotionImage extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Customsearch_Query extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -827,6 +835,7 @@ class Google_Service_Customsearch_Query extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Customsearch_Result extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'labels';
|
||||
@@ -973,6 +982,7 @@ class Google_Service_Customsearch_Result extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Customsearch_ResultImage extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1044,6 +1054,7 @@ class Google_Service_Customsearch_ResultImage extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Customsearch_ResultLabels extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1080,14 +1091,17 @@ class Google_Service_Customsearch_ResultLabels extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Customsearch_ResultPagemap extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Customsearch_ResultPagemapItemElement extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Customsearch_Search extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'promotions';
|
||||
@@ -1176,10 +1190,12 @@ class Google_Service_Customsearch_Search extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Customsearch_SearchQueries extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Customsearch_SearchSearchInformation extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1224,6 +1240,7 @@ class Google_Service_Customsearch_SearchSearchInformation extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Customsearch_SearchSpelling extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1250,6 +1267,7 @@ class Google_Service_Customsearch_SearchSpelling extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Customsearch_SearchUrl extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
|
||||
@@ -28,6 +28,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DataTransfer extends Google_Service
|
||||
{
|
||||
/** View and manage data transfers between users in your organization. */
|
||||
@@ -156,6 +157,7 @@ class Google_Service_DataTransfer extends Google_Service
|
||||
* $applications = $adminService->applications;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DataTransfer_Applications_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -202,6 +204,7 @@ class Google_Service_DataTransfer_Applications_Resource extends Google_Service_R
|
||||
* $transfers = $adminService->transfers;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DataTransfer_Transfers_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -260,6 +263,7 @@ class Google_Service_DataTransfer_Transfers_Resource extends Google_Service_Reso
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DataTransfer_Application extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'transferParams';
|
||||
@@ -315,6 +319,7 @@ class Google_Service_DataTransfer_Application extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DataTransfer_ApplicationDataTransfer extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'applicationTransferParams';
|
||||
@@ -352,6 +357,7 @@ class Google_Service_DataTransfer_ApplicationDataTransfer extends Google_Collect
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DataTransfer_ApplicationTransferParam extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'value';
|
||||
@@ -379,6 +385,7 @@ class Google_Service_DataTransfer_ApplicationTransferParam extends Google_Collec
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DataTransfer_ApplicationsListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'applications';
|
||||
@@ -425,6 +432,7 @@ class Google_Service_DataTransfer_ApplicationsListResponse extends Google_Collec
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DataTransfer_DataTransfer extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'applicationDataTransfers';
|
||||
@@ -507,6 +515,7 @@ class Google_Service_DataTransfer_DataTransfer extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DataTransfer_DataTransfersListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'dataTransfers';
|
||||
|
||||
@@ -28,6 +28,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow extends Google_Service
|
||||
{
|
||||
/** View and manage your data across Google Cloud Platform services. */
|
||||
@@ -255,6 +256,7 @@ class Google_Service_Dataflow extends Google_Service
|
||||
* $projects = $dataflowService->projects;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_Projects_Resource extends Google_Service_Resource
|
||||
{
|
||||
}
|
||||
@@ -267,6 +269,7 @@ class Google_Service_Dataflow_Projects_Resource extends Google_Service_Resource
|
||||
* $jobs = $dataflowService->jobs;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_ProjectsJobs_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -372,6 +375,7 @@ class Google_Service_Dataflow_ProjectsJobs_Resource extends Google_Service_Resou
|
||||
* $messages = $dataflowService->messages;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_ProjectsJobsMessages_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -412,6 +416,7 @@ class Google_Service_Dataflow_ProjectsJobsMessages_Resource extends Google_Servi
|
||||
* $workItems = $dataflowService->workItems;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_ProjectsJobsWorkItems_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -452,6 +457,7 @@ class Google_Service_Dataflow_ProjectsJobsWorkItems_Resource extends Google_Serv
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_ApproximateProgress extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -488,6 +494,7 @@ class Google_Service_Dataflow_ApproximateProgress extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_AutoscalingSettings extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -514,6 +521,7 @@ class Google_Service_Dataflow_AutoscalingSettings extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_ComputationTopology extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'stateFamilies';
|
||||
@@ -590,6 +598,7 @@ class Google_Service_Dataflow_ComputationTopology extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_ConcatPosition extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -617,6 +626,7 @@ class Google_Service_Dataflow_ConcatPosition extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_CustomSourceLocation extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -634,6 +644,7 @@ class Google_Service_Dataflow_CustomSourceLocation extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_DataDiskAssignment extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'dataDisks';
|
||||
@@ -661,6 +672,7 @@ class Google_Service_Dataflow_DataDiskAssignment extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_DerivedSource extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -688,6 +700,7 @@ class Google_Service_Dataflow_DerivedSource extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_Disk extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -723,6 +736,7 @@ class Google_Service_Dataflow_Disk extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_DynamicSourceSplit extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -751,6 +765,7 @@ class Google_Service_Dataflow_DynamicSourceSplit extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_Environment extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'workerPools';
|
||||
@@ -842,22 +857,27 @@ class Google_Service_Dataflow_Environment extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_EnvironmentInternalExperiments extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_EnvironmentSdkPipelineOptions extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_EnvironmentUserAgent extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_EnvironmentVersion extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_FlattenInstruction extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'inputs';
|
||||
@@ -877,6 +897,7 @@ class Google_Service_Dataflow_FlattenInstruction extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_InstructionInput extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -903,6 +924,7 @@ class Google_Service_Dataflow_InstructionInput extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_InstructionOutput extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -938,10 +960,12 @@ class Google_Service_Dataflow_InstructionOutput extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_InstructionOutputCodec extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_Job extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'steps';
|
||||
@@ -1089,6 +1113,7 @@ class Google_Service_Dataflow_Job extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_JobExecutionInfo extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1107,10 +1132,12 @@ class Google_Service_Dataflow_JobExecutionInfo extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_JobExecutionInfoStages extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_JobExecutionStageInfo extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'stepName';
|
||||
@@ -1129,6 +1156,7 @@ class Google_Service_Dataflow_JobExecutionStageInfo extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_JobMessage extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1173,6 +1201,7 @@ class Google_Service_Dataflow_JobMessage extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_JobMetrics extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'metrics';
|
||||
@@ -1201,10 +1230,12 @@ class Google_Service_Dataflow_JobMetrics extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_JobTransformNameMapping extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_KeyRangeDataDiskAssignment extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1240,6 +1271,7 @@ class Google_Service_Dataflow_KeyRangeDataDiskAssignment extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_KeyRangeLocation extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1293,6 +1325,7 @@ class Google_Service_Dataflow_KeyRangeLocation extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_LeaseWorkItemRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'workerCapabilities';
|
||||
@@ -1347,6 +1380,7 @@ class Google_Service_Dataflow_LeaseWorkItemRequest extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_LeaseWorkItemResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'workItems';
|
||||
@@ -1366,6 +1400,7 @@ class Google_Service_Dataflow_LeaseWorkItemResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_ListJobMessagesResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'jobMessages';
|
||||
@@ -1394,6 +1429,7 @@ class Google_Service_Dataflow_ListJobMessagesResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_ListJobsResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'jobs';
|
||||
@@ -1422,6 +1458,7 @@ class Google_Service_Dataflow_ListJobsResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_MapTask extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'instructions';
|
||||
@@ -1459,6 +1496,7 @@ class Google_Service_Dataflow_MapTask extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_MetricStructuredName extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1494,10 +1532,12 @@ class Google_Service_Dataflow_MetricStructuredName extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_MetricStructuredNameContext extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_MetricUpdate extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1588,6 +1628,7 @@ class Google_Service_Dataflow_MetricUpdate extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_MountedDataDisk extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1605,6 +1646,7 @@ class Google_Service_Dataflow_MountedDataDisk extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_MultiOutputInfo extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1622,6 +1664,7 @@ class Google_Service_Dataflow_MultiOutputInfo extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_Package extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1648,6 +1691,7 @@ class Google_Service_Dataflow_Package extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_ParDoInstruction extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'sideInputs';
|
||||
@@ -1705,10 +1749,12 @@ class Google_Service_Dataflow_ParDoInstruction extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_ParDoInstructionUserFn extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_ParallelInstruction extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'outputs';
|
||||
@@ -1796,6 +1842,7 @@ class Google_Service_Dataflow_ParallelInstruction extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_PartialGroupByKeyInstruction extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1832,14 +1879,17 @@ class Google_Service_Dataflow_PartialGroupByKeyInstruction extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_PartialGroupByKeyInstructionInputElementCodec extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_PartialGroupByKeyInstructionValueCombiningFn extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_Position extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1903,6 +1953,7 @@ class Google_Service_Dataflow_Position extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_PubsubLocation extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1965,6 +2016,7 @@ class Google_Service_Dataflow_PubsubLocation extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_ReadInstruction extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1983,6 +2035,7 @@ class Google_Service_Dataflow_ReadInstruction extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_ReportWorkItemStatusRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'workItemStatuses';
|
||||
@@ -2020,6 +2073,7 @@ class Google_Service_Dataflow_ReportWorkItemStatusRequest extends Google_Collect
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_ReportWorkItemStatusResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'workItemServiceStates';
|
||||
@@ -2039,6 +2093,7 @@ class Google_Service_Dataflow_ReportWorkItemStatusResponse extends Google_Collec
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_SeqMapTask extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'outputInfos';
|
||||
@@ -2104,6 +2159,7 @@ class Google_Service_Dataflow_SeqMapTask extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_SeqMapTaskOutputInfo extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2131,10 +2187,12 @@ class Google_Service_Dataflow_SeqMapTaskOutputInfo extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_SeqMapTaskUserFn extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_ShellTask extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2161,6 +2219,7 @@ class Google_Service_Dataflow_ShellTask extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_SideInputInfo extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'sources';
|
||||
@@ -2198,10 +2257,12 @@ class Google_Service_Dataflow_SideInputInfo extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_SideInputInfoKind extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_Sink extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2228,14 +2289,17 @@ class Google_Service_Dataflow_Sink extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_SinkCodec extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_SinkSpec extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_Source extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'baseSpecs';
|
||||
@@ -2291,14 +2355,17 @@ class Google_Service_Dataflow_Source extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_SourceBaseSpecs extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_SourceCodec extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_SourceFork extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2347,6 +2414,7 @@ class Google_Service_Dataflow_SourceFork extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_SourceGetMetadataRequest extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2365,6 +2433,7 @@ class Google_Service_Dataflow_SourceGetMetadataRequest extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_SourceGetMetadataResponse extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2383,6 +2452,7 @@ class Google_Service_Dataflow_SourceGetMetadataResponse extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_SourceMetadata extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2418,6 +2488,7 @@ class Google_Service_Dataflow_SourceMetadata extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_SourceOperationRequest extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2446,6 +2517,7 @@ class Google_Service_Dataflow_SourceOperationRequest extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_SourceOperationResponse extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2474,10 +2546,12 @@ class Google_Service_Dataflow_SourceOperationResponse extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_SourceSpec extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_SourceSplitOptions extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2504,6 +2578,7 @@ class Google_Service_Dataflow_SourceSplitOptions extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_SourceSplitRequest extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2532,6 +2607,7 @@ class Google_Service_Dataflow_SourceSplitRequest extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_SourceSplitResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'shards';
|
||||
@@ -2570,6 +2646,7 @@ class Google_Service_Dataflow_SourceSplitResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_SourceSplitShard extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2597,6 +2674,7 @@ class Google_Service_Dataflow_SourceSplitShard extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_StateFamilyConfig extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2623,6 +2701,7 @@ class Google_Service_Dataflow_StateFamilyConfig extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_Status extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'details';
|
||||
@@ -2659,10 +2738,12 @@ class Google_Service_Dataflow_Status extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_StatusDetails extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_Step extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2698,10 +2779,12 @@ class Google_Service_Dataflow_Step extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_StepProperties extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_StreamLocation extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2750,6 +2833,7 @@ class Google_Service_Dataflow_StreamLocation extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_StreamingComputationRanges extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'rangeAssignments';
|
||||
@@ -2778,6 +2862,7 @@ class Google_Service_Dataflow_StreamingComputationRanges extends Google_Collecti
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_StreamingComputationTask extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'dataDisks';
|
||||
@@ -2816,6 +2901,7 @@ class Google_Service_Dataflow_StreamingComputationTask extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_StreamingSetupTask extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2852,6 +2938,7 @@ class Google_Service_Dataflow_StreamingSetupTask extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_StreamingSideInputLocation extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2878,6 +2965,7 @@ class Google_Service_Dataflow_StreamingSideInputLocation extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_StreamingStageLocation extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2895,6 +2983,7 @@ class Google_Service_Dataflow_StreamingStageLocation extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_TaskRunnerSettings extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'oauthScopes';
|
||||
@@ -3076,6 +3165,7 @@ class Google_Service_Dataflow_TaskRunnerSettings extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_TopologyConfig extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'dataDiskAssignments';
|
||||
@@ -3114,10 +3204,12 @@ class Google_Service_Dataflow_TopologyConfig extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_TopologyConfigUserStageToComputationNameMap extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_WorkItem extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'packages';
|
||||
@@ -3260,6 +3352,7 @@ class Google_Service_Dataflow_WorkItem extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_WorkItemServiceState extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3324,10 +3417,12 @@ class Google_Service_Dataflow_WorkItemServiceState extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_WorkItemServiceStateHarnessData extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_WorkItemStatus extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'metricUpdates';
|
||||
@@ -3443,6 +3538,7 @@ class Google_Service_Dataflow_WorkItemStatus extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_WorkerPool extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'packages';
|
||||
@@ -3609,14 +3705,17 @@ class Google_Service_Dataflow_WorkerPool extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_WorkerPoolMetadata extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_WorkerPoolPoolArgs extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_WorkerSettings extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3679,6 +3778,7 @@ class Google_Service_Dataflow_WorkerSettings extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dataflow_WriteInstruction extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
|
||||
@@ -28,6 +28,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Datastore extends Google_Service
|
||||
{
|
||||
/** View and manage your data across Google Cloud Platform services. */
|
||||
@@ -138,6 +139,7 @@ class Google_Service_Datastore extends Google_Service
|
||||
* $datasets = $datastoreService->datasets;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Datastore_Datasets_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -237,6 +239,7 @@ class Google_Service_Datastore_Datasets_Resource extends Google_Service_Resource
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Datastore_AllocateIdsRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'keys';
|
||||
@@ -256,6 +259,7 @@ class Google_Service_Datastore_AllocateIdsRequest extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Datastore_AllocateIdsResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'keys';
|
||||
@@ -285,6 +289,7 @@ class Google_Service_Datastore_AllocateIdsResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Datastore_BeginTransactionRequest extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -302,6 +307,7 @@ class Google_Service_Datastore_BeginTransactionRequest extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Datastore_BeginTransactionResponse extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -329,6 +335,7 @@ class Google_Service_Datastore_BeginTransactionResponse extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Datastore_CommitRequest extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -374,6 +381,7 @@ class Google_Service_Datastore_CommitRequest extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Datastore_CommitResponse extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -402,6 +410,7 @@ class Google_Service_Datastore_CommitResponse extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Datastore_CompositeFilter extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'filters';
|
||||
@@ -430,6 +439,7 @@ class Google_Service_Datastore_CompositeFilter extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Datastore_Entity extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -458,10 +468,12 @@ class Google_Service_Datastore_Entity extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Datastore_EntityProperties extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Datastore_EntityResult extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -480,6 +492,7 @@ class Google_Service_Datastore_EntityResult extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Datastore_Filter extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -508,6 +521,7 @@ class Google_Service_Datastore_Filter extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Datastore_GqlQuery extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'numberArgs';
|
||||
@@ -555,6 +569,7 @@ class Google_Service_Datastore_GqlQuery extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Datastore_GqlQueryArg extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -591,6 +606,7 @@ class Google_Service_Datastore_GqlQueryArg extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Datastore_Key extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'path';
|
||||
@@ -620,6 +636,7 @@ class Google_Service_Datastore_Key extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Datastore_KeyPathElement extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -655,6 +672,7 @@ class Google_Service_Datastore_KeyPathElement extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Datastore_KindExpression extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -672,6 +690,7 @@ class Google_Service_Datastore_KindExpression extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Datastore_LookupRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'keys';
|
||||
@@ -701,6 +720,7 @@ class Google_Service_Datastore_LookupRequest extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Datastore_LookupResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'missing';
|
||||
@@ -750,6 +770,7 @@ class Google_Service_Datastore_LookupResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Datastore_Mutation extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'upsert';
|
||||
@@ -818,6 +839,7 @@ class Google_Service_Datastore_Mutation extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Datastore_MutationResult extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'insertAutoIdKeys';
|
||||
@@ -846,6 +868,7 @@ class Google_Service_Datastore_MutationResult extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Datastore_PartitionId extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -872,6 +895,7 @@ class Google_Service_Datastore_PartitionId extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Datastore_Property extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'listValue';
|
||||
@@ -992,6 +1016,7 @@ class Google_Service_Datastore_Property extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Datastore_PropertyExpression extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1019,6 +1044,7 @@ class Google_Service_Datastore_PropertyExpression extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Datastore_PropertyFilter extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1056,6 +1082,7 @@ class Google_Service_Datastore_PropertyFilter extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Datastore_PropertyOrder extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1083,6 +1110,7 @@ class Google_Service_Datastore_PropertyOrder extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Datastore_PropertyReference extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1100,6 +1128,7 @@ class Google_Service_Datastore_PropertyReference extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Datastore_Query extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'projection';
|
||||
@@ -1195,6 +1224,7 @@ class Google_Service_Datastore_Query extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Datastore_QueryResultBatch extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'entityResults';
|
||||
@@ -1250,6 +1280,7 @@ class Google_Service_Datastore_QueryResultBatch extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Datastore_ReadOptions extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1276,6 +1307,7 @@ class Google_Service_Datastore_ReadOptions extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Datastore_ResponseHeader extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1293,6 +1325,7 @@ class Google_Service_Datastore_ResponseHeader extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Datastore_RollbackRequest extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1310,6 +1343,7 @@ class Google_Service_Datastore_RollbackRequest extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Datastore_RollbackResponse extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1328,6 +1362,7 @@ class Google_Service_Datastore_RollbackResponse extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Datastore_RunQueryRequest extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1376,6 +1411,7 @@ class Google_Service_Datastore_RunQueryRequest extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Datastore_RunQueryResponse extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1404,6 +1440,7 @@ class Google_Service_Datastore_RunQueryResponse extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Datastore_Value extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'listValue';
|
||||
|
||||
@@ -29,6 +29,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DeploymentManager extends Google_Service
|
||||
{
|
||||
/** View and manage your data across Google Cloud Platform services. */
|
||||
@@ -429,6 +430,7 @@ class Google_Service_DeploymentManager extends Google_Service
|
||||
* $deployments = $deploymentmanagerService->deployments;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DeploymentManager_Deployments_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -626,6 +628,7 @@ class Google_Service_DeploymentManager_Deployments_Resource extends Google_Servi
|
||||
* $manifests = $deploymentmanagerService->manifests;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DeploymentManager_Manifests_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -687,6 +690,7 @@ class Google_Service_DeploymentManager_Manifests_Resource extends Google_Service
|
||||
* $operations = $deploymentmanagerService->operations;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DeploymentManager_Operations_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -746,6 +750,7 @@ class Google_Service_DeploymentManager_Operations_Resource extends Google_Servic
|
||||
* $resources = $deploymentmanagerService->resources;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DeploymentManager_Resources_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -807,6 +812,7 @@ class Google_Service_DeploymentManager_Resources_Resource extends Google_Service
|
||||
* $types = $deploymentmanagerService->types;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DeploymentManager_Types_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -846,6 +852,7 @@ class Google_Service_DeploymentManager_Types_Resource extends Google_Service_Res
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DeploymentManager_ConfigFile extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -863,6 +870,7 @@ class Google_Service_DeploymentManager_ConfigFile extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DeploymentManager_Deployment extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -955,6 +963,7 @@ class Google_Service_DeploymentManager_Deployment extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DeploymentManager_DeploymentUpdate extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -972,6 +981,7 @@ class Google_Service_DeploymentManager_DeploymentUpdate extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DeploymentManager_DeploymentmanagerResource extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'warnings';
|
||||
@@ -1082,6 +1092,7 @@ class Google_Service_DeploymentManager_DeploymentmanagerResource extends Google_
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DeploymentManager_DeploymentmanagerResourceWarnings extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'data';
|
||||
@@ -1119,6 +1130,7 @@ class Google_Service_DeploymentManager_DeploymentmanagerResourceWarnings extends
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DeploymentManager_DeploymentmanagerResourceWarningsData extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1145,6 +1157,7 @@ class Google_Service_DeploymentManager_DeploymentmanagerResourceWarningsData ext
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DeploymentManager_DeploymentsCancelPreviewRequest extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1162,6 +1175,7 @@ class Google_Service_DeploymentManager_DeploymentsCancelPreviewRequest extends G
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DeploymentManager_DeploymentsListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'deployments';
|
||||
@@ -1190,6 +1204,7 @@ class Google_Service_DeploymentManager_DeploymentsListResponse extends Google_Co
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DeploymentManager_DeploymentsStopRequest extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1207,6 +1222,7 @@ class Google_Service_DeploymentManager_DeploymentsStopRequest extends Google_Mod
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DeploymentManager_ImportFile extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1233,6 +1249,7 @@ class Google_Service_DeploymentManager_ImportFile extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DeploymentManager_Manifest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'imports';
|
||||
@@ -1316,6 +1333,7 @@ class Google_Service_DeploymentManager_Manifest extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DeploymentManager_ManifestsListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'manifests';
|
||||
@@ -1344,6 +1362,7 @@ class Google_Service_DeploymentManager_ManifestsListResponse extends Google_Coll
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DeploymentManager_Operation extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'warnings';
|
||||
@@ -1553,6 +1572,7 @@ class Google_Service_DeploymentManager_Operation extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DeploymentManager_OperationError extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'errors';
|
||||
@@ -1572,6 +1592,7 @@ class Google_Service_DeploymentManager_OperationError extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DeploymentManager_OperationErrorErrors extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1607,6 +1628,7 @@ class Google_Service_DeploymentManager_OperationErrorErrors extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DeploymentManager_OperationWarnings extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'data';
|
||||
@@ -1644,6 +1666,7 @@ class Google_Service_DeploymentManager_OperationWarnings extends Google_Collecti
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DeploymentManager_OperationWarningsData extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1670,6 +1693,7 @@ class Google_Service_DeploymentManager_OperationWarningsData extends Google_Mode
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DeploymentManager_OperationsListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'operations';
|
||||
@@ -1698,6 +1722,7 @@ class Google_Service_DeploymentManager_OperationsListResponse extends Google_Col
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DeploymentManager_ResourceUpdate extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'warnings';
|
||||
@@ -1772,6 +1797,7 @@ class Google_Service_DeploymentManager_ResourceUpdate extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DeploymentManager_ResourceUpdateError extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'errors';
|
||||
@@ -1791,6 +1817,7 @@ class Google_Service_DeploymentManager_ResourceUpdateError extends Google_Collec
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DeploymentManager_ResourceUpdateErrorErrors extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1826,6 +1853,7 @@ class Google_Service_DeploymentManager_ResourceUpdateErrorErrors extends Google_
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DeploymentManager_ResourceUpdateWarnings extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'data';
|
||||
@@ -1863,6 +1891,7 @@ class Google_Service_DeploymentManager_ResourceUpdateWarnings extends Google_Col
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DeploymentManager_ResourceUpdateWarningsData extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1889,6 +1918,7 @@ class Google_Service_DeploymentManager_ResourceUpdateWarningsData extends Google
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DeploymentManager_ResourcesListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'resources';
|
||||
@@ -1917,6 +1947,7 @@ class Google_Service_DeploymentManager_ResourcesListResponse extends Google_Coll
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DeploymentManager_TargetConfiguration extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'imports';
|
||||
@@ -1946,6 +1977,7 @@ class Google_Service_DeploymentManager_TargetConfiguration extends Google_Collec
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DeploymentManager_Type extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1990,6 +2022,7 @@ class Google_Service_DeploymentManager_Type extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DeploymentManager_TypesListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'types';
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -30,6 +30,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory extends Google_Service
|
||||
{
|
||||
/** View and manage customer related information. */
|
||||
@@ -1677,6 +1678,7 @@ class Google_Service_Directory extends Google_Service
|
||||
* $asps = $adminService->asps;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_Asps_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1735,6 +1737,7 @@ class Google_Service_Directory_Asps_Resource extends Google_Service_Resource
|
||||
* $channels = $adminService->channels;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_Channels_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1760,6 +1763,7 @@ class Google_Service_Directory_Channels_Resource extends Google_Service_Resource
|
||||
* $chromeosdevices = $adminService->chromeosdevices;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_Chromeosdevices_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1854,6 +1858,7 @@ class Google_Service_Directory_Chromeosdevices_Resource extends Google_Service_R
|
||||
* $customers = $adminService->customers;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_Customers_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1910,6 +1915,7 @@ class Google_Service_Directory_Customers_Resource extends Google_Service_Resourc
|
||||
* $domainAliases = $adminService->domainAliases;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_DomainAliases_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1983,6 +1989,7 @@ class Google_Service_Directory_DomainAliases_Resource extends Google_Service_Res
|
||||
* $domains = $adminService->domains;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_Domains_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2053,6 +2060,7 @@ class Google_Service_Directory_Domains_Resource extends Google_Service_Resource
|
||||
* $groups = $adminService->groups;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_Groups_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2163,6 +2171,7 @@ class Google_Service_Directory_Groups_Resource extends Google_Service_Resource
|
||||
* $aliases = $adminService->aliases;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_GroupsAliases_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2218,6 +2227,7 @@ class Google_Service_Directory_GroupsAliases_Resource extends Google_Service_Res
|
||||
* $members = $adminService->members;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_Members_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2330,6 +2340,7 @@ class Google_Service_Directory_Members_Resource extends Google_Service_Resource
|
||||
* $mobiledevices = $adminService->mobiledevices;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_Mobiledevices_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2414,6 +2425,7 @@ class Google_Service_Directory_Mobiledevices_Resource extends Google_Service_Res
|
||||
* $notifications = $adminService->notifications;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_Notifications_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2511,6 +2523,7 @@ class Google_Service_Directory_Notifications_Resource extends Google_Service_Res
|
||||
* $orgunits = $adminService->orgunits;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_Orgunits_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2619,6 +2632,7 @@ class Google_Service_Directory_Orgunits_Resource extends Google_Service_Resource
|
||||
* $privileges = $adminService->privileges;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_Privileges_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2646,6 +2660,7 @@ class Google_Service_Directory_Privileges_Resource extends Google_Service_Resour
|
||||
* $roleAssignments = $adminService->roleAssignments;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_RoleAssignments_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2725,6 +2740,7 @@ class Google_Service_Directory_RoleAssignments_Resource extends Google_Service_R
|
||||
* $roles = $adminService->roles;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_Roles_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2830,6 +2846,7 @@ class Google_Service_Directory_Roles_Resource extends Google_Service_Resource
|
||||
* $schemas = $adminService->schemas;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_Schemas_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2932,6 +2949,7 @@ class Google_Service_Directory_Schemas_Resource extends Google_Service_Resource
|
||||
* $tokens = $adminService->tokens;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_Tokens_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2993,6 +3011,7 @@ class Google_Service_Directory_Tokens_Resource extends Google_Service_Resource
|
||||
* $users = $adminService->users;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_Users_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -3193,6 +3212,7 @@ class Google_Service_Directory_Users_Resource extends Google_Service_Resource
|
||||
* $aliases = $adminService->aliases;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_UsersAliases_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -3268,6 +3288,7 @@ class Google_Service_Directory_UsersAliases_Resource extends Google_Service_Reso
|
||||
* $photos = $adminService->photos;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_UsersPhotos_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -3338,6 +3359,7 @@ class Google_Service_Directory_UsersPhotos_Resource extends Google_Service_Resou
|
||||
* $verificationCodes = $adminService->verificationCodes;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_VerificationCodes_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -3389,6 +3411,7 @@ class Google_Service_Directory_VerificationCodes_Resource extends Google_Service
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_Alias extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3442,6 +3465,7 @@ class Google_Service_Directory_Alias extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_Aliases extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'aliases';
|
||||
@@ -3479,6 +3503,7 @@ class Google_Service_Directory_Aliases extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_Asp extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3550,6 +3575,7 @@ class Google_Service_Directory_Asp extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_Asps extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -3587,6 +3613,7 @@ class Google_Service_Directory_Asps extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_Channel extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3685,10 +3712,12 @@ class Google_Service_Directory_Channel extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_ChannelParams extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_ChromeOsDevice extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'recentUsers';
|
||||
@@ -3925,6 +3954,7 @@ class Google_Service_Directory_ChromeOsDevice extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_ChromeOsDeviceActiveTimeRanges extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3951,6 +3981,7 @@ class Google_Service_Directory_ChromeOsDeviceActiveTimeRanges extends Google_Mod
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_ChromeOsDeviceRecentUsers extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3977,6 +4008,7 @@ class Google_Service_Directory_ChromeOsDeviceRecentUsers extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_ChromeOsDevices extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'chromeosdevices';
|
||||
@@ -4023,6 +4055,7 @@ class Google_Service_Directory_ChromeOsDevices extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_Customer extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -4113,6 +4146,7 @@ class Google_Service_Directory_Customer extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_CustomerPostalAddress extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -4202,6 +4236,7 @@ class Google_Service_Directory_CustomerPostalAddress extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_DomainAlias extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -4264,6 +4299,7 @@ class Google_Service_Directory_DomainAlias extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_DomainAliases extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'domainAliases';
|
||||
@@ -4301,6 +4337,7 @@ class Google_Service_Directory_DomainAliases extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_Domains extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'domainAliases';
|
||||
@@ -4374,6 +4411,7 @@ class Google_Service_Directory_Domains extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_Domains2 extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'domains';
|
||||
@@ -4411,6 +4449,7 @@ class Google_Service_Directory_Domains2 extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_Group extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'nonEditableAliases';
|
||||
@@ -4510,6 +4549,7 @@ class Google_Service_Directory_Group extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_Groups extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'groups';
|
||||
@@ -4556,6 +4596,7 @@ class Google_Service_Directory_Groups extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_Member extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -4618,6 +4659,7 @@ class Google_Service_Directory_Member extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_Members extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'members';
|
||||
@@ -4664,6 +4706,7 @@ class Google_Service_Directory_Members extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_MobileDevice extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'otherAccountsInfo';
|
||||
@@ -4953,6 +4996,7 @@ class Google_Service_Directory_MobileDevice extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_MobileDeviceAction extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -4970,6 +5014,7 @@ class Google_Service_Directory_MobileDeviceAction extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_MobileDeviceApplications extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'permission';
|
||||
@@ -5024,6 +5069,7 @@ class Google_Service_Directory_MobileDeviceApplications extends Google_Collectio
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_MobileDevices extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'mobiledevices';
|
||||
@@ -5070,6 +5116,7 @@ class Google_Service_Directory_MobileDevices extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_Notification extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5150,6 +5197,7 @@ class Google_Service_Directory_Notification extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_Notifications extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -5205,6 +5253,7 @@ class Google_Service_Directory_Notifications extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_OrgUnit extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5294,6 +5343,7 @@ class Google_Service_Directory_OrgUnit extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_OrgUnits extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'organizationUnits';
|
||||
@@ -5331,6 +5381,7 @@ class Google_Service_Directory_OrgUnits extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_Privilege extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'childPrivileges';
|
||||
@@ -5404,6 +5455,7 @@ class Google_Service_Directory_Privilege extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_Privileges extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -5441,6 +5493,7 @@ class Google_Service_Directory_Privileges extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_Role extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'rolePrivileges';
|
||||
@@ -5523,6 +5576,7 @@ class Google_Service_Directory_Role extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_RoleAssignment extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5594,6 +5648,7 @@ class Google_Service_Directory_RoleAssignment extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_RoleAssignments extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -5640,6 +5695,7 @@ class Google_Service_Directory_RoleAssignments extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_RoleRolePrivileges extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5666,6 +5722,7 @@ class Google_Service_Directory_RoleRolePrivileges extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_Roles extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -5712,6 +5769,7 @@ class Google_Service_Directory_Roles extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_Schema extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'fields';
|
||||
@@ -5767,6 +5825,7 @@ class Google_Service_Directory_Schema extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_SchemaFieldSpec extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5857,6 +5916,7 @@ class Google_Service_Directory_SchemaFieldSpec extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_SchemaFieldSpecNumericIndexingSpec extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5883,6 +5943,7 @@ class Google_Service_Directory_SchemaFieldSpecNumericIndexingSpec extends Google
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_Schemas extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'schemas';
|
||||
@@ -5920,6 +5981,7 @@ class Google_Service_Directory_Schemas extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_Token extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'scopes';
|
||||
@@ -6001,6 +6063,7 @@ class Google_Service_Directory_Token extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_Tokens extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -6038,6 +6101,7 @@ class Google_Service_Directory_Tokens extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_User extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'nonEditableAliases';
|
||||
@@ -6363,6 +6427,7 @@ class Google_Service_Directory_User extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_UserAbout extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -6389,6 +6454,7 @@ class Google_Service_Directory_UserAbout extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_UserAddress extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -6514,14 +6580,17 @@ class Google_Service_Directory_UserAddress extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_UserCustomProperties extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_UserCustomSchemas extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_UserEmail extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -6566,6 +6635,7 @@ class Google_Service_Directory_UserEmail extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_UserExternalId extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -6601,6 +6671,7 @@ class Google_Service_Directory_UserExternalId extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_UserIm extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -6663,6 +6734,7 @@ class Google_Service_Directory_UserIm extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_UserMakeAdmin extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -6680,6 +6752,7 @@ class Google_Service_Directory_UserMakeAdmin extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_UserName extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -6715,6 +6788,7 @@ class Google_Service_Directory_UserName extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_UserOrganization extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -6822,6 +6896,7 @@ class Google_Service_Directory_UserOrganization extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_UserPhone extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -6866,6 +6941,7 @@ class Google_Service_Directory_UserPhone extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_UserPhoto extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -6946,6 +7022,7 @@ class Google_Service_Directory_UserPhoto extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_UserRelation extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -6981,6 +7058,7 @@ class Google_Service_Directory_UserRelation extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_UserUndelete extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -6998,6 +7076,7 @@ class Google_Service_Directory_UserUndelete extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_UserWebsite extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -7042,6 +7121,7 @@ class Google_Service_Directory_UserWebsite extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_Users extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'users';
|
||||
@@ -7098,6 +7178,7 @@ class Google_Service_Directory_Users extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_VerificationCode extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -7142,6 +7223,7 @@ class Google_Service_Directory_VerificationCode extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Directory_VerificationCodes extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
|
||||
@@ -29,6 +29,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dns extends Google_Service
|
||||
{
|
||||
/** View and manage your data across Google Cloud Platform services. */
|
||||
@@ -284,6 +285,7 @@ class Google_Service_Dns extends Google_Service
|
||||
* $changes = $dnsService->changes;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dns_Changes_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -357,6 +359,7 @@ class Google_Service_Dns_Changes_Resource extends Google_Service_Resource
|
||||
* $managedZones = $dnsService->managedZones;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dns_ManagedZones_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -438,6 +441,7 @@ class Google_Service_Dns_ManagedZones_Resource extends Google_Service_Resource
|
||||
* $projects = $dnsService->projects;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dns_Projects_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -464,6 +468,7 @@ class Google_Service_Dns_Projects_Resource extends Google_Service_Resource
|
||||
* $resourceRecordSets = $dnsService->resourceRecordSets;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dns_ResourceRecordSets_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -498,6 +503,7 @@ class Google_Service_Dns_ResourceRecordSets_Resource extends Google_Service_Reso
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dns_Change extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'deletions';
|
||||
@@ -563,6 +569,7 @@ class Google_Service_Dns_Change extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dns_ChangesListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'changes';
|
||||
@@ -600,6 +607,7 @@ class Google_Service_Dns_ChangesListResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dns_ManagedZone extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'nameServers';
|
||||
@@ -681,6 +689,7 @@ class Google_Service_Dns_ManagedZone extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dns_ManagedZonesListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'managedZones';
|
||||
@@ -718,6 +727,7 @@ class Google_Service_Dns_ManagedZonesListResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dns_Project extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -763,6 +773,7 @@ class Google_Service_Dns_Project extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dns_Quota extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -834,6 +845,7 @@ class Google_Service_Dns_Quota extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dns_ResourceRecordSet extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'rrdatas';
|
||||
@@ -888,6 +900,7 @@ class Google_Service_Dns_ResourceRecordSet extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Dns_ResourceRecordSetsListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'rrsets';
|
||||
|
||||
@@ -28,6 +28,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DoubleClickBidManager extends Google_Service
|
||||
{
|
||||
|
||||
@@ -149,6 +150,7 @@ class Google_Service_DoubleClickBidManager extends Google_Service
|
||||
* $lineitems = $doubleclickbidmanagerService->lineitems;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DoubleClickBidManager_Lineitems_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -189,6 +191,7 @@ class Google_Service_DoubleClickBidManager_Lineitems_Resource extends Google_Ser
|
||||
* $queries = $doubleclickbidmanagerService->queries;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DoubleClickBidManager_Queries_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -270,6 +273,7 @@ class Google_Service_DoubleClickBidManager_Queries_Resource extends Google_Servi
|
||||
* $reports = $doubleclickbidmanagerService->reports;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DoubleClickBidManager_Reports_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -291,6 +295,7 @@ class Google_Service_DoubleClickBidManager_Reports_Resource extends Google_Servi
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DoubleClickBidManager_DownloadLineItemsRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'filterIds';
|
||||
@@ -336,6 +341,7 @@ class Google_Service_DoubleClickBidManager_DownloadLineItemsRequest extends Goog
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DoubleClickBidManager_DownloadLineItemsResponse extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -353,6 +359,7 @@ class Google_Service_DoubleClickBidManager_DownloadLineItemsResponse extends Goo
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DoubleClickBidManager_FilterPair extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -379,6 +386,7 @@ class Google_Service_DoubleClickBidManager_FilterPair extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DoubleClickBidManager_ListQueriesResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'queries';
|
||||
@@ -407,6 +415,7 @@ class Google_Service_DoubleClickBidManager_ListQueriesResponse extends Google_Co
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DoubleClickBidManager_ListReportsResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'reports';
|
||||
@@ -435,6 +444,7 @@ class Google_Service_DoubleClickBidManager_ListReportsResponse extends Google_Co
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DoubleClickBidManager_Parameters extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'metrics';
|
||||
@@ -490,6 +500,7 @@ class Google_Service_DoubleClickBidManager_Parameters extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DoubleClickBidManager_Query extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -573,6 +584,7 @@ class Google_Service_DoubleClickBidManager_Query extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DoubleClickBidManager_QueryMetadata extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'shareEmailAddress';
|
||||
@@ -681,6 +693,7 @@ class Google_Service_DoubleClickBidManager_QueryMetadata extends Google_Collecti
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DoubleClickBidManager_QuerySchedule extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -725,6 +738,7 @@ class Google_Service_DoubleClickBidManager_QuerySchedule extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DoubleClickBidManager_Report extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -763,6 +777,7 @@ class Google_Service_DoubleClickBidManager_Report extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DoubleClickBidManager_ReportFailure extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -780,6 +795,7 @@ class Google_Service_DoubleClickBidManager_ReportFailure extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DoubleClickBidManager_ReportKey extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -806,6 +822,7 @@ class Google_Service_DoubleClickBidManager_ReportKey extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DoubleClickBidManager_ReportMetadata extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -851,6 +868,7 @@ class Google_Service_DoubleClickBidManager_ReportMetadata extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DoubleClickBidManager_ReportStatus extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -896,6 +914,7 @@ class Google_Service_DoubleClickBidManager_ReportStatus extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DoubleClickBidManager_RowStatus extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'errors';
|
||||
@@ -959,6 +978,7 @@ class Google_Service_DoubleClickBidManager_RowStatus extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DoubleClickBidManager_RunQueryRequest extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1003,6 +1023,7 @@ class Google_Service_DoubleClickBidManager_RunQueryRequest extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DoubleClickBidManager_UploadLineItemsRequest extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1038,6 +1059,7 @@ class Google_Service_DoubleClickBidManager_UploadLineItemsRequest extends Google
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DoubleClickBidManager_UploadLineItemsResponse extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1056,6 +1078,7 @@ class Google_Service_DoubleClickBidManager_UploadLineItemsResponse extends Googl
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_DoubleClickBidManager_UploadStatus extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'rowStatus';
|
||||
|
||||
@@ -29,6 +29,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Doubleclicksearch extends Google_Service
|
||||
{
|
||||
/** View and manage your advertising data in DoubleClick Search. */
|
||||
@@ -251,6 +252,7 @@ class Google_Service_Doubleclicksearch extends Google_Service
|
||||
* $conversion = $doubleclicksearchService->conversion;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Doubleclicksearch_Conversion_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -361,6 +363,7 @@ class Google_Service_Doubleclicksearch_Conversion_Resource extends Google_Servic
|
||||
* $reports = $doubleclicksearchService->reports;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Doubleclicksearch_Reports_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -429,6 +432,7 @@ class Google_Service_Doubleclicksearch_Reports_Resource extends Google_Service_R
|
||||
* $savedColumns = $doubleclicksearchService->savedColumns;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Doubleclicksearch_SavedColumns_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -452,6 +456,7 @@ class Google_Service_Doubleclicksearch_SavedColumns_Resource extends Google_Serv
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Doubleclicksearch_Availability extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -514,6 +519,7 @@ class Google_Service_Doubleclicksearch_Availability extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Doubleclicksearch_Conversion extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'customMetric';
|
||||
@@ -822,6 +828,7 @@ class Google_Service_Doubleclicksearch_Conversion extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Doubleclicksearch_ConversionList extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'conversion';
|
||||
@@ -850,6 +857,7 @@ class Google_Service_Doubleclicksearch_ConversionList extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Doubleclicksearch_CustomDimension extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -876,6 +884,7 @@ class Google_Service_Doubleclicksearch_CustomDimension extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Doubleclicksearch_CustomMetric extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -902,6 +911,7 @@ class Google_Service_Doubleclicksearch_CustomMetric extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Doubleclicksearch_Report extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'rows';
|
||||
@@ -994,6 +1004,7 @@ class Google_Service_Doubleclicksearch_Report extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Doubleclicksearch_ReportApiColumnSpec extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1092,6 +1103,7 @@ class Google_Service_Doubleclicksearch_ReportApiColumnSpec extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Doubleclicksearch_ReportFiles extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1118,6 +1130,7 @@ class Google_Service_Doubleclicksearch_ReportFiles extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Doubleclicksearch_ReportRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'orderBy';
|
||||
@@ -1258,6 +1271,7 @@ class Google_Service_Doubleclicksearch_ReportRequest extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Doubleclicksearch_ReportRequestFilters extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'values';
|
||||
@@ -1295,6 +1309,7 @@ class Google_Service_Doubleclicksearch_ReportRequestFilters extends Google_Colle
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Doubleclicksearch_ReportRequestOrderBy extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1322,6 +1337,7 @@ class Google_Service_Doubleclicksearch_ReportRequestOrderBy extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Doubleclicksearch_ReportRequestReportScope extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1393,6 +1409,7 @@ class Google_Service_Doubleclicksearch_ReportRequestReportScope extends Google_M
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Doubleclicksearch_ReportRequestTimeRange extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1437,10 +1454,12 @@ class Google_Service_Doubleclicksearch_ReportRequestTimeRange extends Google_Mod
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Doubleclicksearch_ReportRow extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Doubleclicksearch_SavedColumn extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1476,6 +1495,7 @@ class Google_Service_Doubleclicksearch_SavedColumn extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Doubleclicksearch_SavedColumnList extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -1504,6 +1524,7 @@ class Google_Service_Doubleclicksearch_SavedColumnList extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Doubleclicksearch_UpdateAvailabilityRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'availabilities';
|
||||
@@ -1523,6 +1544,7 @@ class Google_Service_Doubleclicksearch_UpdateAvailabilityRequest extends Google_
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Doubleclicksearch_UpdateAvailabilityResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'availabilities';
|
||||
|
||||
@@ -28,6 +28,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Drive extends Google_Service
|
||||
{
|
||||
/** View and manage the files in your Google Drive. */
|
||||
@@ -1327,6 +1328,7 @@ class Google_Service_Drive extends Google_Service
|
||||
* $about = $driveService->about;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Drive_About_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1363,6 +1365,7 @@ class Google_Service_Drive_About_Resource extends Google_Service_Resource
|
||||
* $apps = $driveService->apps;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Drive_Apps_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1416,6 +1419,7 @@ class Google_Service_Drive_Apps_Resource extends Google_Service_Resource
|
||||
* $changes = $driveService->changes;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Drive_Changes_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1491,6 +1495,7 @@ class Google_Service_Drive_Changes_Resource extends Google_Service_Resource
|
||||
* $channels = $driveService->channels;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Drive_Channels_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1516,6 +1521,7 @@ class Google_Service_Drive_Channels_Resource extends Google_Service_Resource
|
||||
* $children = $driveService->children;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Drive_Children_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1597,6 +1603,7 @@ class Google_Service_Drive_Children_Resource extends Google_Service_Resource
|
||||
* $comments = $driveService->comments;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Drive_Comments_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1713,6 +1720,7 @@ class Google_Service_Drive_Comments_Resource extends Google_Service_Resource
|
||||
* $files = $driveService->files;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Drive_Files_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2034,6 +2042,7 @@ class Google_Service_Drive_Files_Resource extends Google_Service_Resource
|
||||
* $parents = $driveService->parents;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Drive_Parents_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2104,6 +2113,7 @@ class Google_Service_Drive_Parents_Resource extends Google_Service_Resource
|
||||
* $permissions = $driveService->permissions;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Drive_Permissions_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2234,6 +2244,7 @@ class Google_Service_Drive_Permissions_Resource extends Google_Service_Resource
|
||||
* $properties = $driveService->properties;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Drive_Properties_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2344,6 +2355,7 @@ class Google_Service_Drive_Properties_Resource extends Google_Service_Resource
|
||||
* $realtime = $driveService->realtime;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Drive_Realtime_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2397,6 +2409,7 @@ class Google_Service_Drive_Realtime_Resource extends Google_Service_Resource
|
||||
* $replies = $driveService->replies;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Drive_Replies_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2517,6 +2530,7 @@ class Google_Service_Drive_Replies_Resource extends Google_Service_Resource
|
||||
* $revisions = $driveService->revisions;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Drive_Revisions_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2599,6 +2613,7 @@ class Google_Service_Drive_Revisions_Resource extends Google_Service_Resource
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Drive_About extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'quotaBytesByService';
|
||||
@@ -2831,6 +2846,7 @@ class Google_Service_Drive_About extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Drive_AboutAdditionalRoleInfo extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'roleSets';
|
||||
@@ -2859,6 +2875,7 @@ class Google_Service_Drive_AboutAdditionalRoleInfo extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Drive_AboutAdditionalRoleInfoRoleSets extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'additionalRoles';
|
||||
@@ -2886,6 +2903,7 @@ class Google_Service_Drive_AboutAdditionalRoleInfoRoleSets extends Google_Collec
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Drive_AboutExportFormats extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'targets';
|
||||
@@ -2913,6 +2931,7 @@ class Google_Service_Drive_AboutExportFormats extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Drive_AboutFeatures extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2939,6 +2958,7 @@ class Google_Service_Drive_AboutFeatures extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Drive_AboutImportFormats extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'targets';
|
||||
@@ -2966,6 +2986,7 @@ class Google_Service_Drive_AboutImportFormats extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Drive_AboutMaxUploadSizes extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2992,6 +3013,7 @@ class Google_Service_Drive_AboutMaxUploadSizes extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Drive_AboutQuotaBytesByService extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3018,6 +3040,7 @@ class Google_Service_Drive_AboutQuotaBytesByService extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Drive_App extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'secondaryMimeTypes';
|
||||
@@ -3244,6 +3267,7 @@ class Google_Service_Drive_App extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Drive_AppIcons extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3279,6 +3303,7 @@ class Google_Service_Drive_AppIcons extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Drive_AppList extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -3334,6 +3359,7 @@ class Google_Service_Drive_AppList extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Drive_Change extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3406,6 +3432,7 @@ class Google_Service_Drive_Change extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Drive_ChangeList extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -3479,6 +3506,7 @@ class Google_Service_Drive_ChangeList extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Drive_Channel extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3577,10 +3605,12 @@ class Google_Service_Drive_Channel extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Drive_ChannelParams extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Drive_ChildList extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -3645,6 +3675,7 @@ class Google_Service_Drive_ChildList extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Drive_ChildReference extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3689,6 +3720,7 @@ class Google_Service_Drive_ChildReference extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Drive_Comment extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'replies';
|
||||
@@ -3836,6 +3868,7 @@ class Google_Service_Drive_Comment extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Drive_CommentContext extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3862,6 +3895,7 @@ class Google_Service_Drive_CommentContext extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Drive_CommentList extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -3917,6 +3951,7 @@ class Google_Service_Drive_CommentList extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Drive_CommentReply extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -4007,6 +4042,7 @@ class Google_Service_Drive_CommentReply extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Drive_CommentReplyList extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -4062,6 +4098,7 @@ class Google_Service_Drive_CommentReplyList extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Drive_DriveFile extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'spaces';
|
||||
@@ -4587,10 +4624,12 @@ class Google_Service_Drive_DriveFile extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Drive_DriveFileExportLinks extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Drive_DriveFileImageMediaMetadata extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -4789,6 +4828,7 @@ class Google_Service_Drive_DriveFileImageMediaMetadata extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Drive_DriveFileImageMediaMetadataLocation extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -4824,6 +4864,7 @@ class Google_Service_Drive_DriveFileImageMediaMetadataLocation extends Google_Mo
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Drive_DriveFileIndexableText extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -4841,6 +4882,7 @@ class Google_Service_Drive_DriveFileIndexableText extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Drive_DriveFileLabels extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -4894,10 +4936,12 @@ class Google_Service_Drive_DriveFileLabels extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Drive_DriveFileOpenWithLinks extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Drive_DriveFileThumbnail extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -4924,6 +4968,7 @@ class Google_Service_Drive_DriveFileThumbnail extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Drive_DriveFileVideoMediaMetadata extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -4959,6 +5004,7 @@ class Google_Service_Drive_DriveFileVideoMediaMetadata extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Drive_FileList extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -5023,6 +5069,7 @@ class Google_Service_Drive_FileList extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Drive_GeneratedIds extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'ids';
|
||||
@@ -5059,6 +5106,7 @@ class Google_Service_Drive_GeneratedIds extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Drive_ParentList extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -5105,6 +5153,7 @@ class Google_Service_Drive_ParentList extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Drive_ParentReference extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5158,6 +5207,7 @@ class Google_Service_Drive_ParentReference extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Drive_Permission extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'additionalRoles';
|
||||
@@ -5293,6 +5343,7 @@ class Google_Service_Drive_Permission extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Drive_PermissionId extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5319,6 +5370,7 @@ class Google_Service_Drive_PermissionId extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Drive_PermissionList extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -5365,6 +5417,7 @@ class Google_Service_Drive_PermissionList extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Drive_Property extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5427,6 +5480,7 @@ class Google_Service_Drive_Property extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Drive_PropertyList extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -5473,6 +5527,7 @@ class Google_Service_Drive_PropertyList extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Drive_Revision extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5644,10 +5699,12 @@ class Google_Service_Drive_Revision extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Drive_RevisionExportLinks extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Drive_RevisionList extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -5694,6 +5751,7 @@ class Google_Service_Drive_RevisionList extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Drive_User extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5757,6 +5815,7 @@ class Google_Service_Drive_User extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Drive_UserPicture extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
|
||||
@@ -19,6 +19,7 @@ if (!class_exists('Google_Client')) {
|
||||
require_once dirname(__FILE__) . '/../autoload.php';
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Exception extends Google_Exception implements Google_Task_Retryable
|
||||
{
|
||||
/**
|
||||
|
||||
@@ -28,6 +28,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Fitness extends Google_Service
|
||||
{
|
||||
/** View your activity information in Google Fit. */
|
||||
@@ -359,6 +360,7 @@ class Google_Service_Fitness extends Google_Service
|
||||
* $users = $fitnessService->users;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Fitness_Users_Resource extends Google_Service_Resource
|
||||
{
|
||||
}
|
||||
@@ -371,6 +373,7 @@ class Google_Service_Fitness_Users_Resource extends Google_Service_Resource
|
||||
* $dataSources = $fitnessService->dataSources;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Fitness_UsersDataSources_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -506,6 +509,7 @@ class Google_Service_Fitness_UsersDataSources_Resource extends Google_Service_Re
|
||||
* $datasets = $fitnessService->datasets;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Fitness_UsersDataSourcesDatasets_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -611,6 +615,7 @@ class Google_Service_Fitness_UsersDataSourcesDatasets_Resource extends Google_Se
|
||||
* $dataset = $fitnessService->dataset;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Fitness_UsersDataset_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -641,6 +646,7 @@ class Google_Service_Fitness_UsersDataset_Resource extends Google_Service_Resour
|
||||
* $sessions = $fitnessService->sessions;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Fitness_UsersSessions_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -712,6 +718,7 @@ class Google_Service_Fitness_UsersSessions_Resource extends Google_Service_Resou
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Fitness_AggregateBucket extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'dataset';
|
||||
@@ -777,6 +784,7 @@ class Google_Service_Fitness_AggregateBucket extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Fitness_AggregateBy extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -803,6 +811,7 @@ class Google_Service_Fitness_AggregateBy extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Fitness_AggregateRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'aggregateBy';
|
||||
@@ -880,6 +889,7 @@ class Google_Service_Fitness_AggregateRequest extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Fitness_AggregateResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'bucket';
|
||||
@@ -899,6 +909,7 @@ class Google_Service_Fitness_AggregateResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Fitness_Application extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -943,6 +954,7 @@ class Google_Service_Fitness_Application extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Fitness_BucketByActivity extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -969,6 +981,7 @@ class Google_Service_Fitness_BucketByActivity extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Fitness_BucketBySession extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -986,6 +999,7 @@ class Google_Service_Fitness_BucketBySession extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Fitness_BucketByTime extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1003,6 +1017,7 @@ class Google_Service_Fitness_BucketByTime extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Fitness_DataPoint extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'value';
|
||||
@@ -1085,6 +1100,7 @@ class Google_Service_Fitness_DataPoint extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Fitness_DataSource extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1159,6 +1175,7 @@ class Google_Service_Fitness_DataSource extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Fitness_DataType extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'field';
|
||||
@@ -1187,6 +1204,7 @@ class Google_Service_Fitness_DataType extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Fitness_DataTypeField extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1222,6 +1240,7 @@ class Google_Service_Fitness_DataTypeField extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Fitness_Dataset extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'point';
|
||||
@@ -1277,6 +1296,7 @@ class Google_Service_Fitness_Dataset extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Fitness_Device extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1330,6 +1350,7 @@ class Google_Service_Fitness_Device extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Fitness_ListDataSourcesResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'dataSource';
|
||||
@@ -1349,6 +1370,7 @@ class Google_Service_Fitness_ListDataSourcesResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Fitness_ListSessionsResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'session';
|
||||
@@ -1387,6 +1409,7 @@ class Google_Service_Fitness_ListSessionsResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Fitness_MapValue extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1404,6 +1427,7 @@ class Google_Service_Fitness_MapValue extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Fitness_Session extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1494,6 +1518,7 @@ class Google_Service_Fitness_Session extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Fitness_Value extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'mapVal';
|
||||
@@ -1540,6 +1565,7 @@ class Google_Service_Fitness_Value extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Fitness_ValueMapValEntry extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
|
||||
@@ -28,6 +28,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Freebase extends Google_Service
|
||||
{
|
||||
|
||||
@@ -262,6 +263,7 @@ class Google_Service_Freebase extends Google_Service
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Freebase_ReconcileCandidate extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -316,6 +318,7 @@ class Google_Service_Freebase_ReconcileCandidate extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Freebase_ReconcileCandidateNotable extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -342,6 +345,7 @@ class Google_Service_Freebase_ReconcileCandidateNotable extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Freebase_ReconcileGet extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'warning';
|
||||
@@ -391,6 +395,7 @@ class Google_Service_Freebase_ReconcileGet extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Freebase_ReconcileGetCosts extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -417,6 +422,7 @@ class Google_Service_Freebase_ReconcileGetCosts extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Freebase_ReconcileGetWarning extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
|
||||
@@ -28,6 +28,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Fusiontables extends Google_Service
|
||||
{
|
||||
/** Manage your Fusion Tables. */
|
||||
@@ -639,6 +640,7 @@ class Google_Service_Fusiontables extends Google_Service
|
||||
* $column = $fusiontablesService->column;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Fusiontables_Column_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -750,6 +752,7 @@ class Google_Service_Fusiontables_Column_Resource extends Google_Service_Resourc
|
||||
* $query = $fusiontablesService->query;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Fusiontables_Query_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -806,6 +809,7 @@ class Google_Service_Fusiontables_Query_Resource extends Google_Service_Resource
|
||||
* $style = $fusiontablesService->style;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Fusiontables_Style_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -914,6 +918,7 @@ class Google_Service_Fusiontables_Style_Resource extends Google_Service_Resource
|
||||
* $table = $fusiontablesService->table;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Fusiontables_Table_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1120,6 +1125,7 @@ class Google_Service_Fusiontables_Table_Resource extends Google_Service_Resource
|
||||
* $task = $fusiontablesService->task;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Fusiontables_Task_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1182,6 +1188,7 @@ class Google_Service_Fusiontables_Task_Resource extends Google_Service_Resource
|
||||
* $template = $fusiontablesService->template;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Fusiontables_Template_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1286,6 +1293,7 @@ class Google_Service_Fusiontables_Template_Resource extends Google_Service_Resou
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Fusiontables_Bucket extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1348,6 +1356,7 @@ class Google_Service_Fusiontables_Bucket extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Fusiontables_Column extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'validValues';
|
||||
@@ -1466,6 +1475,7 @@ class Google_Service_Fusiontables_Column extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Fusiontables_ColumnBaseColumn extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1492,6 +1502,7 @@ class Google_Service_Fusiontables_ColumnBaseColumn extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Fusiontables_ColumnList extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -1538,6 +1549,7 @@ class Google_Service_Fusiontables_ColumnList extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Fusiontables_Geometry extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'geometries';
|
||||
@@ -1574,6 +1586,7 @@ class Google_Service_Fusiontables_Geometry extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Fusiontables_Import extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1600,6 +1613,7 @@ class Google_Service_Fusiontables_Import extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Fusiontables_Line extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'coordinates';
|
||||
@@ -1627,6 +1641,7 @@ class Google_Service_Fusiontables_Line extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Fusiontables_LineStyle extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1682,6 +1697,7 @@ class Google_Service_Fusiontables_LineStyle extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Fusiontables_Point extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'coordinates';
|
||||
@@ -1709,6 +1725,7 @@ class Google_Service_Fusiontables_Point extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Fusiontables_PointStyle extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1736,6 +1753,7 @@ class Google_Service_Fusiontables_PointStyle extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Fusiontables_Polygon extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'coordinates';
|
||||
@@ -1763,6 +1781,7 @@ class Google_Service_Fusiontables_Polygon extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Fusiontables_PolygonStyle extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1846,6 +1865,7 @@ class Google_Service_Fusiontables_PolygonStyle extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Fusiontables_Sqlresponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'rows';
|
||||
@@ -1882,6 +1902,7 @@ class Google_Service_Fusiontables_Sqlresponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Fusiontables_StyleFunction extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'buckets';
|
||||
@@ -1929,6 +1950,7 @@ class Google_Service_Fusiontables_StyleFunction extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Fusiontables_StyleFunctionGradient extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'colors';
|
||||
@@ -1966,6 +1988,7 @@ class Google_Service_Fusiontables_StyleFunctionGradient extends Google_Collectio
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Fusiontables_StyleFunctionGradientColors extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1992,6 +2015,7 @@ class Google_Service_Fusiontables_StyleFunctionGradientColors extends Google_Mod
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Fusiontables_StyleSetting extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2066,6 +2090,7 @@ class Google_Service_Fusiontables_StyleSetting extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Fusiontables_StyleSettingList extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -2112,6 +2137,7 @@ class Google_Service_Fusiontables_StyleSettingList extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Fusiontables_Table extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'columns';
|
||||
@@ -2239,6 +2265,7 @@ class Google_Service_Fusiontables_Table extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Fusiontables_TableList extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -2276,6 +2303,7 @@ class Google_Service_Fusiontables_TableList extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Fusiontables_Task extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2329,6 +2357,7 @@ class Google_Service_Fusiontables_Task extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Fusiontables_TaskList extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -2375,6 +2404,7 @@ class Google_Service_Fusiontables_TaskList extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Fusiontables_Template extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'automaticColumnNames';
|
||||
@@ -2438,6 +2468,7 @@ class Google_Service_Fusiontables_Template extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Fusiontables_TemplateList extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
|
||||
@@ -28,6 +28,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games extends Google_Service
|
||||
{
|
||||
/** View and manage its own configuration data in your Google Drive. */
|
||||
@@ -1060,6 +1061,7 @@ class Google_Service_Games extends Google_Service
|
||||
* $achievementDefinitions = $gamesService->achievementDefinitions;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_AchievementDefinitions_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1093,6 +1095,7 @@ class Google_Service_Games_AchievementDefinitions_Resource extends Google_Servic
|
||||
* $achievements = $gamesService->achievements;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_Achievements_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1214,6 +1217,7 @@ class Google_Service_Games_Achievements_Resource extends Google_Service_Resource
|
||||
* $applications = $gamesService->applications;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_Applications_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1261,6 +1265,7 @@ class Google_Service_Games_Applications_Resource extends Google_Service_Resource
|
||||
* $events = $gamesService->events;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_Events_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1333,6 +1338,7 @@ class Google_Service_Games_Events_Resource extends Google_Service_Resource
|
||||
* $leaderboards = $gamesService->leaderboards;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_Leaderboards_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1384,6 +1390,7 @@ class Google_Service_Games_Leaderboards_Resource extends Google_Service_Resource
|
||||
* $metagame = $gamesService->metagame;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_Metagame_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1435,6 +1442,7 @@ class Google_Service_Games_Metagame_Resource extends Google_Service_Resource
|
||||
* $players = $gamesService->players;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_Players_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1488,6 +1496,7 @@ class Google_Service_Games_Players_Resource extends Google_Service_Resource
|
||||
* $pushtokens = $gamesService->pushtokens;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_Pushtokens_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1528,6 +1537,7 @@ class Google_Service_Games_Pushtokens_Resource extends Google_Service_Resource
|
||||
* $questMilestones = $gamesService->questMilestones;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_QuestMilestones_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1559,6 +1569,7 @@ class Google_Service_Games_QuestMilestones_Resource extends Google_Service_Resou
|
||||
* $quests = $gamesService->quests;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_Quests_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1613,6 +1624,7 @@ class Google_Service_Games_Quests_Resource extends Google_Service_Resource
|
||||
* $revisions = $gamesService->revisions;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_Revisions_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1643,6 +1655,7 @@ class Google_Service_Games_Revisions_Resource extends Google_Service_Resource
|
||||
* $rooms = $gamesService->rooms;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_Rooms_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1800,6 +1813,7 @@ class Google_Service_Games_Rooms_Resource extends Google_Service_Resource
|
||||
* $scores = $gamesService->scores;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_Scores_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1942,6 +1956,7 @@ class Google_Service_Games_Scores_Resource extends Google_Service_Resource
|
||||
* $snapshots = $gamesService->snapshots;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_Snapshots_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1994,6 +2009,7 @@ class Google_Service_Games_Snapshots_Resource extends Google_Service_Resource
|
||||
* $turnBasedMatches = $gamesService->turnBasedMatches;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_TurnBasedMatches_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2260,6 +2276,7 @@ class Google_Service_Games_TurnBasedMatches_Resource extends Google_Service_Reso
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_AchievementDefinition extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2385,6 +2402,7 @@ class Google_Service_Games_AchievementDefinition extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_AchievementDefinitionsListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -2422,6 +2440,7 @@ class Google_Service_Games_AchievementDefinitionsListResponse extends Google_Col
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_AchievementIncrementResponse extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2457,6 +2476,7 @@ class Google_Service_Games_AchievementIncrementResponse extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_AchievementRevealResponse extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2483,6 +2503,7 @@ class Google_Service_Games_AchievementRevealResponse extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_AchievementSetStepsAtLeastResponse extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2518,6 +2539,7 @@ class Google_Service_Games_AchievementSetStepsAtLeastResponse extends Google_Mod
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_AchievementUnlockResponse extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2544,6 +2566,7 @@ class Google_Service_Games_AchievementUnlockResponse extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_AchievementUpdateMultipleRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'updates';
|
||||
@@ -2572,6 +2595,7 @@ class Google_Service_Games_AchievementUpdateMultipleRequest extends Google_Colle
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_AchievementUpdateMultipleResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'updatedAchievements';
|
||||
@@ -2600,6 +2624,7 @@ class Google_Service_Games_AchievementUpdateMultipleResponse extends Google_Coll
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_AchievementUpdateRequest extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2655,6 +2680,7 @@ class Google_Service_Games_AchievementUpdateRequest extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_AchievementUpdateResponse extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2717,6 +2743,7 @@ class Google_Service_Games_AchievementUpdateResponse extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_AggregateStats extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2770,6 +2797,7 @@ class Google_Service_Games_AggregateStats extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_AnonymousPlayer extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2805,6 +2833,7 @@ class Google_Service_Games_AnonymousPlayer extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_Application extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'instances';
|
||||
@@ -2936,6 +2965,7 @@ class Google_Service_Games_Application extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_ApplicationCategory extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2971,6 +3001,7 @@ class Google_Service_Games_ApplicationCategory extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_Category extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3006,6 +3037,7 @@ class Google_Service_Games_Category extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_CategoryListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -3043,6 +3075,7 @@ class Google_Service_Games_CategoryListResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_EventBatchRecordFailure extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3079,6 +3112,7 @@ class Google_Service_Games_EventBatchRecordFailure extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_EventChild extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3105,6 +3139,7 @@ class Google_Service_Games_EventChild extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_EventDefinition extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'childEvents';
|
||||
@@ -3187,6 +3222,7 @@ class Google_Service_Games_EventDefinition extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_EventDefinitionListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -3224,6 +3260,7 @@ class Google_Service_Games_EventDefinitionListResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_EventPeriodRange extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3259,6 +3296,7 @@ class Google_Service_Games_EventPeriodRange extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_EventPeriodUpdate extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'updates';
|
||||
@@ -3297,6 +3335,7 @@ class Google_Service_Games_EventPeriodUpdate extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_EventRecordFailure extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3332,6 +3371,7 @@ class Google_Service_Games_EventRecordFailure extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_EventRecordRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'timePeriods';
|
||||
@@ -3378,6 +3418,7 @@ class Google_Service_Games_EventRecordRequest extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_EventUpdateRequest extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3413,6 +3454,7 @@ class Google_Service_Games_EventUpdateRequest extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_EventUpdateResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'playerEvents';
|
||||
@@ -3461,6 +3503,7 @@ class Google_Service_Games_EventUpdateResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_GamesAchievementIncrement extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3496,6 +3539,7 @@ class Google_Service_Games_GamesAchievementIncrement extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_GamesAchievementSetStepsAtLeast extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3522,6 +3566,7 @@ class Google_Service_Games_GamesAchievementSetStepsAtLeast extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_ImageAsset extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3575,6 +3620,7 @@ class Google_Service_Games_ImageAsset extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_Instance extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3667,6 +3713,7 @@ class Google_Service_Games_Instance extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_InstanceAndroidDetails extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3711,6 +3758,7 @@ class Google_Service_Games_InstanceAndroidDetails extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_InstanceIosDetails extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3782,6 +3830,7 @@ class Google_Service_Games_InstanceIosDetails extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_InstanceWebDetails extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3817,6 +3866,7 @@ class Google_Service_Games_InstanceWebDetails extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_Leaderboard extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3879,6 +3929,7 @@ class Google_Service_Games_Leaderboard extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_LeaderboardEntry extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3969,6 +4020,7 @@ class Google_Service_Games_LeaderboardEntry extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_LeaderboardListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -4006,6 +4058,7 @@ class Google_Service_Games_LeaderboardListResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_LeaderboardScoreRank extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -4059,6 +4112,7 @@ class Google_Service_Games_LeaderboardScoreRank extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_LeaderboardScores extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -4124,6 +4178,7 @@ class Google_Service_Games_LeaderboardScores extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_MetagameConfig extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'playerLevels';
|
||||
@@ -4161,6 +4216,7 @@ class Google_Service_Games_MetagameConfig extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_NetworkDiagnostics extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -4232,6 +4288,7 @@ class Google_Service_Games_NetworkDiagnostics extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_ParticipantResult extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -4276,6 +4333,7 @@ class Google_Service_Games_ParticipantResult extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_PeerChannelDiagnostics extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -4359,6 +4417,7 @@ class Google_Service_Games_PeerChannelDiagnostics extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_PeerSessionDiagnostics extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -4414,6 +4473,7 @@ class Google_Service_Games_PeerSessionDiagnostics extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_Played extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -4449,6 +4509,7 @@ class Google_Service_Games_Played extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_Player extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -4550,6 +4611,7 @@ class Google_Service_Games_Player extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_PlayerAchievement extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -4621,6 +4683,7 @@ class Google_Service_Games_PlayerAchievement extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_PlayerAchievementListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -4658,6 +4721,7 @@ class Google_Service_Games_PlayerAchievementListResponse extends Google_Collecti
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_PlayerEvent extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -4711,6 +4775,7 @@ class Google_Service_Games_PlayerEvent extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_PlayerEventListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -4748,6 +4813,7 @@ class Google_Service_Games_PlayerEventListResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_PlayerExperienceInfo extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -4803,6 +4869,7 @@ class Google_Service_Games_PlayerExperienceInfo extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_PlayerLeaderboardScore extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -4895,6 +4962,7 @@ class Google_Service_Games_PlayerLeaderboardScore extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_PlayerLeaderboardScoreListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -4942,6 +5010,7 @@ class Google_Service_Games_PlayerLeaderboardScoreListResponse extends Google_Col
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_PlayerLevel extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -4986,6 +5055,7 @@ class Google_Service_Games_PlayerLevel extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_PlayerListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -5023,6 +5093,7 @@ class Google_Service_Games_PlayerListResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_PlayerName extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5049,6 +5120,7 @@ class Google_Service_Games_PlayerName extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_PlayerScore extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5102,6 +5174,7 @@ class Google_Service_Games_PlayerScore extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_PlayerScoreListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'submittedScores';
|
||||
@@ -5130,6 +5203,7 @@ class Google_Service_Games_PlayerScoreListResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_PlayerScoreResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'unbeatenScores';
|
||||
@@ -5194,6 +5268,7 @@ class Google_Service_Games_PlayerScoreResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_PlayerScoreSubmissionList extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'scores';
|
||||
@@ -5222,6 +5297,7 @@ class Google_Service_Games_PlayerScoreSubmissionList extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_PushToken extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5267,6 +5343,7 @@ class Google_Service_Games_PushToken extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_PushTokenId extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5294,6 +5371,7 @@ class Google_Service_Games_PushTokenId extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_PushTokenIdIos extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5322,6 +5400,7 @@ class Google_Service_Games_PushTokenIdIos extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_Quest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'milestones';
|
||||
@@ -5476,6 +5555,7 @@ class Google_Service_Games_Quest extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_QuestContribution extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5511,6 +5591,7 @@ class Google_Service_Games_QuestContribution extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_QuestCriterion extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5567,6 +5648,7 @@ class Google_Service_Games_QuestCriterion extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_QuestListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -5604,6 +5686,7 @@ class Google_Service_Games_QuestListResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_QuestMilestone extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'criteria';
|
||||
@@ -5659,6 +5742,7 @@ class Google_Service_Games_QuestMilestone extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_RevisionCheckResponse extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5694,6 +5778,7 @@ class Google_Service_Games_RevisionCheckResponse extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_Room extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'participants';
|
||||
@@ -5825,6 +5910,7 @@ class Google_Service_Games_Room extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_RoomAutoMatchStatus extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5851,6 +5937,7 @@ class Google_Service_Games_RoomAutoMatchStatus extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_RoomAutoMatchingCriteria extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5895,6 +5982,7 @@ class Google_Service_Games_RoomAutoMatchingCriteria extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_RoomClientAddress extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5921,6 +6009,7 @@ class Google_Service_Games_RoomClientAddress extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_RoomCreateRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'invitedPlayerIds';
|
||||
@@ -6005,6 +6094,7 @@ class Google_Service_Games_RoomCreateRequest extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_RoomJoinRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'capabilities';
|
||||
@@ -6052,6 +6142,7 @@ class Google_Service_Games_RoomJoinRequest extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_RoomLeaveDiagnostics extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'peerSession';
|
||||
@@ -6134,6 +6225,7 @@ class Google_Service_Games_RoomLeaveDiagnostics extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_RoomLeaveRequest extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -6170,6 +6262,7 @@ class Google_Service_Games_RoomLeaveRequest extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_RoomList extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -6207,6 +6300,7 @@ class Google_Service_Games_RoomList extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_RoomModification extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -6242,6 +6336,7 @@ class Google_Service_Games_RoomModification extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_RoomP2PStatus extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -6314,6 +6409,7 @@ class Google_Service_Games_RoomP2PStatus extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_RoomP2PStatuses extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'updates';
|
||||
@@ -6342,6 +6438,7 @@ class Google_Service_Games_RoomP2PStatuses extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_RoomParticipant extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'capabilities';
|
||||
@@ -6444,6 +6541,7 @@ class Google_Service_Games_RoomParticipant extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_RoomStatus extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'participants';
|
||||
@@ -6509,6 +6607,7 @@ class Google_Service_Games_RoomStatus extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_ScoreSubmission extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -6562,6 +6661,7 @@ class Google_Service_Games_ScoreSubmission extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_Snapshot extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -6670,6 +6770,7 @@ class Google_Service_Games_Snapshot extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_SnapshotImage extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -6724,6 +6825,7 @@ class Google_Service_Games_SnapshotImage extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_SnapshotListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -6761,6 +6863,7 @@ class Google_Service_Games_SnapshotListResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_TurnBasedAutoMatchingCriteria extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -6805,6 +6908,7 @@ class Google_Service_Games_TurnBasedAutoMatchingCriteria extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_TurnBasedMatch extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'results';
|
||||
@@ -7001,6 +7105,7 @@ class Google_Service_Games_TurnBasedMatch extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_TurnBasedMatchCreateRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'invitedPlayerIds';
|
||||
@@ -7056,6 +7161,7 @@ class Google_Service_Games_TurnBasedMatchCreateRequest extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_TurnBasedMatchData extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -7091,6 +7197,7 @@ class Google_Service_Games_TurnBasedMatchData extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_TurnBasedMatchDataRequest extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -7117,6 +7224,7 @@ class Google_Service_Games_TurnBasedMatchDataRequest extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_TurnBasedMatchList extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -7154,6 +7262,7 @@ class Google_Service_Games_TurnBasedMatchList extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_TurnBasedMatchModification extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -7189,6 +7298,7 @@ class Google_Service_Games_TurnBasedMatchModification extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_TurnBasedMatchParticipant extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -7253,6 +7363,7 @@ class Google_Service_Games_TurnBasedMatchParticipant extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_TurnBasedMatchRematch extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -7290,6 +7401,7 @@ class Google_Service_Games_TurnBasedMatchRematch extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_TurnBasedMatchResults extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'results';
|
||||
@@ -7337,6 +7449,7 @@ class Google_Service_Games_TurnBasedMatchResults extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_TurnBasedMatchSync extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -7383,6 +7496,7 @@ class Google_Service_Games_TurnBasedMatchSync extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Games_TurnBasedMatchTurn extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'results';
|
||||
|
||||
@@ -28,6 +28,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_GamesConfiguration extends Google_Service
|
||||
{
|
||||
/** View and manage your Google Play Developer account. */
|
||||
@@ -245,6 +246,7 @@ class Google_Service_GamesConfiguration extends Google_Service
|
||||
* $achievementConfigurations = $gamesConfigurationService->achievementConfigurations;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_GamesConfiguration_AchievementConfigurations_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -356,6 +358,7 @@ class Google_Service_GamesConfiguration_AchievementConfigurations_Resource exten
|
||||
* $imageConfigurations = $gamesConfigurationService->imageConfigurations;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_GamesConfiguration_ImageConfigurations_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -384,6 +387,7 @@ class Google_Service_GamesConfiguration_ImageConfigurations_Resource extends Goo
|
||||
* $leaderboardConfigurations = $gamesConfigurationService->leaderboardConfigurations;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_GamesConfiguration_LeaderboardConfigurations_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -490,6 +494,7 @@ class Google_Service_GamesConfiguration_LeaderboardConfigurations_Resource exten
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_GamesConfiguration_AchievementConfiguration extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -572,6 +577,7 @@ class Google_Service_GamesConfiguration_AchievementConfiguration extends Google_
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_GamesConfiguration_AchievementConfigurationDetail extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -636,6 +642,7 @@ class Google_Service_GamesConfiguration_AchievementConfigurationDetail extends G
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_GamesConfiguration_AchievementConfigurationListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -673,6 +680,7 @@ class Google_Service_GamesConfiguration_AchievementConfigurationListResponse ext
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_GamesConfiguration_GamesNumberAffixConfiguration extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -741,6 +749,7 @@ class Google_Service_GamesConfiguration_GamesNumberAffixConfiguration extends Go
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_GamesConfiguration_GamesNumberFormatConfiguration extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -786,6 +795,7 @@ class Google_Service_GamesConfiguration_GamesNumberFormatConfiguration extends G
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_GamesConfiguration_ImageConfiguration extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -830,6 +840,7 @@ class Google_Service_GamesConfiguration_ImageConfiguration extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_GamesConfiguration_LeaderboardConfiguration extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -912,6 +923,7 @@ class Google_Service_GamesConfiguration_LeaderboardConfiguration extends Google_
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_GamesConfiguration_LeaderboardConfigurationDetail extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -967,6 +979,7 @@ class Google_Service_GamesConfiguration_LeaderboardConfigurationDetail extends G
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_GamesConfiguration_LeaderboardConfigurationListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -1004,6 +1017,7 @@ class Google_Service_GamesConfiguration_LeaderboardConfigurationListResponse ext
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_GamesConfiguration_LocalizedString extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1039,6 +1053,7 @@ class Google_Service_GamesConfiguration_LocalizedString extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_GamesConfiguration_LocalizedStringBundle extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'translations';
|
||||
|
||||
@@ -28,6 +28,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_GamesManagement extends Google_Service
|
||||
{
|
||||
/** Share your Google+ profile information and view and manage your game activity. */
|
||||
@@ -344,6 +345,7 @@ class Google_Service_GamesManagement extends Google_Service
|
||||
* $achievements = $gamesManagementService->achievements;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_GamesManagement_Achievements_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -431,6 +433,7 @@ class Google_Service_GamesManagement_Achievements_Resource extends Google_Servic
|
||||
* $applications = $gamesManagementService->applications;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_GamesManagement_Applications_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -465,6 +468,7 @@ class Google_Service_GamesManagement_Applications_Resource extends Google_Servic
|
||||
* $events = $gamesManagementService->events;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_GamesManagement_Events_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -554,6 +558,7 @@ class Google_Service_GamesManagement_Events_Resource extends Google_Service_Reso
|
||||
* $players = $gamesManagementService->players;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_GamesManagement_Players_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -602,6 +607,7 @@ class Google_Service_GamesManagement_Players_Resource extends Google_Service_Res
|
||||
* $quests = $gamesManagementService->quests;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_GamesManagement_Quests_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -686,6 +692,7 @@ class Google_Service_GamesManagement_Quests_Resource extends Google_Service_Reso
|
||||
* $rooms = $gamesManagementService->rooms;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_GamesManagement_Rooms_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -726,6 +733,7 @@ class Google_Service_GamesManagement_Rooms_Resource extends Google_Service_Resou
|
||||
* $scores = $gamesManagementService->scores;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_GamesManagement_Scores_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -813,6 +821,7 @@ class Google_Service_GamesManagement_Scores_Resource extends Google_Service_Reso
|
||||
* $turnBasedMatches = $gamesManagementService->turnBasedMatches;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_GamesManagement_TurnBasedMatches_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -848,6 +857,7 @@ class Google_Service_GamesManagement_TurnBasedMatches_Resource extends Google_Se
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_GamesManagement_AchievementResetAllResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'results';
|
||||
@@ -876,6 +886,7 @@ class Google_Service_GamesManagement_AchievementResetAllResponse extends Google_
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_GamesManagement_AchievementResetMultipleForAllRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'achievement_ids';
|
||||
@@ -904,6 +915,7 @@ class Google_Service_GamesManagement_AchievementResetMultipleForAllRequest exten
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_GamesManagement_AchievementResetResponse extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -948,6 +960,7 @@ class Google_Service_GamesManagement_AchievementResetResponse extends Google_Mod
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_GamesManagement_EventsResetMultipleForAllRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'event_ids';
|
||||
@@ -976,6 +989,7 @@ class Google_Service_GamesManagement_EventsResetMultipleForAllRequest extends Go
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_GamesManagement_GamesPlayedResource extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1002,6 +1016,7 @@ class Google_Service_GamesManagement_GamesPlayedResource extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_GamesManagement_GamesPlayerExperienceInfoResource extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1048,6 +1063,7 @@ class Google_Service_GamesManagement_GamesPlayerExperienceInfoResource extends G
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_GamesManagement_GamesPlayerLevelResource extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1083,6 +1099,7 @@ class Google_Service_GamesManagement_GamesPlayerLevelResource extends Google_Mod
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_GamesManagement_HiddenPlayer extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1119,6 +1136,7 @@ class Google_Service_GamesManagement_HiddenPlayer extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_GamesManagement_HiddenPlayerList extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -1156,6 +1174,7 @@ class Google_Service_GamesManagement_HiddenPlayerList extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_GamesManagement_Player extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1257,6 +1276,7 @@ class Google_Service_GamesManagement_Player extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_GamesManagement_PlayerName extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1283,6 +1303,7 @@ class Google_Service_GamesManagement_PlayerName extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_GamesManagement_PlayerScoreResetAllResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'results';
|
||||
@@ -1311,6 +1332,7 @@ class Google_Service_GamesManagement_PlayerScoreResetAllResponse extends Google_
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_GamesManagement_PlayerScoreResetResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'resetScoreTimeSpans';
|
||||
@@ -1347,6 +1369,7 @@ class Google_Service_GamesManagement_PlayerScoreResetResponse extends Google_Col
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_GamesManagement_QuestsResetMultipleForAllRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'quest_ids';
|
||||
@@ -1375,6 +1398,7 @@ class Google_Service_GamesManagement_QuestsResetMultipleForAllRequest extends Go
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_GamesManagement_ScoresResetMultipleForAllRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'leaderboard_ids';
|
||||
|
||||
@@ -29,6 +29,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics extends Google_Service
|
||||
{
|
||||
/** View and manage your data in Google BigQuery. */
|
||||
@@ -626,6 +627,7 @@ class Google_Service_Genomics extends Google_Service
|
||||
* $callsets = $genomicsService->callsets;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_Callsets_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -715,6 +717,7 @@ class Google_Service_Genomics_Callsets_Resource extends Google_Service_Resource
|
||||
* $datasets = $genomicsService->datasets;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_Datasets_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -878,6 +881,7 @@ class Google_Service_Genomics_Datasets_Resource extends Google_Service_Resource
|
||||
* $operations = $genomicsService->operations;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_Operations_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -965,6 +969,7 @@ class Google_Service_Genomics_Operations_Resource extends Google_Service_Resourc
|
||||
* $readgroupsets = $genomicsService->readgroupsets;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_Readgroupsets_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1088,6 +1093,7 @@ class Google_Service_Genomics_Readgroupsets_Resource extends Google_Service_Reso
|
||||
* $coveragebuckets = $genomicsService->coveragebuckets;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_ReadgroupsetsCoveragebuckets_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1143,6 +1149,7 @@ class Google_Service_Genomics_ReadgroupsetsCoveragebuckets_Resource extends Goog
|
||||
* $reads = $genomicsService->reads;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_Reads_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1179,6 +1186,7 @@ class Google_Service_Genomics_Reads_Resource extends Google_Service_Resource
|
||||
* $references = $genomicsService->references;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_References_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1223,6 +1231,7 @@ class Google_Service_Genomics_References_Resource extends Google_Service_Resourc
|
||||
* $bases = $genomicsService->bases;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_ReferencesBases_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1262,6 +1271,7 @@ class Google_Service_Genomics_ReferencesBases_Resource extends Google_Service_Re
|
||||
* $referencesets = $genomicsService->referencesets;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_Referencesets_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1306,6 +1316,7 @@ class Google_Service_Genomics_Referencesets_Resource extends Google_Service_Reso
|
||||
* $variants = $genomicsService->variants;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_Variants_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1421,6 +1432,7 @@ class Google_Service_Genomics_Variants_Resource extends Google_Service_Resource
|
||||
* $variantsets = $genomicsService->variantsets;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_Variantsets_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1527,6 +1539,7 @@ class Google_Service_Genomics_Variantsets_Resource extends Google_Service_Resour
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_Binding extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'members';
|
||||
@@ -1554,6 +1567,7 @@ class Google_Service_Genomics_Binding extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_CallSet extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'variantSetIds';
|
||||
@@ -1617,14 +1631,17 @@ class Google_Service_Genomics_CallSet extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_CallSetInfo extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_CancelOperationRequest extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_CigarUnit extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1660,6 +1677,7 @@ class Google_Service_Genomics_CigarUnit extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_CoverageBucket extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1687,6 +1705,7 @@ class Google_Service_Genomics_CoverageBucket extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_Dataset extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1731,10 +1750,12 @@ class Google_Service_Genomics_Dataset extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_Empty extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_Experiment extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1779,6 +1800,7 @@ class Google_Service_Genomics_Experiment extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_ExportReadGroupSetRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'referenceNames';
|
||||
@@ -1815,6 +1837,7 @@ class Google_Service_Genomics_ExportReadGroupSetRequest extends Google_Collectio
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_ExportVariantSetRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'callSetIds';
|
||||
@@ -1869,10 +1892,12 @@ class Google_Service_Genomics_ExportVariantSetRequest extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_GetIamPolicyRequest extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_ImportReadGroupSetsRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'sourceUris';
|
||||
@@ -1918,6 +1943,7 @@ class Google_Service_Genomics_ImportReadGroupSetsRequest extends Google_Collecti
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_ImportReadGroupSetsResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'readGroupSetIds';
|
||||
@@ -1936,6 +1962,7 @@ class Google_Service_Genomics_ImportReadGroupSetsResponse extends Google_Collect
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_ImportVariantsRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'sourceUris';
|
||||
@@ -1981,6 +2008,7 @@ class Google_Service_Genomics_ImportVariantsRequest extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_ImportVariantsResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'callSetIds';
|
||||
@@ -1999,6 +2027,7 @@ class Google_Service_Genomics_ImportVariantsResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_LinearAlignment extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'cigar';
|
||||
@@ -2037,6 +2066,7 @@ class Google_Service_Genomics_LinearAlignment extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_ListBasesResponse extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2072,6 +2102,7 @@ class Google_Service_Genomics_ListBasesResponse extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_ListCoverageBucketsResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'coverageBuckets';
|
||||
@@ -2109,6 +2140,7 @@ class Google_Service_Genomics_ListCoverageBucketsResponse extends Google_Collect
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_ListDatasetsResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'datasets';
|
||||
@@ -2137,6 +2169,7 @@ class Google_Service_Genomics_ListDatasetsResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_ListOperationsResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'operations';
|
||||
@@ -2165,6 +2198,7 @@ class Google_Service_Genomics_ListOperationsResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_Operation extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2219,6 +2253,7 @@ class Google_Service_Genomics_Operation extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_OperationEvent extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2236,6 +2271,7 @@ class Google_Service_Genomics_OperationEvent extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_OperationMetadata extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'events';
|
||||
@@ -2282,14 +2318,17 @@ class Google_Service_Genomics_OperationMetadata extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_OperationMetadataRequest extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_OperationResponse extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_Policy extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'bindings';
|
||||
@@ -2327,6 +2366,7 @@ class Google_Service_Genomics_Policy extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_Position extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2362,6 +2402,7 @@ class Google_Service_Genomics_Position extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_Program extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2415,6 +2456,7 @@ class Google_Service_Genomics_Program extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_Range extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2450,6 +2492,7 @@ class Google_Service_Genomics_Range extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_Read extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'alignedQuality';
|
||||
@@ -2614,6 +2657,7 @@ class Google_Service_Genomics_Read extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_ReadGroup extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'programs';
|
||||
@@ -2715,10 +2759,12 @@ class Google_Service_Genomics_ReadGroup extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_ReadGroupInfo extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_ReadGroupSet extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'readGroups';
|
||||
@@ -2792,14 +2838,17 @@ class Google_Service_Genomics_ReadGroupSet extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_ReadGroupSetInfo extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_ReadInfo extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_Reference extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'sourceAccessions';
|
||||
@@ -2872,6 +2921,7 @@ class Google_Service_Genomics_Reference extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_ReferenceBound extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2898,6 +2948,7 @@ class Google_Service_Genomics_ReferenceBound extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_ReferenceSet extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'sourceAccessions';
|
||||
@@ -2979,6 +3030,7 @@ class Google_Service_Genomics_ReferenceSet extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_SearchCallSetsRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'variantSetIds';
|
||||
@@ -3024,6 +3076,7 @@ class Google_Service_Genomics_SearchCallSetsRequest extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_SearchCallSetsResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'callSets';
|
||||
@@ -3052,6 +3105,7 @@ class Google_Service_Genomics_SearchCallSetsResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_SearchReadGroupSetsRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'datasetIds';
|
||||
@@ -3097,6 +3151,7 @@ class Google_Service_Genomics_SearchReadGroupSetsRequest extends Google_Collecti
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_SearchReadGroupSetsResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'readGroupSets';
|
||||
@@ -3125,6 +3180,7 @@ class Google_Service_Genomics_SearchReadGroupSetsResponse extends Google_Collect
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_SearchReadsRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'readGroupSetIds';
|
||||
@@ -3197,6 +3253,7 @@ class Google_Service_Genomics_SearchReadsRequest extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_SearchReadsResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'alignments';
|
||||
@@ -3225,6 +3282,7 @@ class Google_Service_Genomics_SearchReadsResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_SearchReferenceSetsRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'md5checksums';
|
||||
@@ -3279,6 +3337,7 @@ class Google_Service_Genomics_SearchReferenceSetsRequest extends Google_Collecti
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_SearchReferenceSetsResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'referenceSets';
|
||||
@@ -3307,6 +3366,7 @@ class Google_Service_Genomics_SearchReferenceSetsResponse extends Google_Collect
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_SearchReferencesRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'md5checksums';
|
||||
@@ -3361,6 +3421,7 @@ class Google_Service_Genomics_SearchReferencesRequest extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_SearchReferencesResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'references';
|
||||
@@ -3389,6 +3450,7 @@ class Google_Service_Genomics_SearchReferencesResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_SearchVariantSetsRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'datasetIds';
|
||||
@@ -3425,6 +3487,7 @@ class Google_Service_Genomics_SearchVariantSetsRequest extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_SearchVariantSetsResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'variantSets';
|
||||
@@ -3453,6 +3516,7 @@ class Google_Service_Genomics_SearchVariantSetsResponse extends Google_Collectio
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_SearchVariantsRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'variantSetIds';
|
||||
@@ -3543,6 +3607,7 @@ class Google_Service_Genomics_SearchVariantsRequest extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_SearchVariantsResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'variants';
|
||||
@@ -3571,6 +3636,7 @@ class Google_Service_Genomics_SearchVariantsResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_SetIamPolicyRequest extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3589,6 +3655,7 @@ class Google_Service_Genomics_SetIamPolicyRequest extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_Status extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'details';
|
||||
@@ -3625,10 +3692,12 @@ class Google_Service_Genomics_Status extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_StatusDetails extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_TestIamPermissionsRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'permissions';
|
||||
@@ -3647,6 +3716,7 @@ class Google_Service_Genomics_TestIamPermissionsRequest extends Google_Collectio
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_TestIamPermissionsResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'permissions';
|
||||
@@ -3665,10 +3735,12 @@ class Google_Service_Genomics_TestIamPermissionsResponse extends Google_Collecti
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_UndeleteDatasetRequest extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_Variant extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'names';
|
||||
@@ -3796,6 +3868,7 @@ class Google_Service_Genomics_Variant extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_VariantCall extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'genotypeLikelihood';
|
||||
@@ -3859,14 +3932,17 @@ class Google_Service_Genomics_VariantCall extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_VariantCallInfo extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_VariantInfo extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_VariantSet extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'referenceBounds';
|
||||
@@ -3914,6 +3990,7 @@ class Google_Service_Genomics_VariantSet extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_VariantSetMetadata extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3985,6 +4062,7 @@ class Google_Service_Genomics_VariantSetMetadata extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Genomics_VariantSetMetadataInfo extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
@@ -28,6 +28,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Gmail extends Google_Service
|
||||
{
|
||||
/** View and manage your mail. */
|
||||
@@ -683,6 +684,7 @@ class Google_Service_Gmail extends Google_Service
|
||||
* $users = $gmailService->users;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Gmail_Users_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -741,6 +743,7 @@ class Google_Service_Gmail_Users_Resource extends Google_Service_Resource
|
||||
* $drafts = $gmailService->drafts;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Gmail_UsersDrafts_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -855,6 +858,7 @@ class Google_Service_Gmail_UsersDrafts_Resource extends Google_Service_Resource
|
||||
* $history = $gmailService->history;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Gmail_UsersHistory_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -899,6 +903,7 @@ class Google_Service_Gmail_UsersHistory_Resource extends Google_Service_Resource
|
||||
* $labels = $gmailService->labels;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Gmail_UsersLabels_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1008,6 +1013,7 @@ class Google_Service_Gmail_UsersLabels_Resource extends Google_Service_Resource
|
||||
* $messages = $gmailService->messages;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Gmail_UsersMessages_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1200,6 +1206,7 @@ class Google_Service_Gmail_UsersMessages_Resource extends Google_Service_Resourc
|
||||
* $attachments = $gmailService->attachments;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Gmail_UsersMessagesAttachments_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1228,6 +1235,7 @@ class Google_Service_Gmail_UsersMessagesAttachments_Resource extends Google_Serv
|
||||
* $threads = $gmailService->threads;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Gmail_UsersThreads_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1347,6 +1355,7 @@ class Google_Service_Gmail_UsersThreads_Resource extends Google_Service_Resource
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Gmail_Draft extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1374,6 +1383,7 @@ class Google_Service_Gmail_Draft extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Gmail_History extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'messagesDeleted';
|
||||
@@ -1442,6 +1452,7 @@ class Google_Service_Gmail_History extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Gmail_HistoryLabelAdded extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'labelIds';
|
||||
@@ -1470,6 +1481,7 @@ class Google_Service_Gmail_HistoryLabelAdded extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Gmail_HistoryLabelRemoved extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'labelIds';
|
||||
@@ -1498,6 +1510,7 @@ class Google_Service_Gmail_HistoryLabelRemoved extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Gmail_HistoryMessageAdded extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1516,6 +1529,7 @@ class Google_Service_Gmail_HistoryMessageAdded extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Gmail_HistoryMessageDeleted extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1534,6 +1548,7 @@ class Google_Service_Gmail_HistoryMessageDeleted extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Gmail_Label extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1623,6 +1638,7 @@ class Google_Service_Gmail_Label extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Gmail_ListDraftsResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'drafts';
|
||||
@@ -1660,6 +1676,7 @@ class Google_Service_Gmail_ListDraftsResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Gmail_ListHistoryResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'history';
|
||||
@@ -1697,6 +1714,7 @@ class Google_Service_Gmail_ListHistoryResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Gmail_ListLabelsResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'labels';
|
||||
@@ -1716,6 +1734,7 @@ class Google_Service_Gmail_ListLabelsResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Gmail_ListMessagesResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'messages';
|
||||
@@ -1753,6 +1772,7 @@ class Google_Service_Gmail_ListMessagesResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Gmail_ListThreadsResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'threads';
|
||||
@@ -1790,6 +1810,7 @@ class Google_Service_Gmail_ListThreadsResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Gmail_Message extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'labelIds';
|
||||
@@ -1881,6 +1902,7 @@ class Google_Service_Gmail_Message extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Gmail_MessagePart extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'parts';
|
||||
@@ -1947,6 +1969,7 @@ class Google_Service_Gmail_MessagePart extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Gmail_MessagePartBody extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1982,6 +2005,7 @@ class Google_Service_Gmail_MessagePartBody extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Gmail_MessagePartHeader extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2008,6 +2032,7 @@ class Google_Service_Gmail_MessagePartHeader extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Gmail_ModifyMessageRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'removeLabelIds';
|
||||
@@ -2035,6 +2060,7 @@ class Google_Service_Gmail_ModifyMessageRequest extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Gmail_ModifyThreadRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'removeLabelIds';
|
||||
@@ -2062,6 +2088,7 @@ class Google_Service_Gmail_ModifyThreadRequest extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Gmail_Profile extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2106,6 +2133,7 @@ class Google_Service_Gmail_Profile extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Gmail_Thread extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'messages';
|
||||
@@ -2152,6 +2180,7 @@ class Google_Service_Gmail_Thread extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Gmail_WatchRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'labelIds';
|
||||
@@ -2188,6 +2217,7 @@ class Google_Service_Gmail_WatchRequest extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Gmail_WatchResponse extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
|
||||
@@ -28,6 +28,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_GroupsMigration extends Google_Service
|
||||
{
|
||||
/** Manage messages in groups on your domain. */
|
||||
@@ -82,6 +83,7 @@ class Google_Service_GroupsMigration extends Google_Service
|
||||
* $archive = $groupsmigrationService->archive;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_GroupsMigration_Archive_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -103,6 +105,7 @@ class Google_Service_GroupsMigration_Archive_Resource extends Google_Service_Res
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_GroupsMigration_Groups extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
|
||||
@@ -28,6 +28,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Groupssettings extends Google_Service
|
||||
{
|
||||
/** View and manage the settings of a Google Apps Group. */
|
||||
@@ -102,6 +103,7 @@ class Google_Service_Groupssettings extends Google_Service
|
||||
* $groups = $groupssettingsService->groups;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Groupssettings_Groups_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -154,6 +156,7 @@ class Google_Service_Groupssettings_Groups_Resource extends Google_Service_Resou
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Groupssettings_Groups extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
|
||||
@@ -28,6 +28,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_IdentityToolkit extends Google_Service
|
||||
{
|
||||
|
||||
@@ -118,6 +119,7 @@ class Google_Service_IdentityToolkit extends Google_Service
|
||||
* $relyingparty = $identitytoolkitService->relyingparty;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_IdentityToolkit_Relyingparty_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -293,6 +295,7 @@ class Google_Service_IdentityToolkit_Relyingparty_Resource extends Google_Servic
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_IdentityToolkit_CreateAuthUriResponse extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -355,6 +358,7 @@ class Google_Service_IdentityToolkit_CreateAuthUriResponse extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_IdentityToolkit_DeleteAccountResponse extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -372,6 +376,7 @@ class Google_Service_IdentityToolkit_DeleteAccountResponse extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_IdentityToolkit_DownloadAccountResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'users';
|
||||
@@ -409,6 +414,7 @@ class Google_Service_IdentityToolkit_DownloadAccountResponse extends Google_Coll
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_IdentityToolkit_GetAccountInfoResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'users';
|
||||
@@ -437,6 +443,7 @@ class Google_Service_IdentityToolkit_GetAccountInfoResponse extends Google_Colle
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_IdentityToolkit_GetOobConfirmationCodeResponse extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -463,6 +470,7 @@ class Google_Service_IdentityToolkit_GetOobConfirmationCodeResponse extends Goog
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_IdentityToolkit_GetRecaptchaParamResponse extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -498,6 +506,7 @@ class Google_Service_IdentityToolkit_GetRecaptchaParamResponse extends Google_Mo
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyCreateAuthUriRequest extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -596,6 +605,7 @@ class Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyCreateAuthUriReq
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyDeleteAccountRequest extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -613,6 +623,7 @@ class Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyDeleteAccountReq
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyDownloadAccountRequest extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -639,6 +650,7 @@ class Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyDownloadAccountR
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyGetAccountInfoRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'localId';
|
||||
@@ -675,10 +687,12 @@ class Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyGetAccountInfoRe
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyGetPublicKeysResponse extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyResetPasswordRequest extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -723,6 +737,7 @@ class Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyResetPasswordReq
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartySetAccountInfoRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'provider';
|
||||
@@ -849,6 +864,7 @@ class Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartySetAccountInfoRe
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyUploadAccountRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'users';
|
||||
@@ -913,6 +929,7 @@ class Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyUploadAccountReq
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyVerifyAssertionRequest extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -957,6 +974,7 @@ class Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyVerifyAssertionR
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyVerifyPasswordRequest extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1010,6 +1028,7 @@ class Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyVerifyPasswordRe
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_IdentityToolkit_Relyingparty extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1090,6 +1109,7 @@ class Google_Service_IdentityToolkit_Relyingparty extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_IdentityToolkit_ResetPasswordResponse extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1116,6 +1136,7 @@ class Google_Service_IdentityToolkit_ResetPasswordResponse extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_IdentityToolkit_SetAccountInfoResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'providerUserInfo';
|
||||
@@ -1180,6 +1201,7 @@ class Google_Service_IdentityToolkit_SetAccountInfoResponse extends Google_Colle
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_IdentityToolkit_SetAccountInfoResponseProviderUserInfo extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1215,6 +1237,7 @@ class Google_Service_IdentityToolkit_SetAccountInfoResponseProviderUserInfo exte
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_IdentityToolkit_UploadAccountResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'error';
|
||||
@@ -1243,6 +1266,7 @@ class Google_Service_IdentityToolkit_UploadAccountResponse extends Google_Collec
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_IdentityToolkit_UploadAccountResponseError extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1269,6 +1293,7 @@ class Google_Service_IdentityToolkit_UploadAccountResponseError extends Google_M
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_IdentityToolkit_UserInfo extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'providerUserInfo';
|
||||
@@ -1387,6 +1412,7 @@ class Google_Service_IdentityToolkit_UserInfo extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_IdentityToolkit_UserInfoProviderUserInfo extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1431,6 +1457,7 @@ class Google_Service_IdentityToolkit_UserInfoProviderUserInfo extends Google_Mod
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_IdentityToolkit_VerifyAssertionResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'verifiedProvider';
|
||||
@@ -1719,6 +1746,7 @@ class Google_Service_IdentityToolkit_VerifyAssertionResponse extends Google_Coll
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_IdentityToolkit_VerifyPasswordResponse extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
|
||||
@@ -28,6 +28,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Licensing extends Google_Service
|
||||
{
|
||||
/** View and manage Google Apps licenses for your domain. */
|
||||
@@ -218,6 +219,7 @@ class Google_Service_Licensing extends Google_Service
|
||||
* $licenseAssignments = $licensingService->licenseAssignments;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Licensing_LicenseAssignments_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -353,6 +355,7 @@ class Google_Service_Licensing_LicenseAssignments_Resource extends Google_Servic
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Licensing_LicenseAssignment extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -415,6 +418,7 @@ class Google_Service_Licensing_LicenseAssignment extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Licensing_LicenseAssignmentInsert extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -432,6 +436,7 @@ class Google_Service_Licensing_LicenseAssignmentInsert extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Licensing_LicenseAssignmentList extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
|
||||
@@ -29,6 +29,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Logging extends Google_Service
|
||||
{
|
||||
|
||||
@@ -56,6 +57,7 @@ class Google_Service_Logging extends Google_Service
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Logging_LogLine extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -101,6 +103,7 @@ class Google_Service_Logging_LogLine extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Logging_RequestLog extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'sourceReference';
|
||||
@@ -391,6 +394,7 @@ class Google_Service_Logging_RequestLog extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Logging_SourceLocation extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -426,6 +430,7 @@ class Google_Service_Logging_SourceLocation extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Logging_SourceReference extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
|
||||
@@ -29,6 +29,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Manager extends Google_Service
|
||||
{
|
||||
/** View and manage your applications deployed on Google App Engine. */
|
||||
@@ -238,6 +239,7 @@ class Google_Service_Manager extends Google_Service
|
||||
* $deployments = $managerService->deployments;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Manager_Deployments_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -318,6 +320,7 @@ class Google_Service_Manager_Deployments_Resource extends Google_Service_Resourc
|
||||
* $templates = $managerService->templates;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Manager_Templates_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -389,6 +392,7 @@ class Google_Service_Manager_Templates_Resource extends Google_Service_Resource
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Manager_AccessConfig extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -424,6 +428,7 @@ class Google_Service_Manager_AccessConfig extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Manager_Action extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'commands';
|
||||
@@ -451,6 +456,7 @@ class Google_Service_Manager_Action extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Manager_AllowedRule extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'ports';
|
||||
@@ -479,6 +485,7 @@ class Google_Service_Manager_AllowedRule extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Manager_AutoscalingModule extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -550,6 +557,7 @@ class Google_Service_Manager_AutoscalingModule extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Manager_AutoscalingModuleStatus extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -567,6 +575,7 @@ class Google_Service_Manager_AutoscalingModuleStatus extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Manager_DeployState extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -593,6 +602,7 @@ class Google_Service_Manager_DeployState extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Manager_Deployment extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'overrides';
|
||||
@@ -668,10 +678,12 @@ class Google_Service_Manager_Deployment extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Manager_DeploymentModules extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Manager_DeploymentsListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'resources';
|
||||
@@ -700,6 +712,7 @@ class Google_Service_Manager_DeploymentsListResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Manager_DiskAttachment extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -726,6 +739,7 @@ class Google_Service_Manager_DiskAttachment extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Manager_EnvVariable extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -752,6 +766,7 @@ class Google_Service_Manager_EnvVariable extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Manager_ExistingDisk extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -779,6 +794,7 @@ class Google_Service_Manager_ExistingDisk extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Manager_FirewallModule extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'targetTags';
|
||||
@@ -843,6 +859,7 @@ class Google_Service_Manager_FirewallModule extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Manager_FirewallModuleStatus extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -860,6 +877,7 @@ class Google_Service_Manager_FirewallModuleStatus extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Manager_HealthCheckModule extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -940,6 +958,7 @@ class Google_Service_Manager_HealthCheckModule extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Manager_HealthCheckModuleStatus extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -957,6 +976,7 @@ class Google_Service_Manager_HealthCheckModuleStatus extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Manager_LbModule extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'targetModules';
|
||||
@@ -1029,6 +1049,7 @@ class Google_Service_Manager_LbModule extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Manager_LbModuleStatus extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1055,6 +1076,7 @@ class Google_Service_Manager_LbModuleStatus extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Manager_Metadata extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -1083,6 +1105,7 @@ class Google_Service_Manager_Metadata extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Manager_MetadataItem extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1109,6 +1132,7 @@ class Google_Service_Manager_MetadataItem extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Manager_Module extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1186,6 +1210,7 @@ class Google_Service_Manager_Module extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Manager_ModuleStatus extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1273,6 +1298,7 @@ class Google_Service_Manager_ModuleStatus extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Manager_NetworkInterface extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'accessConfigs';
|
||||
@@ -1319,6 +1345,7 @@ class Google_Service_Manager_NetworkInterface extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Manager_NetworkModule extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1355,6 +1382,7 @@ class Google_Service_Manager_NetworkModule extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Manager_NetworkModuleStatus extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1372,6 +1400,7 @@ class Google_Service_Manager_NetworkModuleStatus extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Manager_NewDisk extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1418,6 +1447,7 @@ class Google_Service_Manager_NewDisk extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Manager_NewDiskInitializeParams extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1453,6 +1483,7 @@ class Google_Service_Manager_NewDiskInitializeParams extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Manager_ParamOverride extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1479,6 +1510,7 @@ class Google_Service_Manager_ParamOverride extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Manager_ReplicaPoolModule extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'healthChecks';
|
||||
@@ -1535,10 +1567,12 @@ class Google_Service_Manager_ReplicaPoolModule extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Manager_ReplicaPoolModuleEnvVariables extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Manager_ReplicaPoolModuleStatus extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1565,6 +1599,7 @@ class Google_Service_Manager_ReplicaPoolModuleStatus extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Manager_ReplicaPoolParams extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1583,6 +1618,7 @@ class Google_Service_Manager_ReplicaPoolParams extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Manager_ReplicaPoolParamsV1Beta1 extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'serviceAccounts';
|
||||
@@ -1724,6 +1760,7 @@ class Google_Service_Manager_ReplicaPoolParamsV1Beta1 extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Manager_ServiceAccount extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'scopes';
|
||||
@@ -1751,6 +1788,7 @@ class Google_Service_Manager_ServiceAccount extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Manager_Tag extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -1778,6 +1816,7 @@ class Google_Service_Manager_Tag extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Manager_Template extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1824,14 +1863,17 @@ class Google_Service_Manager_Template extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Manager_TemplateActions extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Manager_TemplateModules extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Manager_TemplatesListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'resources';
|
||||
|
||||
@@ -29,6 +29,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine extends Google_Service
|
||||
{
|
||||
/** View and manage your Google My Maps data. */
|
||||
@@ -1524,6 +1525,7 @@ class Google_Service_MapsEngine extends Google_Service
|
||||
* $assets = $mapsengineService->assets;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_Assets_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1599,6 +1601,7 @@ class Google_Service_MapsEngine_Assets_Resource extends Google_Service_Resource
|
||||
* $parents = $mapsengineService->parents;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_AssetsParents_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1630,6 +1633,7 @@ class Google_Service_MapsEngine_AssetsParents_Resource extends Google_Service_Re
|
||||
* $permissions = $mapsengineService->permissions;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_AssetsPermissions_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1657,6 +1661,7 @@ class Google_Service_MapsEngine_AssetsPermissions_Resource extends Google_Servic
|
||||
* $layers = $mapsengineService->layers;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_Layers_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1879,6 +1884,7 @@ class Google_Service_MapsEngine_Layers_Resource extends Google_Service_Resource
|
||||
* $parents = $mapsengineService->parents;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_LayersParents_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1910,6 +1916,7 @@ class Google_Service_MapsEngine_LayersParents_Resource extends Google_Service_Re
|
||||
* $permissions = $mapsengineService->permissions;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_LayersPermissions_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -1971,6 +1978,7 @@ class Google_Service_MapsEngine_LayersPermissions_Resource extends Google_Servic
|
||||
* $maps = $mapsengineService->maps;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_Maps_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2161,6 +2169,7 @@ class Google_Service_MapsEngine_Maps_Resource extends Google_Service_Resource
|
||||
* $permissions = $mapsengineService->permissions;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_MapsPermissions_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2222,6 +2231,7 @@ class Google_Service_MapsEngine_MapsPermissions_Resource extends Google_Service_
|
||||
* $projects = $mapsengineService->projects;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_Projects_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2247,6 +2257,7 @@ class Google_Service_MapsEngine_Projects_Resource extends Google_Service_Resourc
|
||||
* $icons = $mapsengineService->icons;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_ProjectsIcons_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2309,6 +2320,7 @@ class Google_Service_MapsEngine_ProjectsIcons_Resource extends Google_Service_Re
|
||||
* $rasterCollections = $mapsengineService->rasterCollections;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_RasterCollections_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2456,6 +2468,7 @@ class Google_Service_MapsEngine_RasterCollections_Resource extends Google_Servic
|
||||
* $parents = $mapsengineService->parents;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_RasterCollectionsParents_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2489,6 +2502,7 @@ class Google_Service_MapsEngine_RasterCollectionsParents_Resource extends Google
|
||||
* $permissions = $mapsengineService->permissions;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_RasterCollectionsPermissions_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2549,6 +2563,7 @@ class Google_Service_MapsEngine_RasterCollectionsPermissions_Resource extends Go
|
||||
* $rasters = $mapsengineService->rasters;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_RasterCollectionsRasters_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2645,6 +2660,7 @@ class Google_Service_MapsEngine_RasterCollectionsRasters_Resource extends Google
|
||||
* $rasters = $mapsengineService->rasters;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_Rasters_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2775,6 +2791,7 @@ class Google_Service_MapsEngine_Rasters_Resource extends Google_Service_Resource
|
||||
* $files = $mapsengineService->files;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_RastersFiles_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2800,6 +2817,7 @@ class Google_Service_MapsEngine_RastersFiles_Resource extends Google_Service_Res
|
||||
* $parents = $mapsengineService->parents;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_RastersParents_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2831,6 +2849,7 @@ class Google_Service_MapsEngine_RastersParents_Resource extends Google_Service_R
|
||||
* $permissions = $mapsengineService->permissions;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_RastersPermissions_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -2892,6 +2911,7 @@ class Google_Service_MapsEngine_RastersPermissions_Resource extends Google_Servi
|
||||
* $tables = $mapsengineService->tables;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_Tables_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -3042,6 +3062,7 @@ class Google_Service_MapsEngine_Tables_Resource extends Google_Service_Resource
|
||||
* $features = $mapsengineService->features;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_TablesFeatures_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -3179,6 +3200,7 @@ class Google_Service_MapsEngine_TablesFeatures_Resource extends Google_Service_R
|
||||
* $files = $mapsengineService->files;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_TablesFiles_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -3207,6 +3229,7 @@ class Google_Service_MapsEngine_TablesFiles_Resource extends Google_Service_Reso
|
||||
* $parents = $mapsengineService->parents;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_TablesParents_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -3238,6 +3261,7 @@ class Google_Service_MapsEngine_TablesParents_Resource extends Google_Service_Re
|
||||
* $permissions = $mapsengineService->permissions;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_TablesPermissions_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -3294,6 +3318,7 @@ class Google_Service_MapsEngine_TablesPermissions_Resource extends Google_Servic
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_AcquisitionTime extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3329,6 +3354,7 @@ class Google_Service_MapsEngine_AcquisitionTime extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_Asset extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'tags';
|
||||
@@ -3464,6 +3490,7 @@ class Google_Service_MapsEngine_Asset extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_AssetsListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'assets';
|
||||
@@ -3492,6 +3519,7 @@ class Google_Service_MapsEngine_AssetsListResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_Border extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3527,6 +3555,7 @@ class Google_Service_MapsEngine_Border extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_Color extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3553,6 +3582,7 @@ class Google_Service_MapsEngine_Color extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_Datasource extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3570,6 +3600,7 @@ class Google_Service_MapsEngine_Datasource extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_DisplayRule extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'filters';
|
||||
@@ -3638,6 +3669,7 @@ class Google_Service_MapsEngine_DisplayRule extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_Feature extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3674,6 +3706,7 @@ class Google_Service_MapsEngine_Feature extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_FeatureInfo extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3691,6 +3724,7 @@ class Google_Service_MapsEngine_FeatureInfo extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_FeaturesBatchDeleteRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'primaryKeys';
|
||||
@@ -3719,6 +3753,7 @@ class Google_Service_MapsEngine_FeaturesBatchDeleteRequest extends Google_Collec
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_FeaturesBatchInsertRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'features';
|
||||
@@ -3747,6 +3782,7 @@ class Google_Service_MapsEngine_FeaturesBatchInsertRequest extends Google_Collec
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_FeaturesBatchPatchRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'features';
|
||||
@@ -3775,6 +3811,7 @@ class Google_Service_MapsEngine_FeaturesBatchPatchRequest extends Google_Collect
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_FeaturesListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'features';
|
||||
@@ -3831,6 +3868,7 @@ class Google_Service_MapsEngine_FeaturesListResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_Filter extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3866,6 +3904,7 @@ class Google_Service_MapsEngine_Filter extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_GeoJsonGeometry extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3883,6 +3922,7 @@ class Google_Service_MapsEngine_GeoJsonGeometry extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_GeoJsonGeometryCollection extends Google_Service_MapsEngine_GeoJsonGeometry
|
||||
{
|
||||
protected $collection_key = 'geometries';
|
||||
@@ -3905,6 +3945,7 @@ class Google_Service_MapsEngine_GeoJsonGeometryCollection extends Google_Service
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_GeoJsonLineString extends Google_Service_MapsEngine_GeoJsonGeometry
|
||||
{
|
||||
protected $collection_key = 'coordinates';
|
||||
@@ -3926,6 +3967,7 @@ class Google_Service_MapsEngine_GeoJsonLineString extends Google_Service_MapsEng
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_GeoJsonMultiLineString extends Google_Service_MapsEngine_GeoJsonGeometry
|
||||
{
|
||||
protected $collection_key = 'coordinates';
|
||||
@@ -3947,6 +3989,7 @@ class Google_Service_MapsEngine_GeoJsonMultiLineString extends Google_Service_Ma
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_GeoJsonMultiPoint extends Google_Service_MapsEngine_GeoJsonGeometry
|
||||
{
|
||||
protected $collection_key = 'coordinates';
|
||||
@@ -3968,6 +4011,7 @@ class Google_Service_MapsEngine_GeoJsonMultiPoint extends Google_Service_MapsEng
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_GeoJsonMultiPolygon extends Google_Service_MapsEngine_GeoJsonGeometry
|
||||
{
|
||||
protected $collection_key = 'coordinates';
|
||||
@@ -3989,6 +4033,7 @@ class Google_Service_MapsEngine_GeoJsonMultiPolygon extends Google_Service_MapsE
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_GeoJsonPoint extends Google_Service_MapsEngine_GeoJsonGeometry
|
||||
{
|
||||
protected $collection_key = 'coordinates';
|
||||
@@ -4010,6 +4055,7 @@ class Google_Service_MapsEngine_GeoJsonPoint extends Google_Service_MapsEngine_G
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_GeoJsonPolygon extends Google_Service_MapsEngine_GeoJsonGeometry
|
||||
{
|
||||
protected $collection_key = 'coordinates';
|
||||
@@ -4031,10 +4077,12 @@ class Google_Service_MapsEngine_GeoJsonPolygon extends Google_Service_MapsEngine
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_GeoJsonProperties extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_Icon extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -4070,6 +4118,7 @@ class Google_Service_MapsEngine_Icon extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_IconStyle extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -4116,6 +4165,7 @@ class Google_Service_MapsEngine_IconStyle extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_IconsListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'icons';
|
||||
@@ -4144,6 +4194,7 @@ class Google_Service_MapsEngine_IconsListResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_LabelStyle extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -4216,6 +4267,7 @@ class Google_Service_MapsEngine_LabelStyle extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_Layer extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'tags';
|
||||
@@ -4407,6 +4459,7 @@ class Google_Service_MapsEngine_Layer extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_LayersListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'layers';
|
||||
@@ -4435,6 +4488,7 @@ class Google_Service_MapsEngine_LayersListResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_LineStyle extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'dash';
|
||||
@@ -4483,6 +4537,7 @@ class Google_Service_MapsEngine_LineStyle extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_LineStyleStroke extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -4518,6 +4573,7 @@ class Google_Service_MapsEngine_LineStyleStroke extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_Map extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'versions';
|
||||
@@ -4699,6 +4755,7 @@ class Google_Service_MapsEngine_Map extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_MapFolder extends Google_Service_MapsEngine_MapItem
|
||||
{
|
||||
protected $collection_key = 'defaultViewport';
|
||||
@@ -4766,6 +4823,7 @@ class Google_Service_MapsEngine_MapFolder extends Google_Service_MapsEngine_MapI
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_MapItem extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -4783,6 +4841,7 @@ class Google_Service_MapsEngine_MapItem extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_MapKmlLink extends Google_Service_MapsEngine_MapItem
|
||||
{
|
||||
protected $collection_key = 'defaultViewport';
|
||||
@@ -4831,6 +4890,7 @@ class Google_Service_MapsEngine_MapKmlLink extends Google_Service_MapsEngine_Map
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_MapLayer extends Google_Service_MapsEngine_MapItem
|
||||
{
|
||||
protected $collection_key = 'defaultViewport';
|
||||
@@ -4888,6 +4948,7 @@ class Google_Service_MapsEngine_MapLayer extends Google_Service_MapsEngine_MapIt
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_MapsListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'maps';
|
||||
@@ -4916,6 +4977,7 @@ class Google_Service_MapsEngine_MapsListResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_MapsengineFile extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -4951,6 +5013,7 @@ class Google_Service_MapsEngine_MapsengineFile extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_Parent extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -4968,6 +5031,7 @@ class Google_Service_MapsEngine_Parent extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_ParentsListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'parents';
|
||||
@@ -4996,6 +5060,7 @@ class Google_Service_MapsEngine_ParentsListResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_Permission extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5040,6 +5105,7 @@ class Google_Service_MapsEngine_Permission extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_PermissionsBatchDeleteRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'ids';
|
||||
@@ -5058,10 +5124,12 @@ class Google_Service_MapsEngine_PermissionsBatchDeleteRequest extends Google_Col
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_PermissionsBatchDeleteResponse extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_PermissionsBatchUpdateRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'permissions';
|
||||
@@ -5081,10 +5149,12 @@ class Google_Service_MapsEngine_PermissionsBatchUpdateRequest extends Google_Col
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_PermissionsBatchUpdateResponse extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_PermissionsListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'permissions';
|
||||
@@ -5104,6 +5174,7 @@ class Google_Service_MapsEngine_PermissionsListResponse extends Google_Collectio
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_PointStyle extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5132,6 +5203,7 @@ class Google_Service_MapsEngine_PointStyle extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_PolygonStyle extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5170,10 +5242,12 @@ class Google_Service_MapsEngine_PolygonStyle extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_ProcessResponse extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_Project extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5200,6 +5274,7 @@ class Google_Service_MapsEngine_Project extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_ProjectsListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'projects';
|
||||
@@ -5219,10 +5294,12 @@ class Google_Service_MapsEngine_ProjectsListResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_PublishResponse extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_PublishedLayer extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5276,6 +5353,7 @@ class Google_Service_MapsEngine_PublishedLayer extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_PublishedLayersListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'layers';
|
||||
@@ -5304,6 +5382,7 @@ class Google_Service_MapsEngine_PublishedLayersListResponse extends Google_Colle
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_PublishedMap extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5367,6 +5446,7 @@ class Google_Service_MapsEngine_PublishedMap extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_PublishedMapsListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'maps';
|
||||
@@ -5395,6 +5475,7 @@ class Google_Service_MapsEngine_PublishedMapsListResponse extends Google_Collect
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_Raster extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'files';
|
||||
@@ -5577,6 +5658,7 @@ class Google_Service_MapsEngine_Raster extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_RasterCollection extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'bbox';
|
||||
@@ -5739,6 +5821,7 @@ class Google_Service_MapsEngine_RasterCollection extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_RasterCollectionsListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'rasterCollections';
|
||||
@@ -5767,6 +5850,7 @@ class Google_Service_MapsEngine_RasterCollectionsListResponse extends Google_Col
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_RasterCollectionsRaster extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'tags';
|
||||
@@ -5857,6 +5941,7 @@ class Google_Service_MapsEngine_RasterCollectionsRaster extends Google_Collectio
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_RasterCollectionsRasterBatchDeleteRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'ids';
|
||||
@@ -5875,10 +5960,12 @@ class Google_Service_MapsEngine_RasterCollectionsRasterBatchDeleteRequest extend
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_RasterCollectionsRastersBatchDeleteResponse extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_RasterCollectionsRastersBatchInsertRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'ids';
|
||||
@@ -5897,10 +5984,12 @@ class Google_Service_MapsEngine_RasterCollectionsRastersBatchInsertRequest exten
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_RasterCollectionsRastersBatchInsertResponse extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_RasterCollectionsRastersListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'rasters';
|
||||
@@ -5929,6 +6018,7 @@ class Google_Service_MapsEngine_RasterCollectionsRastersListResponse extends Goo
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_RastersListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'rasters';
|
||||
@@ -5957,6 +6047,7 @@ class Google_Service_MapsEngine_RastersListResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_ScaledShape extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -5994,6 +6085,7 @@ class Google_Service_MapsEngine_ScaledShape extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_ScalingFunction extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -6040,6 +6132,7 @@ class Google_Service_MapsEngine_ScalingFunction extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_Schema extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'columns';
|
||||
@@ -6077,6 +6170,7 @@ class Google_Service_MapsEngine_Schema extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_SizeRange extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -6103,6 +6197,7 @@ class Google_Service_MapsEngine_SizeRange extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_Table extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'tags';
|
||||
@@ -6276,6 +6371,7 @@ class Google_Service_MapsEngine_Table extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_TableColumn extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -6302,6 +6398,7 @@ class Google_Service_MapsEngine_TableColumn extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_TablesListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'tables';
|
||||
@@ -6330,6 +6427,7 @@ class Google_Service_MapsEngine_TablesListResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_ValueRange extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -6356,6 +6454,7 @@ class Google_Service_MapsEngine_ValueRange extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_VectorStyle extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'displayRules';
|
||||
@@ -6394,6 +6493,7 @@ class Google_Service_MapsEngine_VectorStyle extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_MapsEngine_ZoomLevels extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
|
||||
@@ -28,6 +28,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Mirror extends Google_Service
|
||||
{
|
||||
/** View your location. */
|
||||
@@ -388,6 +389,7 @@ class Google_Service_Mirror extends Google_Service
|
||||
* $accounts = $mirrorService->accounts;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Mirror_Accounts_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -419,6 +421,7 @@ class Google_Service_Mirror_Accounts_Resource extends Google_Service_Resource
|
||||
* $contacts = $mirrorService->contacts;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Mirror_Contacts_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -517,6 +520,7 @@ class Google_Service_Mirror_Contacts_Resource extends Google_Service_Resource
|
||||
* $locations = $mirrorService->locations;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Mirror_Locations_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -557,6 +561,7 @@ class Google_Service_Mirror_Locations_Resource extends Google_Service_Resource
|
||||
* $settings = $mirrorService->settings;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Mirror_Settings_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -587,6 +592,7 @@ class Google_Service_Mirror_Settings_Resource extends Google_Service_Resource
|
||||
* $subscriptions = $mirrorService->subscriptions;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Mirror_Subscriptions_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -655,6 +661,7 @@ class Google_Service_Mirror_Subscriptions_Resource extends Google_Service_Resour
|
||||
* $timeline = $mirrorService->timeline;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Mirror_Timeline_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -766,6 +773,7 @@ class Google_Service_Mirror_Timeline_Resource extends Google_Service_Resource
|
||||
* $attachments = $mirrorService->attachments;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Mirror_TimelineAttachments_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -833,6 +841,7 @@ class Google_Service_Mirror_TimelineAttachments_Resource extends Google_Service_
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Mirror_Account extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'userData';
|
||||
@@ -880,6 +889,7 @@ class Google_Service_Mirror_Account extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Mirror_Attachment extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -924,6 +934,7 @@ class Google_Service_Mirror_Attachment extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Mirror_AttachmentsListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -952,6 +963,7 @@ class Google_Service_Mirror_AttachmentsListResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Mirror_AuthToken extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -978,6 +990,7 @@ class Google_Service_Mirror_AuthToken extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Mirror_Command extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -995,6 +1008,7 @@ class Google_Service_Mirror_Command extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Mirror_Contact extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'sharingFeatures';
|
||||
@@ -1113,6 +1127,7 @@ class Google_Service_Mirror_Contact extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Mirror_ContactsListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -1141,6 +1156,7 @@ class Google_Service_Mirror_ContactsListResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Mirror_Location extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1221,6 +1237,7 @@ class Google_Service_Mirror_Location extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Mirror_LocationsListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -1249,6 +1266,7 @@ class Google_Service_Mirror_LocationsListResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Mirror_MenuItem extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'values';
|
||||
@@ -1314,6 +1332,7 @@ class Google_Service_Mirror_MenuItem extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Mirror_MenuValue extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1349,6 +1368,7 @@ class Google_Service_Mirror_MenuValue extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Mirror_Notification extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'userActions';
|
||||
@@ -1413,6 +1433,7 @@ class Google_Service_Mirror_Notification extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Mirror_NotificationConfig extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1439,6 +1460,7 @@ class Google_Service_Mirror_NotificationConfig extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Mirror_Setting extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1474,6 +1496,7 @@ class Google_Service_Mirror_Setting extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Mirror_Subscription extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'operation';
|
||||
@@ -1565,6 +1588,7 @@ class Google_Service_Mirror_Subscription extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Mirror_SubscriptionsListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -1593,6 +1617,7 @@ class Google_Service_Mirror_SubscriptionsListResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Mirror_TimelineItem extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'recipients';
|
||||
@@ -1842,6 +1867,7 @@ class Google_Service_Mirror_TimelineItem extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Mirror_TimelineListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -1879,6 +1905,7 @@ class Google_Service_Mirror_TimelineListResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Mirror_UserAction extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1905,6 +1932,7 @@ class Google_Service_Mirror_UserAction extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Mirror_UserData extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
|
||||
@@ -28,6 +28,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Oauth2 extends Google_Service
|
||||
{
|
||||
/** Know your basic profile info and list of people in your circles.. */
|
||||
@@ -159,6 +160,7 @@ class Google_Service_Oauth2 extends Google_Service
|
||||
* $userinfo = $oauth2Service->userinfo;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Oauth2_Userinfo_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -184,6 +186,7 @@ class Google_Service_Oauth2_Userinfo_Resource extends Google_Service_Resource
|
||||
* $v2 = $oauth2Service->v2;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Oauth2_UserinfoV2_Resource extends Google_Service_Resource
|
||||
{
|
||||
}
|
||||
@@ -196,6 +199,7 @@ class Google_Service_Oauth2_UserinfoV2_Resource extends Google_Service_Resource
|
||||
* $me = $oauth2Service->me;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Oauth2_UserinfoV2Me_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -216,6 +220,7 @@ class Google_Service_Oauth2_UserinfoV2Me_Resource extends Google_Service_Resourc
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Oauth2_Jwk extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'keys';
|
||||
@@ -235,6 +240,7 @@ class Google_Service_Oauth2_Jwk extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Oauth2_JwkKeys extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -297,6 +303,7 @@ class Google_Service_Oauth2_JwkKeys extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Oauth2_Tokeninfo extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -392,6 +399,7 @@ class Google_Service_Oauth2_Tokeninfo extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Oauth2_Userinfoplus extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
|
||||
@@ -29,6 +29,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Pagespeedonline extends Google_Service
|
||||
{
|
||||
|
||||
@@ -102,6 +103,7 @@ class Google_Service_Pagespeedonline extends Google_Service
|
||||
* $pagespeedapi = $pagespeedonlineService->pagespeedapi;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Pagespeedonline_Pagespeedapi_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -134,6 +136,7 @@ class Google_Service_Pagespeedonline_Pagespeedapi_Resource extends Google_Servic
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Pagespeedonline_PagespeedApiFormatStringV2 extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'args';
|
||||
@@ -162,6 +165,7 @@ class Google_Service_Pagespeedonline_PagespeedApiFormatStringV2 extends Google_C
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Pagespeedonline_PagespeedApiFormatStringV2Args extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'secondary_rects';
|
||||
@@ -219,6 +223,7 @@ class Google_Service_Pagespeedonline_PagespeedApiFormatStringV2Args extends Goog
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Pagespeedonline_PagespeedApiFormatStringV2ArgsRects extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -263,6 +268,7 @@ class Google_Service_Pagespeedonline_PagespeedApiFormatStringV2ArgsRects extends
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Pagespeedonline_PagespeedApiFormatStringV2ArgsSecondaryRects extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -307,6 +313,7 @@ class Google_Service_Pagespeedonline_PagespeedApiFormatStringV2ArgsSecondaryRect
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Pagespeedonline_PagespeedApiImageV2 extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -372,6 +379,7 @@ class Google_Service_Pagespeedonline_PagespeedApiImageV2 extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Pagespeedonline_PagespeedApiImageV2PageRect extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -416,6 +424,7 @@ class Google_Service_Pagespeedonline_PagespeedApiImageV2PageRect extends Google_
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Pagespeedonline_Result extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'invalidRules';
|
||||
@@ -520,6 +529,7 @@ class Google_Service_Pagespeedonline_Result extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Pagespeedonline_ResultFormattedResults extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -547,10 +557,12 @@ class Google_Service_Pagespeedonline_ResultFormattedResults extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Pagespeedonline_ResultFormattedResultsRuleResults extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Pagespeedonline_ResultFormattedResultsRuleResultsElement extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'urlBlocks';
|
||||
@@ -607,6 +619,7 @@ class Google_Service_Pagespeedonline_ResultFormattedResultsRuleResultsElement ex
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Pagespeedonline_ResultFormattedResultsRuleResultsElementUrlBlocks extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'urls';
|
||||
@@ -636,6 +649,7 @@ class Google_Service_Pagespeedonline_ResultFormattedResultsRuleResultsElementUrl
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Pagespeedonline_ResultFormattedResultsRuleResultsElementUrlBlocksUrls extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'details';
|
||||
@@ -665,6 +679,7 @@ class Google_Service_Pagespeedonline_ResultFormattedResultsRuleResultsElementUrl
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Pagespeedonline_ResultPageStats extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -790,10 +805,12 @@ class Google_Service_Pagespeedonline_ResultPageStats extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Pagespeedonline_ResultRuleGroups extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Pagespeedonline_ResultRuleGroupsElement extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -811,6 +828,7 @@ class Google_Service_Pagespeedonline_ResultRuleGroupsElement extends Google_Mode
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Pagespeedonline_ResultVersion extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
|
||||
@@ -29,6 +29,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Partners extends Google_Service
|
||||
{
|
||||
|
||||
@@ -328,6 +329,7 @@ class Google_Service_Partners extends Google_Service
|
||||
* $clientMessages = $partnersService->clientMessages;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Partners_ClientMessages_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -356,6 +358,7 @@ class Google_Service_Partners_ClientMessages_Resource extends Google_Service_Res
|
||||
* $companies = $partnersService->companies;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Partners_Companies_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -486,6 +489,7 @@ class Google_Service_Partners_Companies_Resource extends Google_Service_Resource
|
||||
* $leads = $partnersService->leads;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Partners_CompaniesLeads_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -513,6 +517,7 @@ class Google_Service_Partners_CompaniesLeads_Resource extends Google_Service_Res
|
||||
* $userEvents = $partnersService->userEvents;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Partners_UserEvents_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -539,6 +544,7 @@ class Google_Service_Partners_UserEvents_Resource extends Google_Service_Resourc
|
||||
* $userStates = $partnersService->userStates;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Partners_UserStates_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -576,6 +582,7 @@ class Google_Service_Partners_UserStates_Resource extends Google_Service_Resourc
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Partners_CertificationExamStatus extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -602,6 +609,7 @@ class Google_Service_Partners_CertificationExamStatus extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Partners_CertificationStatus extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'examStatuses';
|
||||
@@ -639,6 +647,7 @@ class Google_Service_Partners_CertificationStatus extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Partners_Company extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'services';
|
||||
@@ -763,6 +772,7 @@ class Google_Service_Partners_Company extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Partners_CreateLeadRequest extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -801,6 +811,7 @@ class Google_Service_Partners_CreateLeadRequest extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Partners_CreateLeadResponse extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -838,6 +849,7 @@ class Google_Service_Partners_CreateLeadResponse extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Partners_DebugInfo extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -873,6 +885,7 @@ class Google_Service_Partners_DebugInfo extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Partners_EventData extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'values';
|
||||
@@ -900,6 +913,7 @@ class Google_Service_Partners_EventData extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Partners_GetCompanyResponse extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -928,6 +942,7 @@ class Google_Service_Partners_GetCompanyResponse extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Partners_LatLng extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -954,6 +969,7 @@ class Google_Service_Partners_LatLng extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Partners_Lead extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'gpsMotivations';
|
||||
@@ -1054,6 +1070,7 @@ class Google_Service_Partners_Lead extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Partners_ListCompaniesResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'companies';
|
||||
@@ -1092,6 +1109,7 @@ class Google_Service_Partners_ListCompaniesResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Partners_ListUserStatesResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'userStates';
|
||||
@@ -1120,6 +1138,7 @@ class Google_Service_Partners_ListUserStatesResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Partners_LocalizedCompanyInfo extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'countryCodes';
|
||||
@@ -1165,6 +1184,7 @@ class Google_Service_Partners_LocalizedCompanyInfo extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Partners_Location extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1192,6 +1212,7 @@ class Google_Service_Partners_Location extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Partners_LogMessageRequest extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1237,10 +1258,12 @@ class Google_Service_Partners_LogMessageRequest extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Partners_LogMessageRequestClientInfo extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Partners_LogMessageResponse extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1259,6 +1282,7 @@ class Google_Service_Partners_LogMessageResponse extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Partners_LogUserEventRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'eventDatas';
|
||||
@@ -1334,6 +1358,7 @@ class Google_Service_Partners_LogUserEventRequest extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Partners_LogUserEventResponse extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1352,6 +1377,7 @@ class Google_Service_Partners_LogUserEventResponse extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Partners_Money extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1387,6 +1413,7 @@ class Google_Service_Partners_Money extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Partners_PublicProfile extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1431,6 +1458,7 @@ class Google_Service_Partners_PublicProfile extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Partners_Rank extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1457,6 +1485,7 @@ class Google_Service_Partners_Rank extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Partners_RecaptchaChallenge extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1483,6 +1512,7 @@ class Google_Service_Partners_RecaptchaChallenge extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Partners_RequestMetadata extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'experimentIds';
|
||||
@@ -1539,6 +1569,7 @@ class Google_Service_Partners_RequestMetadata extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Partners_ResponseMetadata extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1557,6 +1588,7 @@ class Google_Service_Partners_ResponseMetadata extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Partners_TrafficSource extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1583,6 +1615,7 @@ class Google_Service_Partners_TrafficSource extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Partners_UserOverrides extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
|
||||
@@ -28,6 +28,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Playmoviespartner extends Google_Service
|
||||
{
|
||||
/** View the digital assets you publish on Google Play Movies and TV. */
|
||||
@@ -348,6 +349,7 @@ class Google_Service_Playmoviespartner extends Google_Service
|
||||
* $accounts = $playmoviespartnerService->accounts;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Playmoviespartner_Accounts_Resource extends Google_Service_Resource
|
||||
{
|
||||
}
|
||||
@@ -360,6 +362,7 @@ class Google_Service_Playmoviespartner_Accounts_Resource extends Google_Service_
|
||||
* $avails = $playmoviespartnerService->avails;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Playmoviespartner_AccountsAvails_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -405,6 +408,7 @@ class Google_Service_Playmoviespartner_AccountsAvails_Resource extends Google_Se
|
||||
* $experienceLocales = $playmoviespartnerService->experienceLocales;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Playmoviespartner_AccountsExperienceLocales_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -469,6 +473,7 @@ class Google_Service_Playmoviespartner_AccountsExperienceLocales_Resource extend
|
||||
* $orders = $playmoviespartnerService->orders;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Playmoviespartner_AccountsOrders_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -527,6 +532,7 @@ class Google_Service_Playmoviespartner_AccountsOrders_Resource extends Google_Se
|
||||
* $storeInfos = $playmoviespartnerService->storeInfos;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Playmoviespartner_AccountsStoreInfos_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -574,6 +580,7 @@ class Google_Service_Playmoviespartner_AccountsStoreInfos_Resource extends Googl
|
||||
* $country = $playmoviespartnerService->country;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Playmoviespartner_AccountsStoreInfosCountry_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -600,6 +607,7 @@ class Google_Service_Playmoviespartner_AccountsStoreInfosCountry_Resource extend
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Playmoviespartner_Avail extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'pphNames';
|
||||
@@ -897,6 +905,7 @@ class Google_Service_Playmoviespartner_Avail extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Playmoviespartner_ExperienceLocale extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'pphNames';
|
||||
@@ -1113,6 +1122,7 @@ class Google_Service_Playmoviespartner_ExperienceLocale extends Google_Collectio
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Playmoviespartner_ListAvailsResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'avails';
|
||||
@@ -1141,6 +1151,7 @@ class Google_Service_Playmoviespartner_ListAvailsResponse extends Google_Collect
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Playmoviespartner_ListExperienceLocalesResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'experienceLocales';
|
||||
@@ -1169,6 +1180,7 @@ class Google_Service_Playmoviespartner_ListExperienceLocalesResponse extends Goo
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Playmoviespartner_ListOrdersResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'orders';
|
||||
@@ -1197,6 +1209,7 @@ class Google_Service_Playmoviespartner_ListOrdersResponse extends Google_Collect
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Playmoviespartner_ListStoreInfosResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'storeInfos';
|
||||
@@ -1225,6 +1238,7 @@ class Google_Service_Playmoviespartner_ListStoreInfosResponse extends Google_Col
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Playmoviespartner_Order extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'countries';
|
||||
@@ -1441,6 +1455,7 @@ class Google_Service_Playmoviespartner_Order extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Playmoviespartner_StoreInfo extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'subtitles';
|
||||
|
||||
@@ -28,6 +28,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Plus extends Google_Service
|
||||
{
|
||||
/** Know your basic profile info and list of people in your circles.. */
|
||||
@@ -337,6 +338,7 @@ class Google_Service_Plus extends Google_Service
|
||||
* $activities = $plusService->activities;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Plus_Activities_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -412,6 +414,7 @@ class Google_Service_Plus_Activities_Resource extends Google_Service_Resource
|
||||
* $comments = $plusService->comments;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Plus_Comments_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -460,6 +463,7 @@ class Google_Service_Plus_Comments_Resource extends Google_Service_Resource
|
||||
* $moments = $plusService->moments;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Plus_Moments_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -519,6 +523,7 @@ class Google_Service_Plus_Moments_Resource extends Google_Service_Resource
|
||||
* $people = $plusService->people;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Plus_People_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -616,6 +621,7 @@ class Google_Service_Plus_People_Resource extends Google_Service_Resource
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Plus_Acl extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -653,6 +659,7 @@ class Google_Service_Plus_Acl extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Plus_Activity extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -846,6 +853,7 @@ class Google_Service_Plus_Activity extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Plus_ActivityActor extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -921,6 +929,7 @@ class Google_Service_Plus_ActivityActor extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Plus_ActivityActorClientSpecificActorInfo extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -939,6 +948,7 @@ class Google_Service_Plus_ActivityActorClientSpecificActorInfo extends Google_Mo
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Plus_ActivityActorClientSpecificActorInfoYoutubeActorInfo extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -956,6 +966,7 @@ class Google_Service_Plus_ActivityActorClientSpecificActorInfoYoutubeActorInfo e
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Plus_ActivityActorImage extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -973,6 +984,7 @@ class Google_Service_Plus_ActivityActorImage extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Plus_ActivityActorName extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -999,6 +1011,7 @@ class Google_Service_Plus_ActivityActorName extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Plus_ActivityActorVerification extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1016,6 +1029,7 @@ class Google_Service_Plus_ActivityActorVerification extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Plus_ActivityFeed extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -1107,6 +1121,7 @@ class Google_Service_Plus_ActivityFeed extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Plus_ActivityObject extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'attachments';
|
||||
@@ -1211,6 +1226,7 @@ class Google_Service_Plus_ActivityObject extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Plus_ActivityObjectActor extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1276,6 +1292,7 @@ class Google_Service_Plus_ActivityObjectActor extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Plus_ActivityObjectActorClientSpecificActorInfo extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1294,6 +1311,7 @@ class Google_Service_Plus_ActivityObjectActorClientSpecificActorInfo extends Goo
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Plus_ActivityObjectActorClientSpecificActorInfoYoutubeActorInfo extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1311,6 +1329,7 @@ class Google_Service_Plus_ActivityObjectActorClientSpecificActorInfoYoutubeActor
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Plus_ActivityObjectActorImage extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1328,6 +1347,7 @@ class Google_Service_Plus_ActivityObjectActorImage extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Plus_ActivityObjectActorVerification extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1345,6 +1365,7 @@ class Google_Service_Plus_ActivityObjectActorVerification extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Plus_ActivityObjectAttachments extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'thumbnails';
|
||||
@@ -1439,6 +1460,7 @@ class Google_Service_Plus_ActivityObjectAttachments extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Plus_ActivityObjectAttachmentsEmbed extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1465,6 +1487,7 @@ class Google_Service_Plus_ActivityObjectAttachmentsEmbed extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Plus_ActivityObjectAttachmentsFullImage extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1509,6 +1532,7 @@ class Google_Service_Plus_ActivityObjectAttachmentsFullImage extends Google_Mode
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Plus_ActivityObjectAttachmentsImage extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1553,6 +1577,7 @@ class Google_Service_Plus_ActivityObjectAttachmentsImage extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Plus_ActivityObjectAttachmentsThumbnails extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1589,6 +1614,7 @@ class Google_Service_Plus_ActivityObjectAttachmentsThumbnails extends Google_Mod
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Plus_ActivityObjectAttachmentsThumbnailsImage extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1633,6 +1659,7 @@ class Google_Service_Plus_ActivityObjectAttachmentsThumbnailsImage extends Googl
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Plus_ActivityObjectPlusoners extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1659,6 +1686,7 @@ class Google_Service_Plus_ActivityObjectPlusoners extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Plus_ActivityObjectReplies extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1685,6 +1713,7 @@ class Google_Service_Plus_ActivityObjectReplies extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Plus_ActivityObjectResharers extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1711,6 +1740,7 @@ class Google_Service_Plus_ActivityObjectResharers extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Plus_ActivityProvider extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1728,6 +1758,7 @@ class Google_Service_Plus_ActivityProvider extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Plus_Comment extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'inReplyTo';
|
||||
@@ -1840,6 +1871,7 @@ class Google_Service_Plus_Comment extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Plus_CommentActor extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1905,6 +1937,7 @@ class Google_Service_Plus_CommentActor extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Plus_CommentActorClientSpecificActorInfo extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1923,6 +1956,7 @@ class Google_Service_Plus_CommentActorClientSpecificActorInfo extends Google_Mod
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Plus_CommentActorClientSpecificActorInfoYoutubeActorInfo extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1940,6 +1974,7 @@ class Google_Service_Plus_CommentActorClientSpecificActorInfoYoutubeActorInfo ex
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Plus_CommentActorImage extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1957,6 +1992,7 @@ class Google_Service_Plus_CommentActorImage extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Plus_CommentActorVerification extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1974,6 +2010,7 @@ class Google_Service_Plus_CommentActorVerification extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Plus_CommentFeed extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -2056,6 +2093,7 @@ class Google_Service_Plus_CommentFeed extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Plus_CommentInReplyTo extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2082,6 +2120,7 @@ class Google_Service_Plus_CommentInReplyTo extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Plus_CommentObject extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2117,6 +2156,7 @@ class Google_Service_Plus_CommentObject extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Plus_CommentPlusoners extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2134,6 +2174,7 @@ class Google_Service_Plus_CommentPlusoners extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Plus_ItemScope extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'performers';
|
||||
@@ -2654,6 +2695,7 @@ class Google_Service_Plus_ItemScope extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Plus_Moment extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2728,6 +2770,7 @@ class Google_Service_Plus_Moment extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Plus_MomentsFeed extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -2810,6 +2853,7 @@ class Google_Service_Plus_MomentsFeed extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Plus_PeopleFeed extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -2883,6 +2927,7 @@ class Google_Service_Plus_PeopleFeed extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Plus_Person extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'urls';
|
||||
@@ -3170,6 +3215,7 @@ class Google_Service_Plus_Person extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Plus_PersonAgeRange extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3196,6 +3242,7 @@ class Google_Service_Plus_PersonAgeRange extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Plus_PersonCover extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3233,6 +3280,7 @@ class Google_Service_Plus_PersonCover extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Plus_PersonCoverCoverInfo extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3259,6 +3307,7 @@ class Google_Service_Plus_PersonCoverCoverInfo extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Plus_PersonCoverCoverPhoto extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3294,6 +3343,7 @@ class Google_Service_Plus_PersonCoverCoverPhoto extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Plus_PersonEmails extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3320,6 +3370,7 @@ class Google_Service_Plus_PersonEmails extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Plus_PersonImage extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3346,6 +3397,7 @@ class Google_Service_Plus_PersonImage extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Plus_PersonName extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3408,6 +3460,7 @@ class Google_Service_Plus_PersonName extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Plus_PersonOrganizations extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3497,6 +3550,7 @@ class Google_Service_Plus_PersonOrganizations extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Plus_PersonPlacesLived extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3523,6 +3577,7 @@ class Google_Service_Plus_PersonPlacesLived extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Plus_PersonUrls extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3558,6 +3613,7 @@ class Google_Service_Plus_PersonUrls extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Plus_Place extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3613,6 +3669,7 @@ class Google_Service_Plus_Place extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Plus_PlaceAddress extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3630,6 +3687,7 @@ class Google_Service_Plus_PlaceAddress extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Plus_PlacePosition extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3656,6 +3714,7 @@ class Google_Service_Plus_PlacePosition extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Plus_PlusAclentryResource extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
|
||||
@@ -28,6 +28,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains extends Google_Service
|
||||
{
|
||||
/** View your circles and the people and pages in them. */
|
||||
@@ -462,6 +463,7 @@ class Google_Service_PlusDomains extends Google_Service
|
||||
* $activities = $plusDomainsService->activities;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_Activities_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -532,6 +534,7 @@ class Google_Service_PlusDomains_Activities_Resource extends Google_Service_Reso
|
||||
* $audiences = $plusDomainsService->audiences;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_Audiences_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -567,6 +570,7 @@ class Google_Service_PlusDomains_Audiences_Resource extends Google_Service_Resou
|
||||
* $circles = $plusDomainsService->circles;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_Circles_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -713,6 +717,7 @@ class Google_Service_PlusDomains_Circles_Resource extends Google_Service_Resourc
|
||||
* $comments = $plusDomainsService->comments;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_Comments_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -776,6 +781,7 @@ class Google_Service_PlusDomains_Comments_Resource extends Google_Service_Resour
|
||||
* $media = $plusDomainsService->media;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_Media_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -807,6 +813,7 @@ class Google_Service_PlusDomains_Media_Resource extends Google_Service_Resource
|
||||
* $people = $plusDomainsService->people;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_People_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -898,6 +905,7 @@ class Google_Service_PlusDomains_People_Resource extends Google_Service_Resource
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_Acl extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -944,6 +952,7 @@ class Google_Service_PlusDomains_Acl extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_Activity extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1137,6 +1146,7 @@ class Google_Service_PlusDomains_Activity extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_ActivityActor extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1212,6 +1222,7 @@ class Google_Service_PlusDomains_ActivityActor extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_ActivityActorClientSpecificActorInfo extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1230,6 +1241,7 @@ class Google_Service_PlusDomains_ActivityActorClientSpecificActorInfo extends Go
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_ActivityActorClientSpecificActorInfoYoutubeActorInfo extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1247,6 +1259,7 @@ class Google_Service_PlusDomains_ActivityActorClientSpecificActorInfoYoutubeActo
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_ActivityActorImage extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1264,6 +1277,7 @@ class Google_Service_PlusDomains_ActivityActorImage extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_ActivityActorName extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1290,6 +1304,7 @@ class Google_Service_PlusDomains_ActivityActorName extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_ActivityActorVerification extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1307,6 +1322,7 @@ class Google_Service_PlusDomains_ActivityActorVerification extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_ActivityFeed extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -1398,6 +1414,7 @@ class Google_Service_PlusDomains_ActivityFeed extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_ActivityObject extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'attachments';
|
||||
@@ -1512,6 +1529,7 @@ class Google_Service_PlusDomains_ActivityObject extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_ActivityObjectActor extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1577,6 +1595,7 @@ class Google_Service_PlusDomains_ActivityObjectActor extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_ActivityObjectActorClientSpecificActorInfo extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1595,6 +1614,7 @@ class Google_Service_PlusDomains_ActivityObjectActorClientSpecificActorInfo exte
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_ActivityObjectActorClientSpecificActorInfoYoutubeActorInfo extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1612,6 +1632,7 @@ class Google_Service_PlusDomains_ActivityObjectActorClientSpecificActorInfoYoutu
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_ActivityObjectActorImage extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1629,6 +1650,7 @@ class Google_Service_PlusDomains_ActivityObjectActorImage extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_ActivityObjectActorVerification extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1646,6 +1668,7 @@ class Google_Service_PlusDomains_ActivityObjectActorVerification extends Google_
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_ActivityObjectAttachments extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'thumbnails';
|
||||
@@ -1750,6 +1773,7 @@ class Google_Service_PlusDomains_ActivityObjectAttachments extends Google_Collec
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_ActivityObjectAttachmentsEmbed extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1776,6 +1800,7 @@ class Google_Service_PlusDomains_ActivityObjectAttachmentsEmbed extends Google_M
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_ActivityObjectAttachmentsFullImage extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1820,6 +1845,7 @@ class Google_Service_PlusDomains_ActivityObjectAttachmentsFullImage extends Goog
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_ActivityObjectAttachmentsImage extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1864,6 +1890,7 @@ class Google_Service_PlusDomains_ActivityObjectAttachmentsImage extends Google_M
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_ActivityObjectAttachmentsPreviewThumbnails extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1881,6 +1908,7 @@ class Google_Service_PlusDomains_ActivityObjectAttachmentsPreviewThumbnails exte
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_ActivityObjectAttachmentsThumbnails extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1917,6 +1945,7 @@ class Google_Service_PlusDomains_ActivityObjectAttachmentsThumbnails extends Goo
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_ActivityObjectAttachmentsThumbnailsImage extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1961,6 +1990,7 @@ class Google_Service_PlusDomains_ActivityObjectAttachmentsThumbnailsImage extend
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_ActivityObjectPlusoners extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1987,6 +2017,7 @@ class Google_Service_PlusDomains_ActivityObjectPlusoners extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_ActivityObjectReplies extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2013,6 +2044,7 @@ class Google_Service_PlusDomains_ActivityObjectReplies extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_ActivityObjectResharers extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2039,6 +2071,7 @@ class Google_Service_PlusDomains_ActivityObjectResharers extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_ActivityObjectStatusForViewer extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2092,6 +2125,7 @@ class Google_Service_PlusDomains_ActivityObjectStatusForViewer extends Google_Mo
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_ActivityProvider extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2109,6 +2143,7 @@ class Google_Service_PlusDomains_ActivityProvider extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_Audience extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2163,6 +2198,7 @@ class Google_Service_PlusDomains_Audience extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_AudiencesFeed extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -2218,6 +2254,7 @@ class Google_Service_PlusDomains_AudiencesFeed extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_Circle extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2290,6 +2327,7 @@ class Google_Service_PlusDomains_Circle extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_CircleFeed extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -2372,6 +2410,7 @@ class Google_Service_PlusDomains_CircleFeed extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_CirclePeople extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2389,6 +2428,7 @@ class Google_Service_PlusDomains_CirclePeople extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_Comment extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'inReplyTo';
|
||||
@@ -2501,6 +2541,7 @@ class Google_Service_PlusDomains_Comment extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_CommentActor extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2566,6 +2607,7 @@ class Google_Service_PlusDomains_CommentActor extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_CommentActorClientSpecificActorInfo extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2584,6 +2626,7 @@ class Google_Service_PlusDomains_CommentActorClientSpecificActorInfo extends Goo
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_CommentActorClientSpecificActorInfoYoutubeActorInfo extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2601,6 +2644,7 @@ class Google_Service_PlusDomains_CommentActorClientSpecificActorInfoYoutubeActor
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_CommentActorImage extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2618,6 +2662,7 @@ class Google_Service_PlusDomains_CommentActorImage extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_CommentActorVerification extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2635,6 +2680,7 @@ class Google_Service_PlusDomains_CommentActorVerification extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_CommentFeed extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -2717,6 +2763,7 @@ class Google_Service_PlusDomains_CommentFeed extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_CommentInReplyTo extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2743,6 +2790,7 @@ class Google_Service_PlusDomains_CommentInReplyTo extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_CommentObject extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2778,6 +2826,7 @@ class Google_Service_PlusDomains_CommentObject extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_CommentPlusoners extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -2795,6 +2844,7 @@ class Google_Service_PlusDomains_CommentPlusoners extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_Media extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'streams';
|
||||
@@ -2969,6 +3019,7 @@ class Google_Service_PlusDomains_Media extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_MediaAuthor extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3014,6 +3065,7 @@ class Google_Service_PlusDomains_MediaAuthor extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_MediaAuthorImage extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3031,6 +3083,7 @@ class Google_Service_PlusDomains_MediaAuthorImage extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_MediaExif extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3048,6 +3101,7 @@ class Google_Service_PlusDomains_MediaExif extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_PeopleFeed extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -3121,6 +3175,7 @@ class Google_Service_PlusDomains_PeopleFeed extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_Person extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'urls';
|
||||
@@ -3389,6 +3444,7 @@ class Google_Service_PlusDomains_Person extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_PersonCover extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3426,6 +3482,7 @@ class Google_Service_PlusDomains_PersonCover extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_PersonCoverCoverInfo extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3452,6 +3509,7 @@ class Google_Service_PlusDomains_PersonCoverCoverInfo extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_PersonCoverCoverPhoto extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3487,6 +3545,7 @@ class Google_Service_PlusDomains_PersonCoverCoverPhoto extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_PersonEmails extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3513,6 +3572,7 @@ class Google_Service_PlusDomains_PersonEmails extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_PersonImage extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3539,6 +3599,7 @@ class Google_Service_PlusDomains_PersonImage extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_PersonName extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3601,6 +3662,7 @@ class Google_Service_PlusDomains_PersonName extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_PersonOrganizations extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3690,6 +3752,7 @@ class Google_Service_PlusDomains_PersonOrganizations extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_PersonPlacesLived extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3716,6 +3779,7 @@ class Google_Service_PlusDomains_PersonPlacesLived extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_PersonUrls extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3751,6 +3815,7 @@ class Google_Service_PlusDomains_PersonUrls extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_Place extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3806,6 +3871,7 @@ class Google_Service_PlusDomains_Place extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_PlaceAddress extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3823,6 +3889,7 @@ class Google_Service_PlusDomains_PlaceAddress extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_PlacePosition extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3849,6 +3916,7 @@ class Google_Service_PlusDomains_PlacePosition extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_PlusDomainsAclentryResource extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -3884,6 +3952,7 @@ class Google_Service_PlusDomains_PlusDomainsAclentryResource extends Google_Mode
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_PlusDomains_Videostream extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
|
||||
@@ -29,6 +29,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Prediction extends Google_Service
|
||||
{
|
||||
/** Manage your data and permissions in Google Cloud Storage. */
|
||||
@@ -211,6 +212,7 @@ class Google_Service_Prediction extends Google_Service
|
||||
* $hostedmodels = $predictionService->hostedmodels;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Prediction_Hostedmodels_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -240,6 +242,7 @@ class Google_Service_Prediction_Hostedmodels_Resource extends Google_Service_Res
|
||||
* $trainedmodels = $predictionService->trainedmodels;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Prediction_Trainedmodels_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -356,6 +359,7 @@ class Google_Service_Prediction_Trainedmodels_Resource extends Google_Service_Re
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Prediction_Analyze extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'errors';
|
||||
@@ -421,6 +425,7 @@ class Google_Service_Prediction_Analyze extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Prediction_AnalyzeDataDescription extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'features';
|
||||
@@ -450,6 +455,7 @@ class Google_Service_Prediction_AnalyzeDataDescription extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Prediction_AnalyzeDataDescriptionFeatures extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -497,6 +503,7 @@ class Google_Service_Prediction_AnalyzeDataDescriptionFeatures extends Google_Mo
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Prediction_AnalyzeDataDescriptionFeaturesCategorical extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'values';
|
||||
@@ -525,6 +532,7 @@ class Google_Service_Prediction_AnalyzeDataDescriptionFeaturesCategorical extend
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Prediction_AnalyzeDataDescriptionFeaturesCategoricalValues extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -551,6 +559,7 @@ class Google_Service_Prediction_AnalyzeDataDescriptionFeaturesCategoricalValues
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Prediction_AnalyzeDataDescriptionFeaturesNumeric extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -586,6 +595,7 @@ class Google_Service_Prediction_AnalyzeDataDescriptionFeaturesNumeric extends Go
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Prediction_AnalyzeDataDescriptionFeaturesText extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -603,6 +613,7 @@ class Google_Service_Prediction_AnalyzeDataDescriptionFeaturesText extends Googl
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Prediction_AnalyzeDataDescriptionOutputFeature extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'text';
|
||||
@@ -632,6 +643,7 @@ class Google_Service_Prediction_AnalyzeDataDescriptionOutputFeature extends Goog
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Prediction_AnalyzeDataDescriptionOutputFeatureNumeric extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -667,6 +679,7 @@ class Google_Service_Prediction_AnalyzeDataDescriptionOutputFeatureNumeric exten
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Prediction_AnalyzeDataDescriptionOutputFeatureText extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -693,10 +706,12 @@ class Google_Service_Prediction_AnalyzeDataDescriptionOutputFeatureText extends
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Prediction_AnalyzeErrors extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Prediction_AnalyzeModelDescription extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -733,18 +748,22 @@ class Google_Service_Prediction_AnalyzeModelDescription extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Prediction_AnalyzeModelDescriptionConfusionMatrix extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Prediction_AnalyzeModelDescriptionConfusionMatrixElement extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Prediction_AnalyzeModelDescriptionConfusionMatrixRowTotals extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Prediction_Input extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -763,6 +782,7 @@ class Google_Service_Prediction_Input extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Prediction_InputInput extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'csvInstance';
|
||||
@@ -781,6 +801,7 @@ class Google_Service_Prediction_InputInput extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Prediction_Insert extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'utility';
|
||||
@@ -863,6 +884,7 @@ class Google_Service_Prediction_Insert extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Prediction_Insert2 extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -971,6 +993,7 @@ class Google_Service_Prediction_Insert2 extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Prediction_Insert2ModelInfo extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1033,6 +1056,7 @@ class Google_Service_Prediction_Insert2ModelInfo extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Prediction_InsertTrainingInstances extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'csvInstance';
|
||||
@@ -1060,10 +1084,12 @@ class Google_Service_Prediction_InsertTrainingInstances extends Google_Collectio
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Prediction_InsertUtility extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Prediction_Output extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'outputMulti';
|
||||
@@ -1128,6 +1154,7 @@ class Google_Service_Prediction_Output extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Prediction_OutputOutputMulti extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1154,6 +1181,7 @@ class Google_Service_Prediction_OutputOutputMulti extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Prediction_PredictionList extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
@@ -1200,6 +1228,7 @@ class Google_Service_Prediction_PredictionList extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Prediction_Update extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'csvInstance';
|
||||
|
||||
@@ -28,6 +28,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Proximitybeacon extends Google_Service
|
||||
{
|
||||
|
||||
@@ -263,6 +264,7 @@ class Google_Service_Proximitybeacon extends Google_Service
|
||||
* $beaconinfo = $proximitybeaconService->beaconinfo;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Proximitybeacon_Beaconinfo_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -290,6 +292,7 @@ class Google_Service_Proximitybeacon_Beaconinfo_Resource extends Google_Service_
|
||||
* $beacons = $proximitybeaconService->beacons;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Proximitybeacon_Beacons_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -471,6 +474,7 @@ class Google_Service_Proximitybeacon_Beacons_Resource extends Google_Service_Res
|
||||
* $attachments = $proximitybeaconService->attachments;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Proximitybeacon_BeaconsAttachments_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -570,6 +574,7 @@ class Google_Service_Proximitybeacon_BeaconsAttachments_Resource extends Google_
|
||||
* $diagnostics = $proximitybeaconService->diagnostics;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Proximitybeacon_BeaconsDiagnostics_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -606,6 +611,7 @@ class Google_Service_Proximitybeacon_BeaconsDiagnostics_Resource extends Google_
|
||||
* $namespaces = $proximitybeaconService->namespaces;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Proximitybeacon_Namespaces_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -629,6 +635,7 @@ class Google_Service_Proximitybeacon_Namespaces_Resource extends Google_Service_
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Proximitybeacon_AdvertisedId extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -655,6 +662,7 @@ class Google_Service_Proximitybeacon_AdvertisedId extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Proximitybeacon_AttachmentInfo extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -681,6 +689,7 @@ class Google_Service_Proximitybeacon_AttachmentInfo extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Proximitybeacon_Beacon extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -773,6 +782,7 @@ class Google_Service_Proximitybeacon_Beacon extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Proximitybeacon_BeaconAttachment extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -808,6 +818,7 @@ class Google_Service_Proximitybeacon_BeaconAttachment extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Proximitybeacon_BeaconInfo extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'attachments';
|
||||
@@ -855,10 +866,12 @@ class Google_Service_Proximitybeacon_BeaconInfo extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Proximitybeacon_BeaconProperties extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Proximitybeacon_Date extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -894,6 +907,7 @@ class Google_Service_Proximitybeacon_Date extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Proximitybeacon_DeleteAttachmentsResponse extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -911,6 +925,7 @@ class Google_Service_Proximitybeacon_DeleteAttachmentsResponse extends Google_Mo
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Proximitybeacon_Diagnostics extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'alerts';
|
||||
@@ -948,10 +963,12 @@ class Google_Service_Proximitybeacon_Diagnostics extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Proximitybeacon_Empty extends Google_Model
|
||||
{
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Proximitybeacon_GetInfoForObservedBeaconsRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'observations';
|
||||
@@ -980,6 +997,7 @@ class Google_Service_Proximitybeacon_GetInfoForObservedBeaconsRequest extends Go
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Proximitybeacon_GetInfoForObservedBeaconsResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'beacons';
|
||||
@@ -999,6 +1017,7 @@ class Google_Service_Proximitybeacon_GetInfoForObservedBeaconsResponse extends G
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Proximitybeacon_IndoorLevel extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1016,6 +1035,7 @@ class Google_Service_Proximitybeacon_IndoorLevel extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Proximitybeacon_LatLng extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1042,6 +1062,7 @@ class Google_Service_Proximitybeacon_LatLng extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Proximitybeacon_ListBeaconAttachmentsResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'attachments';
|
||||
@@ -1061,6 +1082,7 @@ class Google_Service_Proximitybeacon_ListBeaconAttachmentsResponse extends Googl
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Proximitybeacon_ListBeaconsResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'beacons';
|
||||
@@ -1098,6 +1120,7 @@ class Google_Service_Proximitybeacon_ListBeaconsResponse extends Google_Collecti
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Proximitybeacon_ListDiagnosticsResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'diagnostics';
|
||||
@@ -1126,6 +1149,7 @@ class Google_Service_Proximitybeacon_ListDiagnosticsResponse extends Google_Coll
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Proximitybeacon_ListNamespacesResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'namespaces';
|
||||
@@ -1145,6 +1169,7 @@ class Google_Service_Proximitybeacon_ListNamespacesResponse extends Google_Colle
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Proximitybeacon_Observation extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1181,6 +1206,7 @@ class Google_Service_Proximitybeacon_Observation extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Proximitybeacon_ProximitybeaconNamespace extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
|
||||
@@ -28,6 +28,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Pubsub extends Google_Service
|
||||
{
|
||||
/** View and manage your data across Google Cloud Platform services. */
|
||||
@@ -196,6 +197,7 @@ class Google_Service_Pubsub extends Google_Service
|
||||
* $subscriptions = $pubsubService->subscriptions;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Pubsub_Subscriptions_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -359,6 +361,7 @@ class Google_Service_Pubsub_Subscriptions_Resource extends Google_Service_Resour
|
||||
* $topics = $pubsubService->topics;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Pubsub_Topics_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -459,6 +462,7 @@ class Google_Service_Pubsub_Topics_Resource extends Google_Service_Resource
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Pubsub_AcknowledgeRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'ackId';
|
||||
@@ -486,6 +490,7 @@ class Google_Service_Pubsub_AcknowledgeRequest extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Pubsub_Label extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -521,6 +526,7 @@ class Google_Service_Pubsub_Label extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Pubsub_ListSubscriptionsResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'subscription';
|
||||
@@ -549,6 +555,7 @@ class Google_Service_Pubsub_ListSubscriptionsResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Pubsub_ListTopicsResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'topic';
|
||||
@@ -577,6 +584,7 @@ class Google_Service_Pubsub_ListTopicsResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Pubsub_ModifyAckDeadlineRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'ackIds';
|
||||
@@ -622,6 +630,7 @@ class Google_Service_Pubsub_ModifyAckDeadlineRequest extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Pubsub_ModifyPushConfigRequest extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -649,6 +658,7 @@ class Google_Service_Pubsub_ModifyPushConfigRequest extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Pubsub_PublishBatchRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'messages';
|
||||
@@ -677,6 +687,7 @@ class Google_Service_Pubsub_PublishBatchRequest extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Pubsub_PublishBatchResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'messageIds';
|
||||
@@ -695,6 +706,7 @@ class Google_Service_Pubsub_PublishBatchResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Pubsub_PublishRequest extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -722,6 +734,7 @@ class Google_Service_Pubsub_PublishRequest extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Pubsub_PubsubEvent extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -767,6 +780,7 @@ class Google_Service_Pubsub_PubsubEvent extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Pubsub_PubsubMessage extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'label';
|
||||
@@ -804,6 +818,7 @@ class Google_Service_Pubsub_PubsubMessage extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Pubsub_PullBatchRequest extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -839,6 +854,7 @@ class Google_Service_Pubsub_PullBatchRequest extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Pubsub_PullBatchResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'pullResponses';
|
||||
@@ -858,6 +874,7 @@ class Google_Service_Pubsub_PullBatchResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Pubsub_PullRequest extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -884,6 +901,7 @@ class Google_Service_Pubsub_PullRequest extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Pubsub_PullResponse extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -911,6 +929,7 @@ class Google_Service_Pubsub_PullResponse extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Pubsub_PushConfig extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -928,6 +947,7 @@ class Google_Service_Pubsub_PushConfig extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Pubsub_Subscription extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -973,6 +993,7 @@ class Google_Service_Pubsub_Subscription extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_Pubsub_Topic extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
|
||||
@@ -29,6 +29,7 @@
|
||||
*
|
||||
* @author Google, Inc.
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_QPXExpress extends Google_Service
|
||||
{
|
||||
|
||||
@@ -75,6 +76,7 @@ class Google_Service_QPXExpress extends Google_Service
|
||||
* $trips = $qpxExpressService->trips;
|
||||
* </code>
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_QPXExpress_Trips_Resource extends Google_Service_Resource
|
||||
{
|
||||
|
||||
@@ -96,6 +98,7 @@ class Google_Service_QPXExpress_Trips_Resource extends Google_Service_Resource
|
||||
|
||||
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_QPXExpress_AircraftData extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -131,6 +134,7 @@ class Google_Service_QPXExpress_AircraftData extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_QPXExpress_AirportData extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -175,6 +179,7 @@ class Google_Service_QPXExpress_AirportData extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_QPXExpress_BagDescriptor extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'description';
|
||||
@@ -229,6 +234,7 @@ class Google_Service_QPXExpress_BagDescriptor extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_QPXExpress_CarrierData extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -264,6 +270,7 @@ class Google_Service_QPXExpress_CarrierData extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_QPXExpress_CityData extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -308,6 +315,7 @@ class Google_Service_QPXExpress_CityData extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_QPXExpress_Data extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'tax';
|
||||
@@ -376,6 +384,7 @@ class Google_Service_QPXExpress_Data extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_QPXExpress_FareInfo extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -447,6 +456,7 @@ class Google_Service_QPXExpress_FareInfo extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_QPXExpress_FlightInfo extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -473,6 +483,7 @@ class Google_Service_QPXExpress_FlightInfo extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_QPXExpress_FreeBaggageAllowance extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'bagDescriptor';
|
||||
@@ -537,6 +548,7 @@ class Google_Service_QPXExpress_FreeBaggageAllowance extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_QPXExpress_LegInfo extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -698,6 +710,7 @@ class Google_Service_QPXExpress_LegInfo extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_QPXExpress_PassengerCounts extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -760,6 +773,7 @@ class Google_Service_QPXExpress_PassengerCounts extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_QPXExpress_PricingInfo extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'tax';
|
||||
@@ -890,6 +904,7 @@ class Google_Service_QPXExpress_PricingInfo extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_QPXExpress_SegmentInfo extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'leg';
|
||||
@@ -1000,6 +1015,7 @@ class Google_Service_QPXExpress_SegmentInfo extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_QPXExpress_SegmentPricing extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'freeBaggageOption';
|
||||
@@ -1046,6 +1062,7 @@ class Google_Service_QPXExpress_SegmentPricing extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_QPXExpress_SliceInfo extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'segment';
|
||||
@@ -1083,6 +1100,7 @@ class Google_Service_QPXExpress_SliceInfo extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_QPXExpress_SliceInput extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'prohibitedCarrier';
|
||||
@@ -1192,6 +1210,7 @@ class Google_Service_QPXExpress_SliceInput extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_QPXExpress_TaxData extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1227,6 +1246,7 @@ class Google_Service_QPXExpress_TaxData extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_QPXExpress_TaxInfo extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1289,6 +1309,7 @@ class Google_Service_QPXExpress_TaxInfo extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_QPXExpress_TimeOfDayRange extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1324,6 +1345,7 @@ class Google_Service_QPXExpress_TimeOfDayRange extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_QPXExpress_TripOption extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'slice';
|
||||
@@ -1380,6 +1402,7 @@ class Google_Service_QPXExpress_TripOption extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_QPXExpress_TripOptionsRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'slice';
|
||||
@@ -1445,6 +1468,7 @@ class Google_Service_QPXExpress_TripOptionsRequest extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_QPXExpress_TripOptionsResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'tripOption';
|
||||
@@ -1492,6 +1516,7 @@ class Google_Service_QPXExpress_TripOptionsResponse extends Google_Collection
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_QPXExpress_TripsSearchRequest extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
@@ -1510,6 +1535,7 @@ class Google_Service_QPXExpress_TripsSearchRequest extends Google_Model
|
||||
}
|
||||
}
|
||||
|
||||
#[AllowDynamicProperties]
|
||||
class Google_Service_QPXExpress_TripsSearchResponse extends Google_Model
|
||||
{
|
||||
protected $internal_gapi_mappings = array(
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user