Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/updraftp.../includes/Google/Service
File: Datastore.php
<?php
[0] Fix | Delete
/*
[1] Fix | Delete
* Copyright 2010 Google Inc.
[2] Fix | Delete
*
[3] Fix | Delete
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
[4] Fix | Delete
* use this file except in compliance with the License. You may obtain a copy of
[5] Fix | Delete
* the License at
[6] Fix | Delete
*
[7] Fix | Delete
* http://www.apache.org/licenses/LICENSE-2.0
[8] Fix | Delete
*
[9] Fix | Delete
* Unless required by applicable law or agreed to in writing, software
[10] Fix | Delete
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
[11] Fix | Delete
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
[12] Fix | Delete
* License for the specific language governing permissions and limitations under
[13] Fix | Delete
* the License.
[14] Fix | Delete
*/
[15] Fix | Delete
[16] Fix | Delete
/**
[17] Fix | Delete
* Service definition for Datastore (v1beta2).
[18] Fix | Delete
*
[19] Fix | Delete
* <p>
[20] Fix | Delete
* API for accessing Google Cloud Datastore.</p>
[21] Fix | Delete
*
[22] Fix | Delete
* <p>
[23] Fix | Delete
* For more information about this service, see the API
[24] Fix | Delete
* <a href="https://developers.google.com/datastore/" target="_blank">Documentation</a>
[25] Fix | Delete
* </p>
[26] Fix | Delete
*
[27] Fix | Delete
* @author Google, Inc.
[28] Fix | Delete
*/
[29] Fix | Delete
class Google_Service_Datastore extends UDP_Google_Service
[30] Fix | Delete
{
[31] Fix | Delete
/** View and manage your data across Google Cloud Platform services. */
[32] Fix | Delete
const CLOUD_PLATFORM =
[33] Fix | Delete
"https://www.googleapis.com/auth/cloud-platform";
[34] Fix | Delete
/** View and manage your Google Cloud Datastore data. */
[35] Fix | Delete
const DATASTORE =
[36] Fix | Delete
"https://www.googleapis.com/auth/datastore";
[37] Fix | Delete
/** View your email address. */
[38] Fix | Delete
const USERINFO_EMAIL =
[39] Fix | Delete
"https://www.googleapis.com/auth/userinfo.email";
[40] Fix | Delete
[41] Fix | Delete
public $datasets;
[42] Fix | Delete
[43] Fix | Delete
[44] Fix | Delete
/**
[45] Fix | Delete
* Constructs the internal representation of the Datastore service.
[46] Fix | Delete
*
[47] Fix | Delete
* @param Google_Client $client
[48] Fix | Delete
*/
[49] Fix | Delete
public function __construct(UDP_Google_Client $client)
[50] Fix | Delete
{
[51] Fix | Delete
parent::__construct($client);
[52] Fix | Delete
$this->servicePath = 'datastore/v1beta2/datasets/';
[53] Fix | Delete
$this->version = 'v1beta2';
[54] Fix | Delete
$this->serviceName = 'datastore';
[55] Fix | Delete
[56] Fix | Delete
$this->datasets = new Google_Service_Datastore_Datasets_Resource(
[57] Fix | Delete
$this,
[58] Fix | Delete
$this->serviceName,
[59] Fix | Delete
'datasets',
[60] Fix | Delete
array(
[61] Fix | Delete
'methods' => array(
[62] Fix | Delete
'allocateIds' => array(
[63] Fix | Delete
'path' => '{datasetId}/allocateIds',
[64] Fix | Delete
'httpMethod' => 'POST',
[65] Fix | Delete
'parameters' => array(
[66] Fix | Delete
'datasetId' => array(
[67] Fix | Delete
'location' => 'path',
[68] Fix | Delete
'type' => 'string',
[69] Fix | Delete
'required' => true,
[70] Fix | Delete
),
[71] Fix | Delete
),
[72] Fix | Delete
),'beginTransaction' => array(
[73] Fix | Delete
'path' => '{datasetId}/beginTransaction',
[74] Fix | Delete
'httpMethod' => 'POST',
[75] Fix | Delete
'parameters' => array(
[76] Fix | Delete
'datasetId' => array(
[77] Fix | Delete
'location' => 'path',
[78] Fix | Delete
'type' => 'string',
[79] Fix | Delete
'required' => true,
[80] Fix | Delete
),
[81] Fix | Delete
),
[82] Fix | Delete
),'commit' => array(
[83] Fix | Delete
'path' => '{datasetId}/commit',
[84] Fix | Delete
'httpMethod' => 'POST',
[85] Fix | Delete
'parameters' => array(
[86] Fix | Delete
'datasetId' => array(
[87] Fix | Delete
'location' => 'path',
[88] Fix | Delete
'type' => 'string',
[89] Fix | Delete
'required' => true,
[90] Fix | Delete
),
[91] Fix | Delete
),
[92] Fix | Delete
),'lookup' => array(
[93] Fix | Delete
'path' => '{datasetId}/lookup',
[94] Fix | Delete
'httpMethod' => 'POST',
[95] Fix | Delete
'parameters' => array(
[96] Fix | Delete
'datasetId' => array(
[97] Fix | Delete
'location' => 'path',
[98] Fix | Delete
'type' => 'string',
[99] Fix | Delete
'required' => true,
[100] Fix | Delete
),
[101] Fix | Delete
),
[102] Fix | Delete
),'rollback' => array(
[103] Fix | Delete
'path' => '{datasetId}/rollback',
[104] Fix | Delete
'httpMethod' => 'POST',
[105] Fix | Delete
'parameters' => array(
[106] Fix | Delete
'datasetId' => array(
[107] Fix | Delete
'location' => 'path',
[108] Fix | Delete
'type' => 'string',
[109] Fix | Delete
'required' => true,
[110] Fix | Delete
),
[111] Fix | Delete
),
[112] Fix | Delete
),'runQuery' => array(
[113] Fix | Delete
'path' => '{datasetId}/runQuery',
[114] Fix | Delete
'httpMethod' => 'POST',
[115] Fix | Delete
'parameters' => array(
[116] Fix | Delete
'datasetId' => array(
[117] Fix | Delete
'location' => 'path',
[118] Fix | Delete
'type' => 'string',
[119] Fix | Delete
'required' => true,
[120] Fix | Delete
),
[121] Fix | Delete
),
[122] Fix | Delete
),
[123] Fix | Delete
)
[124] Fix | Delete
)
[125] Fix | Delete
);
[126] Fix | Delete
}
[127] Fix | Delete
}
[128] Fix | Delete
[129] Fix | Delete
[130] Fix | Delete
/**
[131] Fix | Delete
* The "datasets" collection of methods.
[132] Fix | Delete
* Typical usage is:
[133] Fix | Delete
* <code>
[134] Fix | Delete
* $datastoreService = new Google_Service_Datastore(...);
[135] Fix | Delete
* $datasets = $datastoreService->datasets;
[136] Fix | Delete
* </code>
[137] Fix | Delete
*/
[138] Fix | Delete
class Google_Service_Datastore_Datasets_Resource extends UDP_Google_Service_Resource
[139] Fix | Delete
{
[140] Fix | Delete
[141] Fix | Delete
/**
[142] Fix | Delete
* Allocate IDs for incomplete keys (useful for referencing an entity before it
[143] Fix | Delete
* is inserted). (datasets.allocateIds)
[144] Fix | Delete
*
[145] Fix | Delete
* @param string $datasetId Identifies the dataset.
[146] Fix | Delete
* @param Google_AllocateIdsRequest $postBody
[147] Fix | Delete
* @param array $optParams Optional parameters.
[148] Fix | Delete
* @return Google_Service_Datastore_AllocateIdsResponse
[149] Fix | Delete
*/
[150] Fix | Delete
public function allocateIds($datasetId, Google_Service_Datastore_AllocateIdsRequest $postBody, $optParams = array())
[151] Fix | Delete
{
[152] Fix | Delete
$params = array('datasetId' => $datasetId, 'postBody' => $postBody);
[153] Fix | Delete
$params = array_merge($params, $optParams);
[154] Fix | Delete
return $this->call('allocateIds', array($params), "Google_Service_Datastore_AllocateIdsResponse");
[155] Fix | Delete
}
[156] Fix | Delete
[157] Fix | Delete
/**
[158] Fix | Delete
* Begin a new transaction. (datasets.beginTransaction)
[159] Fix | Delete
*
[160] Fix | Delete
* @param string $datasetId Identifies the dataset.
[161] Fix | Delete
* @param Google_BeginTransactionRequest $postBody
[162] Fix | Delete
* @param array $optParams Optional parameters.
[163] Fix | Delete
* @return Google_Service_Datastore_BeginTransactionResponse
[164] Fix | Delete
*/
[165] Fix | Delete
public function beginTransaction($datasetId, Google_Service_Datastore_BeginTransactionRequest $postBody, $optParams = array())
[166] Fix | Delete
{
[167] Fix | Delete
$params = array('datasetId' => $datasetId, 'postBody' => $postBody);
[168] Fix | Delete
$params = array_merge($params, $optParams);
[169] Fix | Delete
return $this->call('beginTransaction', array($params), "Google_Service_Datastore_BeginTransactionResponse");
[170] Fix | Delete
}
[171] Fix | Delete
[172] Fix | Delete
/**
[173] Fix | Delete
* Commit a transaction, optionally creating, deleting or modifying some
[174] Fix | Delete
* entities. (datasets.commit)
[175] Fix | Delete
*
[176] Fix | Delete
* @param string $datasetId Identifies the dataset.
[177] Fix | Delete
* @param Google_CommitRequest $postBody
[178] Fix | Delete
* @param array $optParams Optional parameters.
[179] Fix | Delete
* @return Google_Service_Datastore_CommitResponse
[180] Fix | Delete
*/
[181] Fix | Delete
public function commit($datasetId, Google_Service_Datastore_CommitRequest $postBody, $optParams = array())
[182] Fix | Delete
{
[183] Fix | Delete
$params = array('datasetId' => $datasetId, 'postBody' => $postBody);
[184] Fix | Delete
$params = array_merge($params, $optParams);
[185] Fix | Delete
return $this->call('commit', array($params), "Google_Service_Datastore_CommitResponse");
[186] Fix | Delete
}
[187] Fix | Delete
[188] Fix | Delete
/**
[189] Fix | Delete
* Look up some entities by key. (datasets.lookup)
[190] Fix | Delete
*
[191] Fix | Delete
* @param string $datasetId Identifies the dataset.
[192] Fix | Delete
* @param Google_LookupRequest $postBody
[193] Fix | Delete
* @param array $optParams Optional parameters.
[194] Fix | Delete
* @return Google_Service_Datastore_LookupResponse
[195] Fix | Delete
*/
[196] Fix | Delete
public function lookup($datasetId, Google_Service_Datastore_LookupRequest $postBody, $optParams = array())
[197] Fix | Delete
{
[198] Fix | Delete
$params = array('datasetId' => $datasetId, 'postBody' => $postBody);
[199] Fix | Delete
$params = array_merge($params, $optParams);
[200] Fix | Delete
return $this->call('lookup', array($params), "Google_Service_Datastore_LookupResponse");
[201] Fix | Delete
}
[202] Fix | Delete
[203] Fix | Delete
/**
[204] Fix | Delete
* Roll back a transaction. (datasets.rollback)
[205] Fix | Delete
*
[206] Fix | Delete
* @param string $datasetId Identifies the dataset.
[207] Fix | Delete
* @param Google_RollbackRequest $postBody
[208] Fix | Delete
* @param array $optParams Optional parameters.
[209] Fix | Delete
* @return Google_Service_Datastore_RollbackResponse
[210] Fix | Delete
*/
[211] Fix | Delete
public function rollback($datasetId, Google_Service_Datastore_RollbackRequest $postBody, $optParams = array())
[212] Fix | Delete
{
[213] Fix | Delete
$params = array('datasetId' => $datasetId, 'postBody' => $postBody);
[214] Fix | Delete
$params = array_merge($params, $optParams);
[215] Fix | Delete
return $this->call('rollback', array($params), "Google_Service_Datastore_RollbackResponse");
[216] Fix | Delete
}
[217] Fix | Delete
[218] Fix | Delete
/**
[219] Fix | Delete
* Query for entities. (datasets.runQuery)
[220] Fix | Delete
*
[221] Fix | Delete
* @param string $datasetId Identifies the dataset.
[222] Fix | Delete
* @param Google_RunQueryRequest $postBody
[223] Fix | Delete
* @param array $optParams Optional parameters.
[224] Fix | Delete
* @return Google_Service_Datastore_RunQueryResponse
[225] Fix | Delete
*/
[226] Fix | Delete
public function runQuery($datasetId, Google_Service_Datastore_RunQueryRequest $postBody, $optParams = array())
[227] Fix | Delete
{
[228] Fix | Delete
$params = array('datasetId' => $datasetId, 'postBody' => $postBody);
[229] Fix | Delete
$params = array_merge($params, $optParams);
[230] Fix | Delete
return $this->call('runQuery', array($params), "Google_Service_Datastore_RunQueryResponse");
[231] Fix | Delete
}
[232] Fix | Delete
}
[233] Fix | Delete
[234] Fix | Delete
[235] Fix | Delete
[236] Fix | Delete
[237] Fix | Delete
class Google_Service_Datastore_AllocateIdsRequest extends Google_Collection
[238] Fix | Delete
{
[239] Fix | Delete
protected $collection_key = 'keys';
[240] Fix | Delete
protected $internal_gapi_mappings = array(
[241] Fix | Delete
);
[242] Fix | Delete
protected $keysType = 'Google_Service_Datastore_Key';
[243] Fix | Delete
protected $keysDataType = 'array';
[244] Fix | Delete
[245] Fix | Delete
[246] Fix | Delete
public function setKeys($keys)
[247] Fix | Delete
{
[248] Fix | Delete
$this->keys = $keys;
[249] Fix | Delete
}
[250] Fix | Delete
public function getKeys()
[251] Fix | Delete
{
[252] Fix | Delete
return $this->keys;
[253] Fix | Delete
}
[254] Fix | Delete
}
[255] Fix | Delete
[256] Fix | Delete
class Google_Service_Datastore_AllocateIdsResponse extends Google_Collection
[257] Fix | Delete
{
[258] Fix | Delete
protected $collection_key = 'keys';
[259] Fix | Delete
protected $internal_gapi_mappings = array(
[260] Fix | Delete
);
[261] Fix | Delete
protected $headerType = 'Google_Service_Datastore_ResponseHeader';
[262] Fix | Delete
protected $headerDataType = '';
[263] Fix | Delete
protected $keysType = 'Google_Service_Datastore_Key';
[264] Fix | Delete
protected $keysDataType = 'array';
[265] Fix | Delete
[266] Fix | Delete
[267] Fix | Delete
public function setHeader(Google_Service_Datastore_ResponseHeader $header)
[268] Fix | Delete
{
[269] Fix | Delete
$this->header = $header;
[270] Fix | Delete
}
[271] Fix | Delete
public function getHeader()
[272] Fix | Delete
{
[273] Fix | Delete
return $this->header;
[274] Fix | Delete
}
[275] Fix | Delete
public function setKeys($keys)
[276] Fix | Delete
{
[277] Fix | Delete
$this->keys = $keys;
[278] Fix | Delete
}
[279] Fix | Delete
public function getKeys()
[280] Fix | Delete
{
[281] Fix | Delete
return $this->keys;
[282] Fix | Delete
}
[283] Fix | Delete
}
[284] Fix | Delete
[285] Fix | Delete
class Google_Service_Datastore_BeginTransactionRequest extends Google_Model
[286] Fix | Delete
{
[287] Fix | Delete
protected $internal_gapi_mappings = array(
[288] Fix | Delete
);
[289] Fix | Delete
public $isolationLevel;
[290] Fix | Delete
[291] Fix | Delete
[292] Fix | Delete
public function setIsolationLevel($isolationLevel)
[293] Fix | Delete
{
[294] Fix | Delete
$this->isolationLevel = $isolationLevel;
[295] Fix | Delete
}
[296] Fix | Delete
public function getIsolationLevel()
[297] Fix | Delete
{
[298] Fix | Delete
return $this->isolationLevel;
[299] Fix | Delete
}
[300] Fix | Delete
}
[301] Fix | Delete
[302] Fix | Delete
class Google_Service_Datastore_BeginTransactionResponse extends Google_Model
[303] Fix | Delete
{
[304] Fix | Delete
protected $internal_gapi_mappings = array(
[305] Fix | Delete
);
[306] Fix | Delete
protected $headerType = 'Google_Service_Datastore_ResponseHeader';
[307] Fix | Delete
protected $headerDataType = '';
[308] Fix | Delete
public $transaction;
[309] Fix | Delete
[310] Fix | Delete
[311] Fix | Delete
public function setHeader(Google_Service_Datastore_ResponseHeader $header)
[312] Fix | Delete
{
[313] Fix | Delete
$this->header = $header;
[314] Fix | Delete
}
[315] Fix | Delete
public function getHeader()
[316] Fix | Delete
{
[317] Fix | Delete
return $this->header;
[318] Fix | Delete
}
[319] Fix | Delete
public function setTransaction($transaction)
[320] Fix | Delete
{
[321] Fix | Delete
$this->transaction = $transaction;
[322] Fix | Delete
}
[323] Fix | Delete
public function getTransaction()
[324] Fix | Delete
{
[325] Fix | Delete
return $this->transaction;
[326] Fix | Delete
}
[327] Fix | Delete
}
[328] Fix | Delete
[329] Fix | Delete
class Google_Service_Datastore_CommitRequest extends Google_Model
[330] Fix | Delete
{
[331] Fix | Delete
protected $internal_gapi_mappings = array(
[332] Fix | Delete
);
[333] Fix | Delete
public $ignoreReadOnly;
[334] Fix | Delete
public $mode;
[335] Fix | Delete
protected $mutationType = 'Google_Service_Datastore_Mutation';
[336] Fix | Delete
protected $mutationDataType = '';
[337] Fix | Delete
public $transaction;
[338] Fix | Delete
[339] Fix | Delete
[340] Fix | Delete
public function setIgnoreReadOnly($ignoreReadOnly)
[341] Fix | Delete
{
[342] Fix | Delete
$this->ignoreReadOnly = $ignoreReadOnly;
[343] Fix | Delete
}
[344] Fix | Delete
public function getIgnoreReadOnly()
[345] Fix | Delete
{
[346] Fix | Delete
return $this->ignoreReadOnly;
[347] Fix | Delete
}
[348] Fix | Delete
public function setMode($mode)
[349] Fix | Delete
{
[350] Fix | Delete
$this->mode = $mode;
[351] Fix | Delete
}
[352] Fix | Delete
public function getMode()
[353] Fix | Delete
{
[354] Fix | Delete
return $this->mode;
[355] Fix | Delete
}
[356] Fix | Delete
public function setMutation(Google_Service_Datastore_Mutation $mutation)
[357] Fix | Delete
{
[358] Fix | Delete
$this->mutation = $mutation;
[359] Fix | Delete
}
[360] Fix | Delete
public function getMutation()
[361] Fix | Delete
{
[362] Fix | Delete
return $this->mutation;
[363] Fix | Delete
}
[364] Fix | Delete
public function setTransaction($transaction)
[365] Fix | Delete
{
[366] Fix | Delete
$this->transaction = $transaction;
[367] Fix | Delete
}
[368] Fix | Delete
public function getTransaction()
[369] Fix | Delete
{
[370] Fix | Delete
return $this->transaction;
[371] Fix | Delete
}
[372] Fix | Delete
}
[373] Fix | Delete
[374] Fix | Delete
class Google_Service_Datastore_CommitResponse extends Google_Model
[375] Fix | Delete
{
[376] Fix | Delete
protected $internal_gapi_mappings = array(
[377] Fix | Delete
);
[378] Fix | Delete
protected $headerType = 'Google_Service_Datastore_ResponseHeader';
[379] Fix | Delete
protected $headerDataType = '';
[380] Fix | Delete
protected $mutationResultType = 'Google_Service_Datastore_MutationResult';
[381] Fix | Delete
protected $mutationResultDataType = '';
[382] Fix | Delete
[383] Fix | Delete
[384] Fix | Delete
public function setHeader(Google_Service_Datastore_ResponseHeader $header)
[385] Fix | Delete
{
[386] Fix | Delete
$this->header = $header;
[387] Fix | Delete
}
[388] Fix | Delete
public function getHeader()
[389] Fix | Delete
{
[390] Fix | Delete
return $this->header;
[391] Fix | Delete
}
[392] Fix | Delete
public function setMutationResult(Google_Service_Datastore_MutationResult $mutationResult)
[393] Fix | Delete
{
[394] Fix | Delete
$this->mutationResult = $mutationResult;
[395] Fix | Delete
}
[396] Fix | Delete
public function getMutationResult()
[397] Fix | Delete
{
[398] Fix | Delete
return $this->mutationResult;
[399] Fix | Delete
}
[400] Fix | Delete
}
[401] Fix | Delete
[402] Fix | Delete
class Google_Service_Datastore_CompositeFilter extends Google_Collection
[403] Fix | Delete
{
[404] Fix | Delete
protected $collection_key = 'filters';
[405] Fix | Delete
protected $internal_gapi_mappings = array(
[406] Fix | Delete
);
[407] Fix | Delete
protected $filtersType = 'Google_Service_Datastore_Filter';
[408] Fix | Delete
protected $filtersDataType = 'array';
[409] Fix | Delete
public $operator;
[410] Fix | Delete
[411] Fix | Delete
[412] Fix | Delete
public function setFilters($filters)
[413] Fix | Delete
{
[414] Fix | Delete
$this->filters = $filters;
[415] Fix | Delete
}
[416] Fix | Delete
public function getFilters()
[417] Fix | Delete
{
[418] Fix | Delete
return $this->filters;
[419] Fix | Delete
}
[420] Fix | Delete
public function setOperator($operator)
[421] Fix | Delete
{
[422] Fix | Delete
$this->operator = $operator;
[423] Fix | Delete
}
[424] Fix | Delete
public function getOperator()
[425] Fix | Delete
{
[426] Fix | Delete
return $this->operator;
[427] Fix | Delete
}
[428] Fix | Delete
}
[429] Fix | Delete
[430] Fix | Delete
class Google_Service_Datastore_Entity extends Google_Model
[431] Fix | Delete
{
[432] Fix | Delete
protected $internal_gapi_mappings = array(
[433] Fix | Delete
);
[434] Fix | Delete
protected $keyType = 'Google_Service_Datastore_Key';
[435] Fix | Delete
protected $keyDataType = '';
[436] Fix | Delete
protected $propertiesType = 'Google_Service_Datastore_Property';
[437] Fix | Delete
protected $propertiesDataType = 'map';
[438] Fix | Delete
[439] Fix | Delete
[440] Fix | Delete
public function setKey(Google_Service_Datastore_Key $key)
[441] Fix | Delete
{
[442] Fix | Delete
$this->key = $key;
[443] Fix | Delete
}
[444] Fix | Delete
public function getKey()
[445] Fix | Delete
{
[446] Fix | Delete
return $this->key;
[447] Fix | Delete
}
[448] Fix | Delete
public function setProperties($properties)
[449] Fix | Delete
{
[450] Fix | Delete
$this->properties = $properties;
[451] Fix | Delete
}
[452] Fix | Delete
public function getProperties()
[453] Fix | Delete
{
[454] Fix | Delete
return $this->properties;
[455] Fix | Delete
}
[456] Fix | Delete
}
[457] Fix | Delete
[458] Fix | Delete
class Google_Service_Datastore_EntityProperties extends Google_Model
[459] Fix | Delete
{
[460] Fix | Delete
}
[461] Fix | Delete
[462] Fix | Delete
class Google_Service_Datastore_EntityResult extends Google_Model
[463] Fix | Delete
{
[464] Fix | Delete
protected $internal_gapi_mappings = array(
[465] Fix | Delete
);
[466] Fix | Delete
protected $entityType = 'Google_Service_Datastore_Entity';
[467] Fix | Delete
protected $entityDataType = '';
[468] Fix | Delete
[469] Fix | Delete
[470] Fix | Delete
public function setEntity(Google_Service_Datastore_Entity $entity)
[471] Fix | Delete
{
[472] Fix | Delete
$this->entity = $entity;
[473] Fix | Delete
}
[474] Fix | Delete
public function getEntity()
[475] Fix | Delete
{
[476] Fix | Delete
return $this->entity;
[477] Fix | Delete
}
[478] Fix | Delete
}
[479] Fix | Delete
[480] Fix | Delete
class Google_Service_Datastore_Filter extends Google_Model
[481] Fix | Delete
{
[482] Fix | Delete
protected $internal_gapi_mappings = array(
[483] Fix | Delete
);
[484] Fix | Delete
protected $compositeFilterType = 'Google_Service_Datastore_CompositeFilter';
[485] Fix | Delete
protected $compositeFilterDataType = '';
[486] Fix | Delete
protected $propertyFilterType = 'Google_Service_Datastore_PropertyFilter';
[487] Fix | Delete
protected $propertyFilterDataType = '';
[488] Fix | Delete
[489] Fix | Delete
[490] Fix | Delete
public function setCompositeFilter(Google_Service_Datastore_CompositeFilter $compositeFilter)
[491] Fix | Delete
{
[492] Fix | Delete
$this->compositeFilter = $compositeFilter;
[493] Fix | Delete
}
[494] Fix | Delete
public function getCompositeFilter()
[495] Fix | Delete
{
[496] Fix | Delete
return $this->compositeFilter;
[497] Fix | Delete
}
[498] Fix | Delete
public function setPropertyFilter(Google_Service_Datastore_PropertyFilter $propertyFilter)
[499] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function