| 1 |
<?php |
| 2 |
/* |
| 3 |
* Copyright 2010 Google Inc. |
| 4 |
* |
| 5 |
* Licensed under the Apache License, Version 2.0 (the "License"); you may not |
| 6 |
* use this file except in compliance with the License. You may obtain a copy of |
| 7 |
* the License at |
| 8 |
* |
| 9 |
* http://www.apache.org/licenses/LICENSE-2.0 |
| 10 |
* |
| 11 |
* Unless required by applicable law or agreed to in writing, software |
| 12 |
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 13 |
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| 14 |
* License for the specific language governing permissions and limitations under |
| 15 |
* the License. |
| 16 |
*/ |
| 17 |
|
| 18 |
/** |
| 19 |
* Service definition for ShoppingContent (v2). |
| 20 |
* |
| 21 |
* <p> |
| 22 |
* Manage product items, inventory, and Merchant Center accounts for Google Shopping. |
| 23 |
* </p> |
| 24 |
* |
| 25 |
* <p> |
| 26 |
* For more information about this service, see the API |
| 27 |
* <a href="https://developers.google.com/shopping-content/v2/" target="_blank">Documentation</a> |
| 28 |
* </p> |
| 29 |
* |
| 30 |
* @author Google, Inc. |
| 31 |
*/ |
| 32 |
class Analytify_Google_Service_ShoppingContent extends Analytify_Google_Service |
| 33 |
{ |
| 34 |
/** Manage your product listings and accounts for Google Shopping. */ |
| 35 |
const CONTENT = "https://www.googleapis.com/auth/content"; |
| 36 |
|
| 37 |
public $accounts; |
| 38 |
public $accountshipping; |
| 39 |
public $accountstatuses; |
| 40 |
public $accounttax; |
| 41 |
public $datafeeds; |
| 42 |
public $datafeedstatuses; |
| 43 |
public $inventory; |
| 44 |
public $products; |
| 45 |
public $productstatuses; |
| 46 |
|
| 47 |
|
| 48 |
/** |
| 49 |
* Constructs the internal representation of the ShoppingContent service. |
| 50 |
* |
| 51 |
* @param Analytify_Google_Client $client |
| 52 |
*/ |
| 53 |
public function __construct(Analytify_Google_Client $client) |
| 54 |
{ |
| 55 |
parent::__construct($client); |
| 56 |
$this->servicePath = 'content/v2/'; |
| 57 |
$this->version = 'v2'; |
| 58 |
$this->serviceName = 'content'; |
| 59 |
|
| 60 |
$this->accounts = new Analytify_Google_Service_ShoppingContent_Accounts_Resource( |
| 61 |
$this, |
| 62 |
$this->serviceName, |
| 63 |
'accounts', |
| 64 |
array( |
| 65 |
'methods' => array( |
| 66 |
'custombatch' => array( |
| 67 |
'path' => 'accounts/batch', |
| 68 |
'httpMethod' => 'POST', |
| 69 |
'parameters' => array(), |
| 70 |
),'delete' => array( |
| 71 |
'path' => '{merchantId}/accounts/{accountId}', |
| 72 |
'httpMethod' => 'DELETE', |
| 73 |
'parameters' => array( |
| 74 |
'merchantId' => array( |
| 75 |
'location' => 'path', |
| 76 |
'type' => 'string', |
| 77 |
'required' => true, |
| 78 |
), |
| 79 |
'accountId' => array( |
| 80 |
'location' => 'path', |
| 81 |
'type' => 'string', |
| 82 |
'required' => true, |
| 83 |
), |
| 84 |
), |
| 85 |
),'get' => array( |
| 86 |
'path' => '{merchantId}/accounts/{accountId}', |
| 87 |
'httpMethod' => 'GET', |
| 88 |
'parameters' => array( |
| 89 |
'merchantId' => array( |
| 90 |
'location' => 'path', |
| 91 |
'type' => 'string', |
| 92 |
'required' => true, |
| 93 |
), |
| 94 |
'accountId' => array( |
| 95 |
'location' => 'path', |
| 96 |
'type' => 'string', |
| 97 |
'required' => true, |
| 98 |
), |
| 99 |
), |
| 100 |
),'insert' => array( |
| 101 |
'path' => '{merchantId}/accounts', |
| 102 |
'httpMethod' => 'POST', |
| 103 |
'parameters' => array( |
| 104 |
'merchantId' => array( |
| 105 |
'location' => 'path', |
| 106 |
'type' => 'string', |
| 107 |
'required' => true, |
| 108 |
), |
| 109 |
), |
| 110 |
),'list' => array( |
| 111 |
'path' => '{merchantId}/accounts', |
| 112 |
'httpMethod' => 'GET', |
| 113 |
'parameters' => array( |
| 114 |
'merchantId' => array( |
| 115 |
'location' => 'path', |
| 116 |
'type' => 'string', |
| 117 |
'required' => true, |
| 118 |
), |
| 119 |
'pageToken' => array( |
| 120 |
'location' => 'query', |
| 121 |
'type' => 'string', |
| 122 |
), |
| 123 |
'maxResults' => array( |
| 124 |
'location' => 'query', |
| 125 |
'type' => 'integer', |
| 126 |
), |
| 127 |
), |
| 128 |
),'patch' => array( |
| 129 |
'path' => '{merchantId}/accounts/{accountId}', |
| 130 |
'httpMethod' => 'PATCH', |
| 131 |
'parameters' => array( |
| 132 |
'merchantId' => array( |
| 133 |
'location' => 'path', |
| 134 |
'type' => 'string', |
| 135 |
'required' => true, |
| 136 |
), |
| 137 |
'accountId' => array( |
| 138 |
'location' => 'path', |
| 139 |
'type' => 'string', |
| 140 |
'required' => true, |
| 141 |
), |
| 142 |
), |
| 143 |
),'update' => array( |
| 144 |
'path' => '{merchantId}/accounts/{accountId}', |
| 145 |
'httpMethod' => 'PUT', |
| 146 |
'parameters' => array( |
| 147 |
'merchantId' => array( |
| 148 |
'location' => 'path', |
| 149 |
'type' => 'string', |
| 150 |
'required' => true, |
| 151 |
), |
| 152 |
'accountId' => array( |
| 153 |
'location' => 'path', |
| 154 |
'type' => 'string', |
| 155 |
'required' => true, |
| 156 |
), |
| 157 |
), |
| 158 |
), |
| 159 |
) |
| 160 |
) |
| 161 |
); |
| 162 |
$this->accountshipping = new Analytify_Google_Service_ShoppingContent_Accountshipping_Resource( |
| 163 |
$this, |
| 164 |
$this->serviceName, |
| 165 |
'accountshipping', |
| 166 |
array( |
| 167 |
'methods' => array( |
| 168 |
'patch' => array( |
| 169 |
'path' => '{merchantId}/accountshipping/{accountId}', |
| 170 |
'httpMethod' => 'PATCH', |
| 171 |
'parameters' => array( |
| 172 |
'merchantId' => array( |
| 173 |
'location' => 'path', |
| 174 |
'type' => 'string', |
| 175 |
'required' => true, |
| 176 |
), |
| 177 |
'accountId' => array( |
| 178 |
'location' => 'path', |
| 179 |
'type' => 'string', |
| 180 |
'required' => true, |
| 181 |
), |
| 182 |
), |
| 183 |
), |
| 184 |
) |
| 185 |
) |
| 186 |
); |
| 187 |
$this->accountstatuses = new Analytify_Google_Service_ShoppingContent_Accountstatuses_Resource( |
| 188 |
$this, |
| 189 |
$this->serviceName, |
| 190 |
'accountstatuses', |
| 191 |
array( |
| 192 |
'methods' => array( |
| 193 |
'custombatch' => array( |
| 194 |
'path' => 'accountstatuses/batch', |
| 195 |
'httpMethod' => 'POST', |
| 196 |
'parameters' => array(), |
| 197 |
),'get' => array( |
| 198 |
'path' => '{merchantId}/accountstatuses/{accountId}', |
| 199 |
'httpMethod' => 'GET', |
| 200 |
'parameters' => array( |
| 201 |
'merchantId' => array( |
| 202 |
'location' => 'path', |
| 203 |
'type' => 'string', |
| 204 |
'required' => true, |
| 205 |
), |
| 206 |
'accountId' => array( |
| 207 |
'location' => 'path', |
| 208 |
'type' => 'string', |
| 209 |
'required' => true, |
| 210 |
), |
| 211 |
), |
| 212 |
),'list' => array( |
| 213 |
'path' => '{merchantId}/accountstatuses', |
| 214 |
'httpMethod' => 'GET', |
| 215 |
'parameters' => array( |
| 216 |
'merchantId' => array( |
| 217 |
'location' => 'path', |
| 218 |
'type' => 'string', |
| 219 |
'required' => true, |
| 220 |
), |
| 221 |
'pageToken' => array( |
| 222 |
'location' => 'query', |
| 223 |
'type' => 'string', |
| 224 |
), |
| 225 |
'maxResults' => array( |
| 226 |
'location' => 'query', |
| 227 |
'type' => 'integer', |
| 228 |
), |
| 229 |
), |
| 230 |
), |
| 231 |
) |
| 232 |
) |
| 233 |
); |
| 234 |
$this->accounttax = new Analytify_Google_Service_ShoppingContent_Accounttax_Resource( |
| 235 |
$this, |
| 236 |
$this->serviceName, |
| 237 |
'accounttax', |
| 238 |
array( |
| 239 |
'methods' => array( |
| 240 |
'patch' => array( |
| 241 |
'path' => '{merchantId}/accounttax/{accountId}', |
| 242 |
'httpMethod' => 'PATCH', |
| 243 |
'parameters' => array( |
| 244 |
'merchantId' => array( |
| 245 |
'location' => 'path', |
| 246 |
'type' => 'string', |
| 247 |
'required' => true, |
| 248 |
), |
| 249 |
'accountId' => array( |
| 250 |
'location' => 'path', |
| 251 |
'type' => 'string', |
| 252 |
'required' => true, |
| 253 |
), |
| 254 |
), |
| 255 |
), |
| 256 |
) |
| 257 |
) |
| 258 |
); |
| 259 |
$this->datafeeds = new Analytify_Google_Service_ShoppingContent_Datafeeds_Resource( |
| 260 |
$this, |
| 261 |
$this->serviceName, |
| 262 |
'datafeeds', |
| 263 |
array( |
| 264 |
'methods' => array( |
| 265 |
'batch' => array( |
| 266 |
'path' => 'datafeedsNativeBatch', |
| 267 |
'httpMethod' => 'POST', |
| 268 |
'parameters' => array(), |
| 269 |
),'custombatch' => array( |
| 270 |
'path' => 'datafeeds/batch', |
| 271 |
'httpMethod' => 'POST', |
| 272 |
'parameters' => array(), |
| 273 |
),'delete' => array( |
| 274 |
'path' => '{merchantId}/datafeeds/{datafeedId}', |
| 275 |
'httpMethod' => 'DELETE', |
| 276 |
'parameters' => array( |
| 277 |
'merchantId' => array( |
| 278 |
'location' => 'path', |
| 279 |
'type' => 'string', |
| 280 |
'required' => true, |
| 281 |
), |
| 282 |
'datafeedId' => array( |
| 283 |
'location' => 'path', |
| 284 |
'type' => 'string', |
| 285 |
'required' => true, |
| 286 |
), |
| 287 |
), |
| 288 |
),'get' => array( |
| 289 |
'path' => '{merchantId}/datafeeds/{datafeedId}', |
| 290 |
'httpMethod' => 'GET', |
| 291 |
'parameters' => array( |
| 292 |
'merchantId' => array( |
| 293 |
'location' => 'path', |
| 294 |
'type' => 'string', |
| 295 |
'required' => true, |
| 296 |
), |
| 297 |
'datafeedId' => array( |
| 298 |
'location' => 'path', |
| 299 |
'type' => 'string', |
| 300 |
'required' => true, |
| 301 |
), |
| 302 |
), |
| 303 |
),'insert' => array( |
| 304 |
'path' => '{merchantId}/datafeeds', |
| 305 |
'httpMethod' => 'POST', |
| 306 |
'parameters' => array( |
| 307 |
'merchantId' => array( |
| 308 |
'location' => 'path', |
| 309 |
'type' => 'string', |
| 310 |
'required' => true, |
| 311 |
), |
| 312 |
), |
| 313 |
),'list' => array( |
| 314 |
'path' => '{merchantId}/datafeeds', |
| 315 |
'httpMethod' => 'GET', |
| 316 |
'parameters' => array( |
| 317 |
'merchantId' => array( |
| 318 |
'location' => 'path', |
| 319 |
'type' => 'string', |
| 320 |
'required' => true, |
| 321 |
), |
| 322 |
), |
| 323 |
),'patch' => array( |
| 324 |
'path' => '{merchantId}/datafeeds/{datafeedId}', |
| 325 |
'httpMethod' => 'PATCH', |
| 326 |
'parameters' => array( |
| 327 |
'merchantId' => array( |
| 328 |
'location' => 'path', |
| 329 |
'type' => 'string', |
| 330 |
'required' => true, |
| 331 |
), |
| 332 |
'datafeedId' => array( |
| 333 |
'location' => 'path', |
| 334 |
'type' => 'string', |
| 335 |
'required' => true, |
| 336 |
), |
| 337 |
), |
| 338 |
),'update' => array( |
| 339 |
'path' => '{merchantId}/datafeeds/{datafeedId}', |
| 340 |
'httpMethod' => 'PUT', |
| 341 |
'parameters' => array( |
| 342 |
'merchantId' => array( |
| 343 |
'location' => 'path', |
| 344 |
'type' => 'string', |
| 345 |
'required' => true, |
| 346 |
), |
| 347 |
'datafeedId' => array( |
| 348 |
'location' => 'path', |
| 349 |
'type' => 'string', |
| 350 |
'required' => true, |
| 351 |
), |
| 352 |
), |
| 353 |
), |
| 354 |
) |
| 355 |
) |
| 356 |
); |
| 357 |
$this->datafeedstatuses = new Analytify_Google_Service_ShoppingContent_Datafeedstatuses_Resource( |
| 358 |
$this, |
| 359 |
$this->serviceName, |
| 360 |
'datafeedstatuses', |
| 361 |
array( |
| 362 |
'methods' => array( |
| 363 |
'batch' => array( |
| 364 |
'path' => 'datafeedstatusesNativeBatch', |
| 365 |
'httpMethod' => 'POST', |
| 366 |
'parameters' => array(), |
| 367 |
),'custombatch' => array( |
| 368 |
'path' => 'datafeedstatuses/batch', |
| 369 |
'httpMethod' => 'POST', |
| 370 |
'parameters' => array(), |
| 371 |
),'get' => array( |
| 372 |
'path' => '{merchantId}/datafeedstatuses/{datafeedId}', |
| 373 |
'httpMethod' => 'GET', |
| 374 |
'parameters' => array( |
| 375 |
'merchantId' => array( |
| 376 |
'location' => 'path', |
| 377 |
'type' => 'string', |
| 378 |
'required' => true, |
| 379 |
), |
| 380 |
'datafeedId' => array( |
| 381 |
'location' => 'path', |
| 382 |
'type' => 'string', |
| 383 |
'required' => true, |
| 384 |
), |
| 385 |
), |
| 386 |
),'list' => array( |
| 387 |
'path' => '{merchantId}/datafeedstatuses', |
| 388 |
'httpMethod' => 'GET', |
| 389 |
'parameters' => array( |
| 390 |
'merchantId' => array( |
| 391 |
'location' => 'path', |
| 392 |
'type' => 'string', |
| 393 |
'required' => true, |
| 394 |
), |
| 395 |
), |
| 396 |
), |
| 397 |
) |
| 398 |
) |
| 399 |
); |
| 400 |
$this->inventory = new Analytify_Google_Service_ShoppingContent_Inventory_Resource( |
| 401 |
$this, |
| 402 |
$this->serviceName, |
| 403 |
'inventory', |
| 404 |
array( |
| 405 |
'methods' => array( |
| 406 |
'custombatch' => array( |
| 407 |
'path' => 'inventory/batch', |
| 408 |
'httpMethod' => 'POST', |
| 409 |
'parameters' => array(), |
| 410 |
),'set' => array( |
| 411 |
'path' => '{merchantId}/inventory/{storeCode}/products/{productId}', |
| 412 |
'httpMethod' => 'POST', |
| 413 |
'parameters' => array( |
| 414 |
'merchantId' => array( |
| 415 |
'location' => 'path', |
| 416 |
'type' => 'string', |
| 417 |
'required' => true, |
| 418 |
), |
| 419 |
'storeCode' => array( |
| 420 |
'location' => 'path', |
| 421 |
'type' => 'string', |
| 422 |
'required' => true, |
| 423 |
), |
| 424 |
'productId' => array( |
| 425 |
'location' => 'path', |
| 426 |
'type' => 'string', |
| 427 |
'required' => true, |
| 428 |
), |
| 429 |
), |
| 430 |
), |
| 431 |
) |
| 432 |
) |
| 433 |
); |
| 434 |
$this->products = new Analytify_Google_Service_ShoppingContent_Products_Resource( |
| 435 |
$this, |
| 436 |
$this->serviceName, |
| 437 |
'products', |
| 438 |
array( |
| 439 |
'methods' => array( |
| 440 |
'custombatch' => array( |
| 441 |
'path' => 'products/batch', |
| 442 |
'httpMethod' => 'POST', |
| 443 |
'parameters' => array( |
| 444 |
'dryRun' => array( |
| 445 |
'location' => 'query', |
| 446 |
'type' => 'boolean', |
| 447 |
), |
| 448 |
), |
| 449 |
),'delete' => array( |
| 450 |
'path' => '{merchantId}/products/{productId}', |
| 451 |
'httpMethod' => 'DELETE', |
| 452 |
'parameters' => array( |
| 453 |
'merchantId' => array( |
| 454 |
'location' => 'path', |
| 455 |
'type' => 'string', |
| 456 |
'required' => true, |
| 457 |
), |
| 458 |
'productId' => array( |
| 459 |
'location' => 'path', |
| 460 |
'type' => 'string', |
| 461 |
'required' => true, |
| 462 |
), |
| 463 |
'dryRun' => array( |
| 464 |
'location' => 'query', |
| 465 |
'type' => 'boolean', |
| 466 |
), |
| 467 |
), |
| 468 |
),'get' => array( |
| 469 |
'path' => '{merchantId}/products/{productId}', |
| 470 |
'httpMethod' => 'GET', |
| 471 |
'parameters' => array( |
| 472 |
'merchantId' => array( |
| 473 |
'location' => 'path', |
| 474 |
'type' => 'string', |
| 475 |
'required' => true, |
| 476 |
), |
| 477 |
'productId' => array( |
| 478 |
'location' => 'path', |
| 479 |
'type' => 'string', |
| 480 |
'required' => true, |
| 481 |
), |
| 482 |
), |
| 483 |
),'insert' => array( |
| 484 |
'path' => '{merchantId}/products', |
| 485 |
'httpMethod' => 'POST', |
| 486 |
'parameters' => array( |
| 487 |
'merchantId' => array( |
| 488 |
'location' => 'path', |
| 489 |
'type' => 'string', |
| 490 |
'required' => true, |
| 491 |
), |
| 492 |
'dryRun' => array( |
| 493 |
'location' => 'query', |
| 494 |
'type' => 'boolean', |
| 495 |
), |
| 496 |
), |
| 497 |
),'list' => array( |
| 498 |
'path' => '{merchantId}/products', |
| 499 |
'httpMethod' => 'GET', |
| 500 |
'parameters' => array( |
| 501 |
'merchantId' => array( |
| 502 |
'location' => 'path', |
| 503 |
'type' => 'string', |
| 504 |
'required' => true, |
| 505 |
), |
| 506 |
'pageToken' => array( |
| 507 |
'location' => 'query', |
| 508 |
'type' => 'string', |
| 509 |
), |
| 510 |
'maxResults' => array( |
| 511 |
'location' => 'query', |
| 512 |
'type' => 'integer', |
| 513 |
), |
| 514 |
), |
| 515 |
), |
| 516 |
) |
| 517 |
) |
| 518 |
); |
| 519 |
$this->productstatuses = new Analytify_Google_Service_ShoppingContent_Productstatuses_Resource( |
| 520 |
$this, |
| 521 |
$this->serviceName, |
| 522 |
'productstatuses', |
| 523 |
array( |
| 524 |
'methods' => array( |
| 525 |
'custombatch' => array( |
| 526 |
'path' => 'productstatuses/batch', |
| 527 |
'httpMethod' => 'POST', |
| 528 |
'parameters' => array(), |
| 529 |
),'get' => array( |
| 530 |
'path' => '{merchantId}/productstatuses/{productId}', |
| 531 |
'httpMethod' => 'GET', |
| 532 |
'parameters' => array( |
| 533 |
'merchantId' => array( |
| 534 |
'location' => 'path', |
| 535 |
'type' => 'string', |
| 536 |
'required' => true, |
| 537 |
), |
| 538 |
'productId' => array( |
| 539 |
'location' => 'path', |
| 540 |
'type' => 'string', |
| 541 |
'required' => true, |
| 542 |
), |
| 543 |
), |
| 544 |
),'list' => array( |
| 545 |
'path' => '{merchantId}/productstatuses', |
| 546 |
'httpMethod' => 'GET', |
| 547 |
'parameters' => array( |
| 548 |
'merchantId' => array( |
| 549 |
'location' => 'path', |
| 550 |
'type' => 'string', |
| 551 |
'required' => true, |
| 552 |
), |
| 553 |
'pageToken' => array( |
| 554 |
'location' => 'query', |
| 555 |
'type' => 'string', |
| 556 |
), |
| 557 |
'maxResults' => array( |
| 558 |
'location' => 'query', |
| 559 |
'type' => 'integer', |
| 560 |
), |
| 561 |
), |
| 562 |
), |
| 563 |
) |
| 564 |
) |
| 565 |
); |
| 566 |
} |
| 567 |
} |
| 568 |
|
| 569 |
|
| 570 |
/** |
| 571 |
* The "accounts" collection of methods. |
| 572 |
* Typical usage is: |
| 573 |
* <code> |
| 574 |
* $contentService = new Analytify_Google_Service_ShoppingContent(...); |
| 575 |
* $accounts = $contentService->accounts; |
| 576 |
* </code> |
| 577 |
*/ |
| 578 |
class Analytify_Google_Service_ShoppingContent_Accounts_Resource extends Analytify_Google_Service_Resource |
| 579 |
{ |
| 580 |
|
| 581 |
/** |
| 582 |
* Retrieves, inserts, updates, and deletes multiple Merchant Center |
| 583 |
* (sub-)accounts in a single request. (accounts.custombatch) |
| 584 |
* |
| 585 |
* @param Analytify_Google_AccountsCustomBatchRequest $postBody |
| 586 |
* @param array $optParams Optional parameters. |
| 587 |
* @return Analytify_Google_Service_ShoppingContent_AccountsCustomBatchResponse |
| 588 |
*/ |
| 589 |
public function custombatch(Analytify_Google_Service_ShoppingContent_AccountsCustomBatchRequest $postBody, $optParams = array()) |
| 590 |
{ |
| 591 |
$params = array('postBody' => $postBody); |
| 592 |
$params = array_merge($params, $optParams); |
| 593 |
return $this->call('custombatch', array($params), "Analytify_Google_Service_ShoppingContent_AccountsCustomBatchResponse"); |
| 594 |
} |
| 595 |
/** |
| 596 |
* Deletes a Merchant Center sub-account. (accounts.delete) |
| 597 |
* |
| 598 |
* @param string $merchantId |
| 599 |
* The ID of the managing account. |
| 600 |
* @param string $accountId |
| 601 |
* The ID of the account. |
| 602 |
* @param array $optParams Optional parameters. |
| 603 |
*/ |
| 604 |
public function delete($merchantId, $accountId, $optParams = array()) |
| 605 |
{ |
| 606 |
$params = array('merchantId' => $merchantId, 'accountId' => $accountId); |
| 607 |
$params = array_merge($params, $optParams); |
| 608 |
return $this->call('delete', array($params)); |
| 609 |
} |
| 610 |
/** |
| 611 |
* Retrieves a Merchant Center account. (accounts.get) |
| 612 |
* |
| 613 |
* @param string $merchantId |
| 614 |
* The ID of the managing account. |
| 615 |
* @param string $accountId |
| 616 |
* The ID of the account. |
| 617 |
* @param array $optParams Optional parameters. |
| 618 |
* @return Analytify_Google_Service_ShoppingContent_Account |
| 619 |
*/ |
| 620 |
public function get($merchantId, $accountId, $optParams = array()) |
| 621 |
{ |
| 622 |
$params = array('merchantId' => $merchantId, 'accountId' => $accountId); |
| 623 |
$params = array_merge($params, $optParams); |
| 624 |
return $this->call('get', array($params), "Analytify_Google_Service_ShoppingContent_Account"); |
| 625 |
} |
| 626 |
/** |
| 627 |
* Creates a Merchant Center sub-account. (accounts.insert) |
| 628 |
* |
| 629 |
* @param string $merchantId |
| 630 |
* The ID of the managing account. |
| 631 |
* @param Analytify_Google_Account $postBody |
| 632 |
* @param array $optParams Optional parameters. |
| 633 |
* @return Analytify_Google_Service_ShoppingContent_Account |
| 634 |
*/ |
| 635 |
public function insert($merchantId, Analytify_Google_Service_ShoppingContent_Account $postBody, $optParams = array()) |
| 636 |
{ |
| 637 |
$params = array('merchantId' => $merchantId, 'postBody' => $postBody); |
| 638 |
$params = array_merge($params, $optParams); |
| 639 |
return $this->call('insert', array($params), "Analytify_Google_Service_ShoppingContent_Account"); |
| 640 |
} |
| 641 |
/** |
| 642 |
* Lists the sub-accounts in your Merchant Center account. |
| 643 |
* (accounts.listAccounts) |
| 644 |
* |
| 645 |
* @param string $merchantId |
| 646 |
* The ID of the managing account. |
| 647 |
* @param array $optParams Optional parameters. |
| 648 |
* |
| 649 |
* @opt_param string pageToken |
| 650 |
* The token returned by the previous request. |
| 651 |
* @opt_param string maxResults |
| 652 |
* The maximum number of accounts to return in the response, used for paging. |
| 653 |
* @return Analytify_Google_Service_ShoppingContent_AccountsListResponse |
| 654 |
*/ |
| 655 |
public function listAccounts($merchantId, $optParams = array()) |
| 656 |
{ |
| 657 |
$params = array('merchantId' => $merchantId); |
| 658 |
$params = array_merge($params, $optParams); |
| 659 |
return $this->call('list', array($params), "Analytify_Google_Service_ShoppingContent_AccountsListResponse"); |
| 660 |
} |
| 661 |
/** |
| 662 |
* Updates a Merchant Center account. This method supports patch semantics. |
| 663 |
* (accounts.patch) |
| 664 |
* |
| 665 |
* @param string $merchantId |
| 666 |
* The ID of the managing account. |
| 667 |
* @param string $accountId |
| 668 |
* The ID of the account. |
| 669 |
* @param Analytify_Google_Account $postBody |
| 670 |
* @param array $optParams Optional parameters. |
| 671 |
* @return Analytify_Google_Service_ShoppingContent_Account |
| 672 |
*/ |
| 673 |
public function patch($merchantId, $accountId, Analytify_Google_Service_ShoppingContent_Account $postBody, $optParams = array()) |
| 674 |
{ |
| 675 |
$params = array('merchantId' => $merchantId, 'accountId' => $accountId, 'postBody' => $postBody); |
| 676 |
$params = array_merge($params, $optParams); |
| 677 |
return $this->call('patch', array($params), "Analytify_Google_Service_ShoppingContent_Account"); |
| 678 |
} |
| 679 |
/** |
| 680 |
* Updates a Merchant Center account. (accounts.update) |
| 681 |
* |
| 682 |
* @param string $merchantId |
| 683 |
* The ID of the managing account. |
| 684 |
* @param string $accountId |
| 685 |
* The ID of the account. |
| 686 |
* @param Analytify_Google_Account $postBody |
| 687 |
* @param array $optParams Optional parameters. |
| 688 |
* @return Analytify_Google_Service_ShoppingContent_Account |
| 689 |
*/ |
| 690 |
public function update($merchantId, $accountId, Analytify_Google_Service_ShoppingContent_Account $postBody, $optParams = array()) |
| 691 |
{ |
| 692 |
$params = array('merchantId' => $merchantId, 'accountId' => $accountId, 'postBody' => $postBody); |
| 693 |
$params = array_merge($params, $optParams); |
| 694 |
return $this->call('update', array($params), "Analytify_Google_Service_ShoppingContent_Account"); |
| 695 |
} |
| 696 |
} |
| 697 |
|
| 698 |
/** |
| 699 |
* The "accountshipping" collection of methods. |
| 700 |
* Typical usage is: |
| 701 |
* <code> |
| 702 |
* $contentService = new Analytify_Google_Service_ShoppingContent(...); |
| 703 |
* $accountshipping = $contentService->accountshipping; |
| 704 |
* </code> |
| 705 |
*/ |
| 706 |
class Analytify_Google_Service_ShoppingContent_Accountshipping_Resource extends Analytify_Google_Service_Resource |
| 707 |
{ |
| 708 |
|
| 709 |
/** |
| 710 |
* Updates the shipping settings of the account. This method supports patch |
| 711 |
* semantics. (accountshipping.patch) |
| 712 |
* |
| 713 |
* @param string $merchantId |
| 714 |
* The ID of the managing account. |
| 715 |
* @param string $accountId |
| 716 |
* The ID of the account for which to get/update account shipping settings. |
| 717 |
* @param Analytify_Google_AccountShipping $postBody |
| 718 |
* @param array $optParams Optional parameters. |
| 719 |
* @return Analytify_Google_Service_ShoppingContent_AccountShipping |
| 720 |
*/ |
| 721 |
public function patch($merchantId, $accountId, Analytify_Google_Service_ShoppingContent_AccountShipping $postBody, $optParams = array()) |
| 722 |
{ |
| 723 |
$params = array('merchantId' => $merchantId, 'accountId' => $accountId, 'postBody' => $postBody); |
| 724 |
$params = array_merge($params, $optParams); |
| 725 |
return $this->call('patch', array($params), "Analytify_Google_Service_ShoppingContent_AccountShipping"); |
| 726 |
} |
| 727 |
} |
| 728 |
|
| 729 |
/** |
| 730 |
* The "accountstatuses" collection of methods. |
| 731 |
* Typical usage is: |
| 732 |
* <code> |
| 733 |
* $contentService = new Analytify_Google_Service_ShoppingContent(...); |
| 734 |
* $accountstatuses = $contentService->accountstatuses; |
| 735 |
* </code> |
| 736 |
*/ |
| 737 |
class Analytify_Google_Service_ShoppingContent_Accountstatuses_Resource extends Analytify_Google_Service_Resource |
| 738 |
{ |
| 739 |
|
| 740 |
/** |
| 741 |
* (accountstatuses.custombatch) |
| 742 |
* |
| 743 |
* @param Analytify_Google_AccountstatusesCustomBatchRequest $postBody |
| 744 |
* @param array $optParams Optional parameters. |
| 745 |
* @return Analytify_Google_Service_ShoppingContent_AccountstatusesCustomBatchResponse |
| 746 |
*/ |
| 747 |
public function custombatch(Analytify_Google_Service_ShoppingContent_AccountstatusesCustomBatchRequest $postBody, $optParams = array()) |
| 748 |
{ |
| 749 |
$params = array('postBody' => $postBody); |
| 750 |
$params = array_merge($params, $optParams); |
| 751 |
return $this->call('custombatch', array($params), "Analytify_Google_Service_ShoppingContent_AccountstatusesCustomBatchResponse"); |
| 752 |
} |
| 753 |
/** |
| 754 |
* Retrieves the status of a Merchant Center account. (accountstatuses.get) |
| 755 |
* |
| 756 |
* @param string $merchantId |
| 757 |
* The ID of the managing account. |
| 758 |
* @param string $accountId |
| 759 |
* The ID of the account. |
| 760 |
* @param array $optParams Optional parameters. |
| 761 |
* @return Analytify_Google_Service_ShoppingContent_AccountStatus |
| 762 |
*/ |
| 763 |
public function get($merchantId, $accountId, $optParams = array()) |
| 764 |
{ |
| 765 |
$params = array('merchantId' => $merchantId, 'accountId' => $accountId); |
| 766 |
$params = array_merge($params, $optParams); |
| 767 |
return $this->call('get', array($params), "Analytify_Google_Service_ShoppingContent_AccountStatus"); |
| 768 |
} |
| 769 |
/** |
| 770 |
* Lists the statuses of the sub-accounts in your Merchant Center account. |
| 771 |
* (accountstatuses.listAccountstatuses) |
| 772 |
* |
| 773 |
* @param string $merchantId |
| 774 |
* The ID of the managing account. |
| 775 |
* @param array $optParams Optional parameters. |
| 776 |
* |
| 777 |
* @opt_param string pageToken |
| 778 |
* The token returned by the previous request. |
| 779 |
* @opt_param string maxResults |
| 780 |
* The maximum number of account statuses to return in the response, used for paging. |
| 781 |
* @return Analytify_Google_Service_ShoppingContent_AccountstatusesListResponse |
| 782 |
*/ |
| 783 |
public function listAccountstatuses($merchantId, $optParams = array()) |
| 784 |
{ |
| 785 |
$params = array('merchantId' => $merchantId); |
| 786 |
$params = array_merge($params, $optParams); |
| 787 |
return $this->call('list', array($params), "Analytify_Google_Service_ShoppingContent_AccountstatusesListResponse"); |
| 788 |
} |
| 789 |
} |
| 790 |
|
| 791 |
/** |
| 792 |
* The "accounttax" collection of methods. |
| 793 |
* Typical usage is: |
| 794 |
* <code> |
| 795 |
* $contentService = new Analytify_Google_Service_ShoppingContent(...); |
| 796 |
* $accounttax = $contentService->accounttax; |
| 797 |
* </code> |
| 798 |
*/ |
| 799 |
class Analytify_Google_Service_ShoppingContent_Accounttax_Resource extends Analytify_Google_Service_Resource |
| 800 |
{ |
| 801 |
|
| 802 |
/** |
| 803 |
* Updates the tax settings of the account. This method supports patch |
| 804 |
* semantics. (accounttax.patch) |
| 805 |
* |
| 806 |
* @param string $merchantId |
| 807 |
* The ID of the managing account. |
| 808 |
* @param string $accountId |
| 809 |
* The ID of the account for which to get/update account tax settings. |
| 810 |
* @param Analytify_Google_AccountTax $postBody |
| 811 |
* @param array $optParams Optional parameters. |
| 812 |
* @return Analytify_Google_Service_ShoppingContent_AccountTax |
| 813 |
*/ |
| 814 |
public function patch($merchantId, $accountId, Analytify_Google_Service_ShoppingContent_AccountTax $postBody, $optParams = array()) |
| 815 |
{ |
| 816 |
$params = array('merchantId' => $merchantId, 'accountId' => $accountId, 'postBody' => $postBody); |
| 817 |
$params = array_merge($params, $optParams); |
| 818 |
return $this->call('patch', array($params), "Analytify_Google_Service_ShoppingContent_AccountTax"); |
| 819 |
} |
| 820 |
} |
| 821 |
|
| 822 |
/** |
| 823 |
* The "datafeeds" collection of methods. |
| 824 |
* Typical usage is: |
| 825 |
* <code> |
| 826 |
* $contentService = new Analytify_Google_Service_ShoppingContent(...); |
| 827 |
* $datafeeds = $contentService->datafeeds; |
| 828 |
* </code> |
| 829 |
*/ |
| 830 |
class Analytify_Google_Service_ShoppingContent_Datafeeds_Resource extends Analytify_Google_Service_Resource |
| 831 |
{ |
| 832 |
|
| 833 |
/** |
| 834 |
* (datafeeds.batch) |
| 835 |
* |
| 836 |
* @param Analytify_Google_DatafeedsBatchRequest $postBody |
| 837 |
* @param array $optParams Optional parameters. |
| 838 |
* @return Analytify_Google_Service_ShoppingContent_DatafeedsBatchResponse |
| 839 |
*/ |
| 840 |
public function batch(Analytify_Google_Service_ShoppingContent_DatafeedsBatchRequest $postBody, $optParams = array()) |
| 841 |
{ |
| 842 |
$params = array('postBody' => $postBody); |
| 843 |
$params = array_merge($params, $optParams); |
| 844 |
return $this->call('batch', array($params), "Analytify_Google_Service_ShoppingContent_DatafeedsBatchResponse"); |
| 845 |
} |
| 846 |
/** |
| 847 |
* (datafeeds.custombatch) |
| 848 |
* |
| 849 |
* @param Analytify_Google_DatafeedsCustomBatchRequest $postBody |
| 850 |
* @param array $optParams Optional parameters. |
| 851 |
* @return Analytify_Google_Service_ShoppingContent_DatafeedsCustomBatchResponse |
| 852 |
*/ |
| 853 |
public function custombatch(Analytify_Google_Service_ShoppingContent_DatafeedsCustomBatchRequest $postBody, $optParams = array()) |
| 854 |
{ |
| 855 |
$params = array('postBody' => $postBody); |
| 856 |
$params = array_merge($params, $optParams); |
| 857 |
return $this->call('custombatch', array($params), "Analytify_Google_Service_ShoppingContent_DatafeedsCustomBatchResponse"); |
| 858 |
} |
| 859 |
/** |
| 860 |
* Deletes a datafeed from your Merchant Center account. (datafeeds.delete) |
| 861 |
* |
| 862 |
* @param string $merchantId |
| 863 |
* |
| 864 |
* @param string $datafeedId |
| 865 |
* |
| 866 |
* @param array $optParams Optional parameters. |
| 867 |
*/ |
| 868 |
public function delete($merchantId, $datafeedId, $optParams = array()) |
| 869 |
{ |
| 870 |
$params = array('merchantId' => $merchantId, 'datafeedId' => $datafeedId); |
| 871 |
$params = array_merge($params, $optParams); |
| 872 |
return $this->call('delete', array($params)); |
| 873 |
} |
| 874 |
/** |
| 875 |
* Retrieves a datafeed from your Merchant Center account. (datafeeds.get) |
| 876 |
* |
| 877 |
* @param string $merchantId |
| 878 |
* |
| 879 |
* @param string $datafeedId |
| 880 |
* |
| 881 |
* @param array $optParams Optional parameters. |
| 882 |
* @return Analytify_Google_Service_ShoppingContent_Datafeed |
| 883 |
*/ |
| 884 |
public function get($merchantId, $datafeedId, $optParams = array()) |
| 885 |
{ |
| 886 |
$params = array('merchantId' => $merchantId, 'datafeedId' => $datafeedId); |
| 887 |
$params = array_merge($params, $optParams); |
| 888 |
return $this->call('get', array($params), "Analytify_Google_Service_ShoppingContent_Datafeed"); |
| 889 |
} |
| 890 |
/** |
| 891 |
* Registers a datafeed with your Merchant Center account. (datafeeds.insert) |
| 892 |
* |
| 893 |
* @param string $merchantId |
| 894 |
* |
| 895 |
* @param Analytify_Google_Datafeed $postBody |
| 896 |
* @param array $optParams Optional parameters. |
| 897 |
* @return Analytify_Google_Service_ShoppingContent_Datafeed |
| 898 |
*/ |
| 899 |
public function insert($merchantId, Analytify_Google_Service_ShoppingContent_Datafeed $postBody, $optParams = array()) |
| 900 |
{ |
| 901 |
$params = array('merchantId' => $merchantId, 'postBody' => $postBody); |
| 902 |
$params = array_merge($params, $optParams); |
| 903 |
return $this->call('insert', array($params), "Analytify_Google_Service_ShoppingContent_Datafeed"); |
| 904 |
} |
| 905 |
/** |
| 906 |
* Lists the datafeeds in your Merchant Center account. |
| 907 |
* (datafeeds.listDatafeeds) |
| 908 |
* |
| 909 |
* @param string $merchantId |
| 910 |
* |
| 911 |
* @param array $optParams Optional parameters. |
| 912 |
* @return Analytify_Google_Service_ShoppingContent_DatafeedsListResponse |
| 913 |
*/ |
| 914 |
public function listDatafeeds($merchantId, $optParams = array()) |
| 915 |
{ |
| 916 |
$params = array('merchantId' => $merchantId); |
| 917 |
$params = array_merge($params, $optParams); |
| 918 |
return $this->call('list', array($params), "Analytify_Google_Service_ShoppingContent_DatafeedsListResponse"); |
| 919 |
} |
| 920 |
/** |
| 921 |
* Updates a datafeed of your Merchant Center account. This method supports |
| 922 |
* patch semantics. (datafeeds.patch) |
| 923 |
* |
| 924 |
* @param string $merchantId |
| 925 |
* |
| 926 |
* @param string $datafeedId |
| 927 |
* |
| 928 |
* @param Analytify_Google_Datafeed $postBody |
| 929 |
* @param array $optParams Optional parameters. |
| 930 |
* @return Analytify_Google_Service_ShoppingContent_Datafeed |
| 931 |
*/ |
| 932 |
public function patch($merchantId, $datafeedId, Analytify_Google_Service_ShoppingContent_Datafeed $postBody, $optParams = array()) |
| 933 |
{ |
| 934 |
$params = array('merchantId' => $merchantId, 'datafeedId' => $datafeedId, 'postBody' => $postBody); |
| 935 |
$params = array_merge($params, $optParams); |
| 936 |
return $this->call('patch', array($params), "Analytify_Google_Service_ShoppingContent_Datafeed"); |
| 937 |
} |
| 938 |
/** |
| 939 |
* Updates a datafeed of your Merchant Center account. (datafeeds.update) |
| 940 |
* |
| 941 |
* @param string $merchantId |
| 942 |
* |
| 943 |
* @param string $datafeedId |
| 944 |
* |
| 945 |
* @param Analytify_Google_Datafeed $postBody |
| 946 |
* @param array $optParams Optional parameters. |
| 947 |
* @return Analytify_Google_Service_ShoppingContent_Datafeed |
| 948 |
*/ |
| 949 |
public function update($merchantId, $datafeedId, Analytify_Google_Service_ShoppingContent_Datafeed $postBody, $optParams = array()) |
| 950 |
{ |
| 951 |
$params = array('merchantId' => $merchantId, 'datafeedId' => $datafeedId, 'postBody' => $postBody); |
| 952 |
$params = array_merge($params, $optParams); |
| 953 |
return $this->call('update', array($params), "Analytify_Google_Service_ShoppingContent_Datafeed"); |
| 954 |
} |
| 955 |
} |
| 956 |
|
| 957 |
/** |
| 958 |
* The "datafeedstatuses" collection of methods. |
| 959 |
* Typical usage is: |
| 960 |
* <code> |
| 961 |
* $contentService = new Analytify_Google_Service_ShoppingContent(...); |
| 962 |
* $datafeedstatuses = $contentService->datafeedstatuses; |
| 963 |
* </code> |
| 964 |
*/ |
| 965 |
class Analytify_Google_Service_ShoppingContent_Datafeedstatuses_Resource extends Analytify_Google_Service_Resource |
| 966 |
{ |
| 967 |
|
| 968 |
/** |
| 969 |
* (datafeedstatuses.batch) |
| 970 |
* |
| 971 |
* @param Analytify_Google_DatafeedstatusesBatchRequest $postBody |
| 972 |
* @param array $optParams Optional parameters. |
| 973 |
* @return Analytify_Google_Service_ShoppingContent_DatafeedstatusesBatchResponse |
| 974 |
*/ |
| 975 |
public function batch(Analytify_Google_Service_ShoppingContent_DatafeedstatusesBatchRequest $postBody, $optParams = array()) |
| 976 |
{ |
| 977 |
$params = array('postBody' => $postBody); |
| 978 |
$params = array_merge($params, $optParams); |
| 979 |
return $this->call('batch', array($params), "Analytify_Google_Service_ShoppingContent_DatafeedstatusesBatchResponse"); |
| 980 |
} |
| 981 |
/** |
| 982 |
* (datafeedstatuses.custombatch) |
| 983 |
* |
| 984 |
* @param Analytify_Google_DatafeedstatusesCustomBatchRequest $postBody |
| 985 |
* @param array $optParams Optional parameters. |
| 986 |
* @return Analytify_Google_Service_ShoppingContent_DatafeedstatusesCustomBatchResponse |
| 987 |
*/ |
| 988 |
public function custombatch(Analytify_Google_Service_ShoppingContent_DatafeedstatusesCustomBatchRequest $postBody, $optParams = array()) |
| 989 |
{ |
| 990 |
$params = array('postBody' => $postBody); |
| 991 |
$params = array_merge($params, $optParams); |
| 992 |
return $this->call('custombatch', array($params), "Analytify_Google_Service_ShoppingContent_DatafeedstatusesCustomBatchResponse"); |
| 993 |
} |
| 994 |
/** |
| 995 |
* Retrieves the status of a datafeed from your Merchant Center account. |
| 996 |
* (datafeedstatuses.get) |
| 997 |
* |
| 998 |
* @param string $merchantId |
| 999 |
* |
| 1000 |
* @param string $datafeedId |
| 1001 |
* |
| 1002 |
* @param array $optParams Optional parameters. |
| 1003 |
* @return Analytify_Google_Service_ShoppingContent_DatafeedStatus |
| 1004 |
*/ |
| 1005 |
public function get($merchantId, $datafeedId, $optParams = array()) |
| 1006 |
{ |
| 1007 |
$params = array('merchantId' => $merchantId, 'datafeedId' => $datafeedId); |
| 1008 |
$params = array_merge($params, $optParams); |
| 1009 |
return $this->call('get', array($params), "Analytify_Google_Service_ShoppingContent_DatafeedStatus"); |
| 1010 |
} |
| 1011 |
/** |
| 1012 |
* Lists the statuses of the datafeeds in your Merchant Center account. |
| 1013 |
* (datafeedstatuses.listDatafeedstatuses) |
| 1014 |
* |
| 1015 |
* @param string $merchantId |
| 1016 |
* |
| 1017 |
* @param array $optParams Optional parameters. |
| 1018 |
* @return Analytify_Google_Service_ShoppingContent_DatafeedstatusesListResponse |
| 1019 |
*/ |
| 1020 |
public function listDatafeedstatuses($merchantId, $optParams = array()) |
| 1021 |
{ |
| 1022 |
$params = array('merchantId' => $merchantId); |
| 1023 |
$params = array_merge($params, $optParams); |
| 1024 |
return $this->call('list', array($params), "Analytify_Google_Service_ShoppingContent_DatafeedstatusesListResponse"); |
| 1025 |
} |
| 1026 |
} |
| 1027 |
|
| 1028 |
/** |
| 1029 |
* The "inventory" collection of methods. |
| 1030 |
* Typical usage is: |
| 1031 |
* <code> |
| 1032 |
* $contentService = new Analytify_Google_Service_ShoppingContent(...); |
| 1033 |
* $inventory = $contentService->inventory; |
| 1034 |
* </code> |
| 1035 |
*/ |
| 1036 |
class Analytify_Google_Service_ShoppingContent_Inventory_Resource extends Analytify_Google_Service_Resource |
| 1037 |
{ |
| 1038 |
|
| 1039 |
/** |
| 1040 |
* Updates price and availability for multiple products or stores in a single |
| 1041 |
* request. (inventory.custombatch) |
| 1042 |
* |
| 1043 |
* @param Analytify_Google_InventoryCustomBatchRequest $postBody |
| 1044 |
* @param array $optParams Optional parameters. |
| 1045 |
* @return Analytify_Google_Service_ShoppingContent_InventoryCustomBatchResponse |
| 1046 |
*/ |
| 1047 |
public function custombatch(Analytify_Google_Service_ShoppingContent_InventoryCustomBatchRequest $postBody, $optParams = array()) |
| 1048 |
{ |
| 1049 |
$params = array('postBody' => $postBody); |
| 1050 |
$params = array_merge($params, $optParams); |
| 1051 |
return $this->call('custombatch', array($params), "Analytify_Google_Service_ShoppingContent_InventoryCustomBatchResponse"); |
| 1052 |
} |
| 1053 |
/** |
| 1054 |
* Updates price and availability of a product in your Merchant Center account. |
| 1055 |
* (inventory.set) |
| 1056 |
* |
| 1057 |
* @param string $merchantId |
| 1058 |
* The ID of the managing account. |
| 1059 |
* @param string $storeCode |
| 1060 |
* The code of the store for which to update price and availability. Use online to update price and |
| 1061 |
* availability of an online product. |
| 1062 |
* @param string $productId |
| 1063 |
* The ID of the product for which to update price and availability. |
| 1064 |
* @param Analytify_Google_InventorySetRequest $postBody |
| 1065 |
* @param array $optParams Optional parameters. |
| 1066 |
* @return Analytify_Google_Service_ShoppingContent_InventorySetResponse |
| 1067 |
*/ |
| 1068 |
public function set($merchantId, $storeCode, $productId, Analytify_Google_Service_ShoppingContent_InventorySetRequest $postBody, $optParams = array()) |
| 1069 |
{ |
| 1070 |
$params = array('merchantId' => $merchantId, 'storeCode' => $storeCode, 'productId' => $productId, 'postBody' => $postBody); |
| 1071 |
$params = array_merge($params, $optParams); |
| 1072 |
return $this->call('set', array($params), "Analytify_Google_Service_ShoppingContent_InventorySetResponse"); |
| 1073 |
} |
| 1074 |
} |
| 1075 |
|
| 1076 |
/** |
| 1077 |
* The "products" collection of methods. |
| 1078 |
* Typical usage is: |
| 1079 |
* <code> |
| 1080 |
* $contentService = new Analytify_Google_Service_ShoppingContent(...); |
| 1081 |
* $products = $contentService->products; |
| 1082 |
* </code> |
| 1083 |
*/ |
| 1084 |
class Analytify_Google_Service_ShoppingContent_Products_Resource extends Analytify_Google_Service_Resource |
| 1085 |
{ |
| 1086 |
|
| 1087 |
/** |
| 1088 |
* Retrieves, inserts, and deletes multiple products in a single request. |
| 1089 |
* (products.custombatch) |
| 1090 |
* |
| 1091 |
* @param Analytify_Google_ProductsCustomBatchRequest $postBody |
| 1092 |
* @param array $optParams Optional parameters. |
| 1093 |
* |
| 1094 |
* @opt_param bool dryRun |
| 1095 |
* Flag to run the request in dry-run mode. |
| 1096 |
* @return Analytify_Google_Service_ShoppingContent_ProductsCustomBatchResponse |
| 1097 |
*/ |
| 1098 |
public function custombatch(Analytify_Google_Service_ShoppingContent_ProductsCustomBatchRequest $postBody, $optParams = array()) |
| 1099 |
{ |
| 1100 |
$params = array('postBody' => $postBody); |
| 1101 |
$params = array_merge($params, $optParams); |
| 1102 |
return $this->call('custombatch', array($params), "Analytify_Google_Service_ShoppingContent_ProductsCustomBatchResponse"); |
| 1103 |
} |
| 1104 |
/** |
| 1105 |
* Deletes a product from your Merchant Center account. (products.delete) |
| 1106 |
* |
| 1107 |
* @param string $merchantId |
| 1108 |
* The ID of the managing account. |
| 1109 |
* @param string $productId |
| 1110 |
* The ID of the product. |
| 1111 |
* @param array $optParams Optional parameters. |
| 1112 |
* |
| 1113 |
* @opt_param bool dryRun |
| 1114 |
* Flag to run the request in dry-run mode. |
| 1115 |
*/ |
| 1116 |
public function delete($merchantId, $productId, $optParams = array()) |
| 1117 |
{ |
| 1118 |
$params = array('merchantId' => $merchantId, 'productId' => $productId); |
| 1119 |
$params = array_merge($params, $optParams); |
| 1120 |
return $this->call('delete', array($params)); |
| 1121 |
} |
| 1122 |
/** |
| 1123 |
* Retrieves a product from your Merchant Center account. (products.get) |
| 1124 |
* |
| 1125 |
* @param string $merchantId |
| 1126 |
* The ID of the managing account. |
| 1127 |
* @param string $productId |
| 1128 |
* The ID of the product. |
| 1129 |
* @param array $optParams Optional parameters. |
| 1130 |
* @return Analytify_Google_Service_ShoppingContent_Product |
| 1131 |
*/ |
| 1132 |
public function get($merchantId, $productId, $optParams = array()) |
| 1133 |
{ |
| 1134 |
$params = array('merchantId' => $merchantId, 'productId' => $productId); |
| 1135 |
$params = array_merge($params, $optParams); |
| 1136 |
return $this->call('get', array($params), "Analytify_Google_Service_ShoppingContent_Product"); |
| 1137 |
} |
| 1138 |
/** |
| 1139 |
* Uploads a product to your Merchant Center account. (products.insert) |
| 1140 |
* |
| 1141 |
* @param string $merchantId |
| 1142 |
* The ID of the managing account. |
| 1143 |
* @param Analytify_Google_Product $postBody |
| 1144 |
* @param array $optParams Optional parameters. |
| 1145 |
* |
| 1146 |
* @opt_param bool dryRun |
| 1147 |
* Flag to run the request in dry-run mode. |
| 1148 |
* @return Analytify_Google_Service_ShoppingContent_Product |
| 1149 |
*/ |
| 1150 |
public function insert($merchantId, Analytify_Google_Service_ShoppingContent_Product $postBody, $optParams = array()) |
| 1151 |
{ |
| 1152 |
$params = array('merchantId' => $merchantId, 'postBody' => $postBody); |
| 1153 |
$params = array_merge($params, $optParams); |
| 1154 |
return $this->call('insert', array($params), "Analytify_Google_Service_ShoppingContent_Product"); |
| 1155 |
} |
| 1156 |
/** |
| 1157 |
* Lists the products in your Merchant Center account. (products.listProducts) |
| 1158 |
* |
| 1159 |
* @param string $merchantId |
| 1160 |
* The ID of the managing account. |
| 1161 |
* @param array $optParams Optional parameters. |
| 1162 |
* |
| 1163 |
* @opt_param string pageToken |
| 1164 |
* The token returned by the previous request. |
| 1165 |
* @opt_param string maxResults |
| 1166 |
* The maximum number of products to return in the response, used for paging. |
| 1167 |
* @return Analytify_Google_Service_ShoppingContent_ProductsListResponse |
| 1168 |
*/ |
| 1169 |
public function listProducts($merchantId, $optParams = array()) |
| 1170 |
{ |
| 1171 |
$params = array('merchantId' => $merchantId); |
| 1172 |
$params = array_merge($params, $optParams); |
| 1173 |
return $this->call('list', array($params), "Analytify_Google_Service_ShoppingContent_ProductsListResponse"); |
| 1174 |
} |
| 1175 |
} |
| 1176 |
|
| 1177 |
/** |
| 1178 |
* The "productstatuses" collection of methods. |
| 1179 |
* Typical usage is: |
| 1180 |
* <code> |
| 1181 |
* $contentService = new Analytify_Google_Service_ShoppingContent(...); |
| 1182 |
* $productstatuses = $contentService->productstatuses; |
| 1183 |
* </code> |
| 1184 |
*/ |
| 1185 |
class Analytify_Google_Service_ShoppingContent_Productstatuses_Resource extends Analytify_Google_Service_Resource |
| 1186 |
{ |
| 1187 |
|
| 1188 |
/** |
| 1189 |
* Gets the statuses of multiple products in a single request. |
| 1190 |
* (productstatuses.custombatch) |
| 1191 |
* |
| 1192 |
* @param Analytify_Google_ProductstatusesCustomBatchRequest $postBody |
| 1193 |
* @param array $optParams Optional parameters. |
| 1194 |
* @return Analytify_Google_Service_ShoppingContent_ProductstatusesCustomBatchResponse |
| 1195 |
*/ |
| 1196 |
public function custombatch(Analytify_Google_Service_ShoppingContent_ProductstatusesCustomBatchRequest $postBody, $optParams = array()) |
| 1197 |
{ |
| 1198 |
$params = array('postBody' => $postBody); |
| 1199 |
$params = array_merge($params, $optParams); |
| 1200 |
return $this->call('custombatch', array($params), "Analytify_Google_Service_ShoppingContent_ProductstatusesCustomBatchResponse"); |
| 1201 |
} |
| 1202 |
/** |
| 1203 |
* Gets the status of a product from your Merchant Center account. |
| 1204 |
* (productstatuses.get) |
| 1205 |
* |
| 1206 |
* @param string $merchantId |
| 1207 |
* The ID of the managing account. |
| 1208 |
* @param string $productId |
| 1209 |
* The ID of the product. |
| 1210 |
* @param array $optParams Optional parameters. |
| 1211 |
* @return Analytify_Google_Service_ShoppingContent_ProductStatus |
| 1212 |
*/ |
| 1213 |
public function get($merchantId, $productId, $optParams = array()) |
| 1214 |
{ |
| 1215 |
$params = array('merchantId' => $merchantId, 'productId' => $productId); |
| 1216 |
$params = array_merge($params, $optParams); |
| 1217 |
return $this->call('get', array($params), "Analytify_Google_Service_ShoppingContent_ProductStatus"); |
| 1218 |
} |
| 1219 |
/** |
| 1220 |
* Lists the statuses of the products in your Merchant Center account. |
| 1221 |
* (productstatuses.listProductstatuses) |
| 1222 |
* |
| 1223 |
* @param string $merchantId |
| 1224 |
* The ID of the managing account. |
| 1225 |
* @param array $optParams Optional parameters. |
| 1226 |
* |
| 1227 |
* @opt_param string pageToken |
| 1228 |
* The token returned by the previous request. |
| 1229 |
* @opt_param string maxResults |
| 1230 |
* The maximum number of product statuses to return in the response, used for paging. |
| 1231 |
* @return Analytify_Google_Service_ShoppingContent_ProductstatusesListResponse |
| 1232 |
*/ |
| 1233 |
public function listProductstatuses($merchantId, $optParams = array()) |
| 1234 |
{ |
| 1235 |
$params = array('merchantId' => $merchantId); |
| 1236 |
$params = array_merge($params, $optParams); |
| 1237 |
return $this->call('list', array($params), "Analytify_Google_Service_ShoppingContent_ProductstatusesListResponse"); |
| 1238 |
} |
| 1239 |
} |
| 1240 |
|
| 1241 |
|
| 1242 |
|
| 1243 |
|
| 1244 |
class Analytify_Google_Service_ShoppingContent_Account extends Analytify_Google_Collection |
| 1245 |
{ |
| 1246 |
public $adultContent; |
| 1247 |
protected $adwordsLinksType = 'Analytify_Google_Service_ShoppingContent_AccountAdwordsLink'; |
| 1248 |
protected $adwordsLinksDataType = 'array'; |
| 1249 |
public $id; |
| 1250 |
public $kind; |
| 1251 |
public $name; |
| 1252 |
public $reviewsUrl; |
| 1253 |
public $sellerId; |
| 1254 |
protected $usersType = 'Analytify_Google_Service_ShoppingContent_AccountUser'; |
| 1255 |
protected $usersDataType = 'array'; |
| 1256 |
public $websiteUrl; |
| 1257 |
|
| 1258 |
public function setAdultContent($adultContent) |
| 1259 |
{ |
| 1260 |
$this->adultContent = $adultContent; |
| 1261 |
} |
| 1262 |
|
| 1263 |
public function getAdultContent() |
| 1264 |
{ |
| 1265 |
return $this->adultContent; |
| 1266 |
} |
| 1267 |
|
| 1268 |
public function setAdwordsLinks($adwordsLinks) |
| 1269 |
{ |
| 1270 |
$this->adwordsLinks = $adwordsLinks; |
| 1271 |
} |
| 1272 |
|
| 1273 |
public function getAdwordsLinks() |
| 1274 |
{ |
| 1275 |
return $this->adwordsLinks; |
| 1276 |
} |
| 1277 |
|
| 1278 |
public function setId($id) |
| 1279 |
{ |
| 1280 |
$this->id = $id; |
| 1281 |
} |
| 1282 |
|
| 1283 |
public function getId() |
| 1284 |
{ |
| 1285 |
return $this->id; |
| 1286 |
} |
| 1287 |
|
| 1288 |
public function setKind($kind) |
| 1289 |
{ |
| 1290 |
$this->kind = $kind; |
| 1291 |
} |
| 1292 |
|
| 1293 |
public function getKind() |
| 1294 |
{ |
| 1295 |
return $this->kind; |
| 1296 |
} |
| 1297 |
|
| 1298 |
public function setName($name) |
| 1299 |
{ |
| 1300 |
$this->name = $name; |
| 1301 |
} |
| 1302 |
|
| 1303 |
public function getName() |
| 1304 |
{ |
| 1305 |
return $this->name; |
| 1306 |
} |
| 1307 |
|
| 1308 |
public function setReviewsUrl($reviewsUrl) |
| 1309 |
{ |
| 1310 |
$this->reviewsUrl = $reviewsUrl; |
| 1311 |
} |
| 1312 |
|
| 1313 |
public function getReviewsUrl() |
| 1314 |
{ |
| 1315 |
return $this->reviewsUrl; |
| 1316 |
} |
| 1317 |
|
| 1318 |
public function setSellerId($sellerId) |
| 1319 |
{ |
| 1320 |
$this->sellerId = $sellerId; |
| 1321 |
} |
| 1322 |
|
| 1323 |
public function getSellerId() |
| 1324 |
{ |
| 1325 |
return $this->sellerId; |
| 1326 |
} |
| 1327 |
|
| 1328 |
public function setUsers($users) |
| 1329 |
{ |
| 1330 |
$this->users = $users; |
| 1331 |
} |
| 1332 |
|
| 1333 |
public function getUsers() |
| 1334 |
{ |
| 1335 |
return $this->users; |
| 1336 |
} |
| 1337 |
|
| 1338 |
public function setWebsiteUrl($websiteUrl) |
| 1339 |
{ |
| 1340 |
$this->websiteUrl = $websiteUrl; |
| 1341 |
} |
| 1342 |
|
| 1343 |
public function getWebsiteUrl() |
| 1344 |
{ |
| 1345 |
return $this->websiteUrl; |
| 1346 |
} |
| 1347 |
} |
| 1348 |
|
| 1349 |
class Analytify_Google_Service_ShoppingContent_AccountAdwordsLink extends Analytify_Google_Model |
| 1350 |
{ |
| 1351 |
public $adwordsId; |
| 1352 |
public $status; |
| 1353 |
|
| 1354 |
public function setAdwordsId($adwordsId) |
| 1355 |
{ |
| 1356 |
$this->adwordsId = $adwordsId; |
| 1357 |
} |
| 1358 |
|
| 1359 |
public function getAdwordsId() |
| 1360 |
{ |
| 1361 |
return $this->adwordsId; |
| 1362 |
} |
| 1363 |
|
| 1364 |
public function setStatus($status) |
| 1365 |
{ |
| 1366 |
$this->status = $status; |
| 1367 |
} |
| 1368 |
|
| 1369 |
public function getStatus() |
| 1370 |
{ |
| 1371 |
return $this->status; |
| 1372 |
} |
| 1373 |
} |
| 1374 |
|
| 1375 |
class Analytify_Google_Service_ShoppingContent_AccountShipping extends Analytify_Google_Collection |
| 1376 |
{ |
| 1377 |
public $accountId; |
| 1378 |
protected $carrierRatesType = 'Analytify_Google_Service_ShoppingContent_AccountShippingCarrierRate'; |
| 1379 |
protected $carrierRatesDataType = 'array'; |
| 1380 |
public $kind; |
| 1381 |
protected $locationGroupsType = 'Analytify_Google_Service_ShoppingContent_AccountShippingLocationGroup'; |
| 1382 |
protected $locationGroupsDataType = 'array'; |
| 1383 |
protected $rateTablesType = 'Analytify_Google_Service_ShoppingContent_AccountShippingRateTable'; |
| 1384 |
protected $rateTablesDataType = 'array'; |
| 1385 |
protected $servicesType = 'Analytify_Google_Service_ShoppingContent_AccountShippingShippingService'; |
| 1386 |
protected $servicesDataType = 'array'; |
| 1387 |
|
| 1388 |
public function setAccountId($accountId) |
| 1389 |
{ |
| 1390 |
$this->accountId = $accountId; |
| 1391 |
} |
| 1392 |
|
| 1393 |
public function getAccountId() |
| 1394 |
{ |
| 1395 |
return $this->accountId; |
| 1396 |
} |
| 1397 |
|
| 1398 |
public function setCarrierRates($carrierRates) |
| 1399 |
{ |
| 1400 |
$this->carrierRates = $carrierRates; |
| 1401 |
} |
| 1402 |
|
| 1403 |
public function getCarrierRates() |
| 1404 |
{ |
| 1405 |
return $this->carrierRates; |
| 1406 |
} |
| 1407 |
|
| 1408 |
public function setKind($kind) |
| 1409 |
{ |
| 1410 |
$this->kind = $kind; |
| 1411 |
} |
| 1412 |
|
| 1413 |
public function getKind() |
| 1414 |
{ |
| 1415 |
return $this->kind; |
| 1416 |
} |
| 1417 |
|
| 1418 |
public function setLocationGroups($locationGroups) |
| 1419 |
{ |
| 1420 |
$this->locationGroups = $locationGroups; |
| 1421 |
} |
| 1422 |
|
| 1423 |
public function getLocationGroups() |
| 1424 |
{ |
| 1425 |
return $this->locationGroups; |
| 1426 |
} |
| 1427 |
|
| 1428 |
public function setRateTables($rateTables) |
| 1429 |
{ |
| 1430 |
$this->rateTables = $rateTables; |
| 1431 |
} |
| 1432 |
|
| 1433 |
public function getRateTables() |
| 1434 |
{ |
| 1435 |
return $this->rateTables; |
| 1436 |
} |
| 1437 |
|
| 1438 |
public function setServices($services) |
| 1439 |
{ |
| 1440 |
$this->services = $services; |
| 1441 |
} |
| 1442 |
|
| 1443 |
public function getServices() |
| 1444 |
{ |
| 1445 |
return $this->services; |
| 1446 |
} |
| 1447 |
} |
| 1448 |
|
| 1449 |
class Analytify_Google_Service_ShoppingContent_AccountShippingCarrierRate extends Analytify_Google_Model |
| 1450 |
{ |
| 1451 |
public $carrier; |
| 1452 |
public $carrierService; |
| 1453 |
protected $modifierFlatRateType = 'Analytify_Google_Service_ShoppingContent_Price'; |
| 1454 |
protected $modifierFlatRateDataType = ''; |
| 1455 |
public $modifierPercent; |
| 1456 |
public $name; |
| 1457 |
public $saleCountry; |
| 1458 |
public $shippingOrigin; |
| 1459 |
|
| 1460 |
public function setCarrier($carrier) |
| 1461 |
{ |
| 1462 |
$this->carrier = $carrier; |
| 1463 |
} |
| 1464 |
|
| 1465 |
public function getCarrier() |
| 1466 |
{ |
| 1467 |
return $this->carrier; |
| 1468 |
} |
| 1469 |
|
| 1470 |
public function setCarrierService($carrierService) |
| 1471 |
{ |
| 1472 |
$this->carrierService = $carrierService; |
| 1473 |
} |
| 1474 |
|
| 1475 |
public function getCarrierService() |
| 1476 |
{ |
| 1477 |
return $this->carrierService; |
| 1478 |
} |
| 1479 |
|
| 1480 |
public function setModifierFlatRate(Analytify_Google_Service_ShoppingContent_Price $modifierFlatRate) |
| 1481 |
{ |
| 1482 |
$this->modifierFlatRate = $modifierFlatRate; |
| 1483 |
} |
| 1484 |
|
| 1485 |
public function getModifierFlatRate() |
| 1486 |
{ |
| 1487 |
return $this->modifierFlatRate; |
| 1488 |
} |
| 1489 |
|
| 1490 |
public function setModifierPercent($modifierPercent) |
| 1491 |
{ |
| 1492 |
$this->modifierPercent = $modifierPercent; |
| 1493 |
} |
| 1494 |
|
| 1495 |
public function getModifierPercent() |
| 1496 |
{ |
| 1497 |
return $this->modifierPercent; |
| 1498 |
} |
| 1499 |
|
| 1500 |
public function setName($name) |
| 1501 |
{ |
| 1502 |
$this->name = $name; |
| 1503 |
} |
| 1504 |
|
| 1505 |
public function getName() |
| 1506 |
{ |
| 1507 |
return $this->name; |
| 1508 |
} |
| 1509 |
|
| 1510 |
public function setSaleCountry($saleCountry) |
| 1511 |
{ |
| 1512 |
$this->saleCountry = $saleCountry; |
| 1513 |
} |
| 1514 |
|
| 1515 |
public function getSaleCountry() |
| 1516 |
{ |
| 1517 |
return $this->saleCountry; |
| 1518 |
} |
| 1519 |
|
| 1520 |
public function setShippingOrigin($shippingOrigin) |
| 1521 |
{ |
| 1522 |
$this->shippingOrigin = $shippingOrigin; |
| 1523 |
} |
| 1524 |
|
| 1525 |
public function getShippingOrigin() |
| 1526 |
{ |
| 1527 |
return $this->shippingOrigin; |
| 1528 |
} |
| 1529 |
} |
| 1530 |
|
| 1531 |
class Analytify_Google_Service_ShoppingContent_AccountShippingCondition extends Analytify_Google_Model |
| 1532 |
{ |
| 1533 |
public $deliveryLocationGroup; |
| 1534 |
public $deliveryLocationId; |
| 1535 |
public $deliveryPostalCode; |
| 1536 |
protected $priceMaxType = 'Analytify_Google_Service_ShoppingContent_Price'; |
| 1537 |
protected $priceMaxDataType = ''; |
| 1538 |
public $shippingLabel; |
| 1539 |
protected $weightMaxType = 'Analytify_Google_Service_ShoppingContent_Weight'; |
| 1540 |
protected $weightMaxDataType = ''; |
| 1541 |
|
| 1542 |
public function setDeliveryLocationGroup($deliveryLocationGroup) |
| 1543 |
{ |
| 1544 |
$this->deliveryLocationGroup = $deliveryLocationGroup; |
| 1545 |
} |
| 1546 |
|
| 1547 |
public function getDeliveryLocationGroup() |
| 1548 |
{ |
| 1549 |
return $this->deliveryLocationGroup; |
| 1550 |
} |
| 1551 |
|
| 1552 |
public function setDeliveryLocationId($deliveryLocationId) |
| 1553 |
{ |
| 1554 |
$this->deliveryLocationId = $deliveryLocationId; |
| 1555 |
} |
| 1556 |
|
| 1557 |
public function getDeliveryLocationId() |
| 1558 |
{ |
| 1559 |
return $this->deliveryLocationId; |
| 1560 |
} |
| 1561 |
|
| 1562 |
public function setDeliveryPostalCode($deliveryPostalCode) |
| 1563 |
{ |
| 1564 |
$this->deliveryPostalCode = $deliveryPostalCode; |
| 1565 |
} |
| 1566 |
|
| 1567 |
public function getDeliveryPostalCode() |
| 1568 |
{ |
| 1569 |
return $this->deliveryPostalCode; |
| 1570 |
} |
| 1571 |
|
| 1572 |
public function setPriceMax(Analytify_Google_Service_ShoppingContent_Price $priceMax) |
| 1573 |
{ |
| 1574 |
$this->priceMax = $priceMax; |
| 1575 |
} |
| 1576 |
|
| 1577 |
public function getPriceMax() |
| 1578 |
{ |
| 1579 |
return $this->priceMax; |
| 1580 |
} |
| 1581 |
|
| 1582 |
public function setShippingLabel($shippingLabel) |
| 1583 |
{ |
| 1584 |
$this->shippingLabel = $shippingLabel; |
| 1585 |
} |
| 1586 |
|
| 1587 |
public function getShippingLabel() |
| 1588 |
{ |
| 1589 |
return $this->shippingLabel; |
| 1590 |
} |
| 1591 |
|
| 1592 |
public function setWeightMax(Analytify_Google_Service_ShoppingContent_Weight $weightMax) |
| 1593 |
{ |
| 1594 |
$this->weightMax = $weightMax; |
| 1595 |
} |
| 1596 |
|
| 1597 |
public function getWeightMax() |
| 1598 |
{ |
| 1599 |
return $this->weightMax; |
| 1600 |
} |
| 1601 |
} |
| 1602 |
|
| 1603 |
class Analytify_Google_Service_ShoppingContent_AccountShippingLocationGroup extends Analytify_Google_Collection |
| 1604 |
{ |
| 1605 |
public $country; |
| 1606 |
public $locationIds; |
| 1607 |
public $name; |
| 1608 |
public $postalCodes; |
| 1609 |
|
| 1610 |
public function setCountry($country) |
| 1611 |
{ |
| 1612 |
$this->country = $country; |
| 1613 |
} |
| 1614 |
|
| 1615 |
public function getCountry() |
| 1616 |
{ |
| 1617 |
return $this->country; |
| 1618 |
} |
| 1619 |
|
| 1620 |
public function setLocationIds($locationIds) |
| 1621 |
{ |
| 1622 |
$this->locationIds = $locationIds; |
| 1623 |
} |
| 1624 |
|
| 1625 |
public function getLocationIds() |
| 1626 |
{ |
| 1627 |
return $this->locationIds; |
| 1628 |
} |
| 1629 |
|
| 1630 |
public function setName($name) |
| 1631 |
{ |
| 1632 |
$this->name = $name; |
| 1633 |
} |
| 1634 |
|
| 1635 |
public function getName() |
| 1636 |
{ |
| 1637 |
return $this->name; |
| 1638 |
} |
| 1639 |
|
| 1640 |
public function setPostalCodes($postalCodes) |
| 1641 |
{ |
| 1642 |
$this->postalCodes = $postalCodes; |
| 1643 |
} |
| 1644 |
|
| 1645 |
public function getPostalCodes() |
| 1646 |
{ |
| 1647 |
return $this->postalCodes; |
| 1648 |
} |
| 1649 |
} |
| 1650 |
|
| 1651 |
class Analytify_Google_Service_ShoppingContent_AccountShippingRateTable extends Analytify_Google_Collection |
| 1652 |
{ |
| 1653 |
protected $contentsType = 'Analytify_Google_Service_ShoppingContent_AccountShippingRateTableCell'; |
| 1654 |
protected $contentsDataType = 'array'; |
| 1655 |
public $name; |
| 1656 |
public $saleCountry; |
| 1657 |
|
| 1658 |
public function setContents($contents) |
| 1659 |
{ |
| 1660 |
$this->contents = $contents; |
| 1661 |
} |
| 1662 |
|
| 1663 |
public function getContents() |
| 1664 |
{ |
| 1665 |
return $this->contents; |
| 1666 |
} |
| 1667 |
|
| 1668 |
public function setName($name) |
| 1669 |
{ |
| 1670 |
$this->name = $name; |
| 1671 |
} |
| 1672 |
|
| 1673 |
public function getName() |
| 1674 |
{ |
| 1675 |
return $this->name; |
| 1676 |
} |
| 1677 |
|
| 1678 |
public function setSaleCountry($saleCountry) |
| 1679 |
{ |
| 1680 |
$this->saleCountry = $saleCountry; |
| 1681 |
} |
| 1682 |
|
| 1683 |
public function getSaleCountry() |
| 1684 |
{ |
| 1685 |
return $this->saleCountry; |
| 1686 |
} |
| 1687 |
} |
| 1688 |
|
| 1689 |
class Analytify_Google_Service_ShoppingContent_AccountShippingRateTableCell extends Analytify_Google_Model |
| 1690 |
{ |
| 1691 |
protected $conditionType = 'Analytify_Google_Service_ShoppingContent_AccountShippingCondition'; |
| 1692 |
protected $conditionDataType = ''; |
| 1693 |
protected $rateType = 'Analytify_Google_Service_ShoppingContent_Price'; |
| 1694 |
protected $rateDataType = ''; |
| 1695 |
|
| 1696 |
public function setCondition(Analytify_Google_Service_ShoppingContent_AccountShippingCondition $condition) |
| 1697 |
{ |
| 1698 |
$this->condition = $condition; |
| 1699 |
} |
| 1700 |
|
| 1701 |
public function getCondition() |
| 1702 |
{ |
| 1703 |
return $this->condition; |
| 1704 |
} |
| 1705 |
|
| 1706 |
public function setRate(Analytify_Google_Service_ShoppingContent_Price $rate) |
| 1707 |
{ |
| 1708 |
$this->rate = $rate; |
| 1709 |
} |
| 1710 |
|
| 1711 |
public function getRate() |
| 1712 |
{ |
| 1713 |
return $this->rate; |
| 1714 |
} |
| 1715 |
} |
| 1716 |
|
| 1717 |
class Analytify_Google_Service_ShoppingContent_AccountShippingShippingService extends Analytify_Google_Model |
| 1718 |
{ |
| 1719 |
public $active; |
| 1720 |
protected $calculationMethodType = 'Analytify_Google_Service_ShoppingContent_AccountShippingShippingServiceCalculationMethod'; |
| 1721 |
protected $calculationMethodDataType = ''; |
| 1722 |
public $name; |
| 1723 |
public $saleCountry; |
| 1724 |
|
| 1725 |
public function setActive($active) |
| 1726 |
{ |
| 1727 |
$this->active = $active; |
| 1728 |
} |
| 1729 |
|
| 1730 |
public function getActive() |
| 1731 |
{ |
| 1732 |
return $this->active; |
| 1733 |
} |
| 1734 |
|
| 1735 |
public function setCalculationMethod(Analytify_Google_Service_ShoppingContent_AccountShippingShippingServiceCalculationMethod $calculationMethod) |
| 1736 |
{ |
| 1737 |
$this->calculationMethod = $calculationMethod; |
| 1738 |
} |
| 1739 |
|
| 1740 |
public function getCalculationMethod() |
| 1741 |
{ |
| 1742 |
return $this->calculationMethod; |
| 1743 |
} |
| 1744 |
|
| 1745 |
public function setName($name) |
| 1746 |
{ |
| 1747 |
$this->name = $name; |
| 1748 |
} |
| 1749 |
|
| 1750 |
public function getName() |
| 1751 |
{ |
| 1752 |
return $this->name; |
| 1753 |
} |
| 1754 |
|
| 1755 |
public function setSaleCountry($saleCountry) |
| 1756 |
{ |
| 1757 |
$this->saleCountry = $saleCountry; |
| 1758 |
} |
| 1759 |
|
| 1760 |
public function getSaleCountry() |
| 1761 |
{ |
| 1762 |
return $this->saleCountry; |
| 1763 |
} |
| 1764 |
} |
| 1765 |
|
| 1766 |
class Analytify_Google_Service_ShoppingContent_AccountShippingShippingServiceCalculationMethod extends Analytify_Google_Model |
| 1767 |
{ |
| 1768 |
public $carrierRate; |
| 1769 |
protected $flatRateType = 'Analytify_Google_Service_ShoppingContent_Price'; |
| 1770 |
protected $flatRateDataType = ''; |
| 1771 |
public $percentageRate; |
| 1772 |
public $rateTable; |
| 1773 |
|
| 1774 |
public function setCarrierRate($carrierRate) |
| 1775 |
{ |
| 1776 |
$this->carrierRate = $carrierRate; |
| 1777 |
} |
| 1778 |
|
| 1779 |
public function getCarrierRate() |
| 1780 |
{ |
| 1781 |
return $this->carrierRate; |
| 1782 |
} |
| 1783 |
|
| 1784 |
public function setFlatRate(Analytify_Google_Service_ShoppingContent_Price $flatRate) |
| 1785 |
{ |
| 1786 |
$this->flatRate = $flatRate; |
| 1787 |
} |
| 1788 |
|
| 1789 |
public function getFlatRate() |
| 1790 |
{ |
| 1791 |
return $this->flatRate; |
| 1792 |
} |
| 1793 |
|
| 1794 |
public function setPercentageRate($percentageRate) |
| 1795 |
{ |
| 1796 |
$this->percentageRate = $percentageRate; |
| 1797 |
} |
| 1798 |
|
| 1799 |
public function getPercentageRate() |
| 1800 |
{ |
| 1801 |
return $this->percentageRate; |
| 1802 |
} |
| 1803 |
|
| 1804 |
public function setRateTable($rateTable) |
| 1805 |
{ |
| 1806 |
$this->rateTable = $rateTable; |
| 1807 |
} |
| 1808 |
|
| 1809 |
public function getRateTable() |
| 1810 |
{ |
| 1811 |
return $this->rateTable; |
| 1812 |
} |
| 1813 |
} |
| 1814 |
|
| 1815 |
class Analytify_Google_Service_ShoppingContent_AccountStatus extends Analytify_Google_Collection |
| 1816 |
{ |
| 1817 |
public $accountId; |
| 1818 |
protected $dataQualityIssuesType = 'Analytify_Google_Service_ShoppingContent_AccountStatusDataQualityIssue'; |
| 1819 |
protected $dataQualityIssuesDataType = 'array'; |
| 1820 |
public $kind; |
| 1821 |
|
| 1822 |
public function setAccountId($accountId) |
| 1823 |
{ |
| 1824 |
$this->accountId = $accountId; |
| 1825 |
} |
| 1826 |
|
| 1827 |
public function getAccountId() |
| 1828 |
{ |
| 1829 |
return $this->accountId; |
| 1830 |
} |
| 1831 |
|
| 1832 |
public function setDataQualityIssues($dataQualityIssues) |
| 1833 |
{ |
| 1834 |
$this->dataQualityIssues = $dataQualityIssues; |
| 1835 |
} |
| 1836 |
|
| 1837 |
public function getDataQualityIssues() |
| 1838 |
{ |
| 1839 |
return $this->dataQualityIssues; |
| 1840 |
} |
| 1841 |
|
| 1842 |
public function setKind($kind) |
| 1843 |
{ |
| 1844 |
$this->kind = $kind; |
| 1845 |
} |
| 1846 |
|
| 1847 |
public function getKind() |
| 1848 |
{ |
| 1849 |
return $this->kind; |
| 1850 |
} |
| 1851 |
} |
| 1852 |
|
| 1853 |
class Analytify_Google_Service_ShoppingContent_AccountStatusDataQualityIssue extends Analytify_Google_Collection |
| 1854 |
{ |
| 1855 |
public $country; |
| 1856 |
public $displayedValue; |
| 1857 |
protected $exampleItemsType = 'Analytify_Google_Service_ShoppingContent_AccountStatusExampleItem'; |
| 1858 |
protected $exampleItemsDataType = 'array'; |
| 1859 |
public $id; |
| 1860 |
public $lastChecked; |
| 1861 |
public $numItems; |
| 1862 |
public $severity; |
| 1863 |
public $submittedValue; |
| 1864 |
|
| 1865 |
public function setCountry($country) |
| 1866 |
{ |
| 1867 |
$this->country = $country; |
| 1868 |
} |
| 1869 |
|
| 1870 |
public function getCountry() |
| 1871 |
{ |
| 1872 |
return $this->country; |
| 1873 |
} |
| 1874 |
|
| 1875 |
public function setDisplayedValue($displayedValue) |
| 1876 |
{ |
| 1877 |
$this->displayedValue = $displayedValue; |
| 1878 |
} |
| 1879 |
|
| 1880 |
public function getDisplayedValue() |
| 1881 |
{ |
| 1882 |
return $this->displayedValue; |
| 1883 |
} |
| 1884 |
|
| 1885 |
public function setExampleItems($exampleItems) |
| 1886 |
{ |
| 1887 |
$this->exampleItems = $exampleItems; |
| 1888 |
} |
| 1889 |
|
| 1890 |
public function getExampleItems() |
| 1891 |
{ |
| 1892 |
return $this->exampleItems; |
| 1893 |
} |
| 1894 |
|
| 1895 |
public function setId($id) |
| 1896 |
{ |
| 1897 |
$this->id = $id; |
| 1898 |
} |
| 1899 |
|
| 1900 |
public function getId() |
| 1901 |
{ |
| 1902 |
return $this->id; |
| 1903 |
} |
| 1904 |
|
| 1905 |
public function setLastChecked($lastChecked) |
| 1906 |
{ |
| 1907 |
$this->lastChecked = $lastChecked; |
| 1908 |
} |
| 1909 |
|
| 1910 |
public function getLastChecked() |
| 1911 |
{ |
| 1912 |
return $this->lastChecked; |
| 1913 |
} |
| 1914 |
|
| 1915 |
public function setNumItems($numItems) |
| 1916 |
{ |
| 1917 |
$this->numItems = $numItems; |
| 1918 |
} |
| 1919 |
|
| 1920 |
public function getNumItems() |
| 1921 |
{ |
| 1922 |
return $this->numItems; |
| 1923 |
} |
| 1924 |
|
| 1925 |
public function setSeverity($severity) |
| 1926 |
{ |
| 1927 |
$this->severity = $severity; |
| 1928 |
} |
| 1929 |
|
| 1930 |
public function getSeverity() |
| 1931 |
{ |
| 1932 |
return $this->severity; |
| 1933 |
} |
| 1934 |
|
| 1935 |
public function setSubmittedValue($submittedValue) |
| 1936 |
{ |
| 1937 |
$this->submittedValue = $submittedValue; |
| 1938 |
} |
| 1939 |
|
| 1940 |
public function getSubmittedValue() |
| 1941 |
{ |
| 1942 |
return $this->submittedValue; |
| 1943 |
} |
| 1944 |
} |
| 1945 |
|
| 1946 |
class Analytify_Google_Service_ShoppingContent_AccountStatusExampleItem extends Analytify_Google_Model |
| 1947 |
{ |
| 1948 |
public $itemId; |
| 1949 |
public $link; |
| 1950 |
public $submittedValue; |
| 1951 |
public $title; |
| 1952 |
public $valueOnLandingPage; |
| 1953 |
|
| 1954 |
public function setItemId($itemId) |
| 1955 |
{ |
| 1956 |
$this->itemId = $itemId; |
| 1957 |
} |
| 1958 |
|
| 1959 |
public function getItemId() |
| 1960 |
{ |
| 1961 |
return $this->itemId; |
| 1962 |
} |
| 1963 |
|
| 1964 |
public function setLink($link) |
| 1965 |
{ |
| 1966 |
$this->link = $link; |
| 1967 |
} |
| 1968 |
|
| 1969 |
public function getLink() |
| 1970 |
{ |
| 1971 |
return $this->link; |
| 1972 |
} |
| 1973 |
|
| 1974 |
public function setSubmittedValue($submittedValue) |
| 1975 |
{ |
| 1976 |
$this->submittedValue = $submittedValue; |
| 1977 |
} |
| 1978 |
|
| 1979 |
public function getSubmittedValue() |
| 1980 |
{ |
| 1981 |
return $this->submittedValue; |
| 1982 |
} |
| 1983 |
|
| 1984 |
public function setTitle($title) |
| 1985 |
{ |
| 1986 |
$this->title = $title; |
| 1987 |
} |
| 1988 |
|
| 1989 |
public function getTitle() |
| 1990 |
{ |
| 1991 |
return $this->title; |
| 1992 |
} |
| 1993 |
|
| 1994 |
public function setValueOnLandingPage($valueOnLandingPage) |
| 1995 |
{ |
| 1996 |
$this->valueOnLandingPage = $valueOnLandingPage; |
| 1997 |
} |
| 1998 |
|
| 1999 |
public function getValueOnLandingPage() |
| 2000 |
{ |
| 2001 |
return $this->valueOnLandingPage; |
| 2002 |
} |
| 2003 |
} |
| 2004 |
|
| 2005 |
class Analytify_Google_Service_ShoppingContent_AccountTax extends Analytify_Google_Collection |
| 2006 |
{ |
| 2007 |
public $accountId; |
| 2008 |
public $kind; |
| 2009 |
protected $rulesType = 'Analytify_Google_Service_ShoppingContent_AccountTaxTaxRule'; |
| 2010 |
protected $rulesDataType = 'array'; |
| 2011 |
|
| 2012 |
public function setAccountId($accountId) |
| 2013 |
{ |
| 2014 |
$this->accountId = $accountId; |
| 2015 |
} |
| 2016 |
|
| 2017 |
public function getAccountId() |
| 2018 |
{ |
| 2019 |
return $this->accountId; |
| 2020 |
} |
| 2021 |
|
| 2022 |
public function setKind($kind) |
| 2023 |
{ |
| 2024 |
$this->kind = $kind; |
| 2025 |
} |
| 2026 |
|
| 2027 |
public function getKind() |
| 2028 |
{ |
| 2029 |
return $this->kind; |
| 2030 |
} |
| 2031 |
|
| 2032 |
public function setRules($rules) |
| 2033 |
{ |
| 2034 |
$this->rules = $rules; |
| 2035 |
} |
| 2036 |
|
| 2037 |
public function getRules() |
| 2038 |
{ |
| 2039 |
return $this->rules; |
| 2040 |
} |
| 2041 |
} |
| 2042 |
|
| 2043 |
class Analytify_Google_Service_ShoppingContent_AccountTaxTaxRule extends Analytify_Google_Model |
| 2044 |
{ |
| 2045 |
public $country; |
| 2046 |
public $locationId; |
| 2047 |
public $ratePercent; |
| 2048 |
public $shippingTaxed; |
| 2049 |
public $useGlobalRate; |
| 2050 |
|
| 2051 |
public function setCountry($country) |
| 2052 |
{ |
| 2053 |
$this->country = $country; |
| 2054 |
} |
| 2055 |
|
| 2056 |
public function getCountry() |
| 2057 |
{ |
| 2058 |
return $this->country; |
| 2059 |
} |
| 2060 |
|
| 2061 |
public function setLocationId($locationId) |
| 2062 |
{ |
| 2063 |
$this->locationId = $locationId; |
| 2064 |
} |
| 2065 |
|
| 2066 |
public function getLocationId() |
| 2067 |
{ |
| 2068 |
return $this->locationId; |
| 2069 |
} |
| 2070 |
|
| 2071 |
public function setRatePercent($ratePercent) |
| 2072 |
{ |
| 2073 |
$this->ratePercent = $ratePercent; |
| 2074 |
} |
| 2075 |
|
| 2076 |
public function getRatePercent() |
| 2077 |
{ |
| 2078 |
return $this->ratePercent; |
| 2079 |
} |
| 2080 |
|
| 2081 |
public function setShippingTaxed($shippingTaxed) |
| 2082 |
{ |
| 2083 |
$this->shippingTaxed = $shippingTaxed; |
| 2084 |
} |
| 2085 |
|
| 2086 |
public function getShippingTaxed() |
| 2087 |
{ |
| 2088 |
return $this->shippingTaxed; |
| 2089 |
} |
| 2090 |
|
| 2091 |
public function setUseGlobalRate($useGlobalRate) |
| 2092 |
{ |
| 2093 |
$this->useGlobalRate = $useGlobalRate; |
| 2094 |
} |
| 2095 |
|
| 2096 |
public function getUseGlobalRate() |
| 2097 |
{ |
| 2098 |
return $this->useGlobalRate; |
| 2099 |
} |
| 2100 |
} |
| 2101 |
|
| 2102 |
class Analytify_Google_Service_ShoppingContent_AccountUser extends Analytify_Google_Model |
| 2103 |
{ |
| 2104 |
public $admin; |
| 2105 |
public $emailAddress; |
| 2106 |
|
| 2107 |
public function setAdmin($admin) |
| 2108 |
{ |
| 2109 |
$this->admin = $admin; |
| 2110 |
} |
| 2111 |
|
| 2112 |
public function getAdmin() |
| 2113 |
{ |
| 2114 |
return $this->admin; |
| 2115 |
} |
| 2116 |
|
| 2117 |
public function setEmailAddress($emailAddress) |
| 2118 |
{ |
| 2119 |
$this->emailAddress = $emailAddress; |
| 2120 |
} |
| 2121 |
|
| 2122 |
public function getEmailAddress() |
| 2123 |
{ |
| 2124 |
return $this->emailAddress; |
| 2125 |
} |
| 2126 |
} |
| 2127 |
|
| 2128 |
class Analytify_Google_Service_ShoppingContent_AccountsCustomBatchRequest extends Analytify_Google_Collection |
| 2129 |
{ |
| 2130 |
protected $entriesType = 'Analytify_Google_Service_ShoppingContent_AccountsCustomBatchRequestEntry'; |
| 2131 |
protected $entriesDataType = 'array'; |
| 2132 |
|
| 2133 |
public function setEntries($entries) |
| 2134 |
{ |
| 2135 |
$this->entries = $entries; |
| 2136 |
} |
| 2137 |
|
| 2138 |
public function getEntries() |
| 2139 |
{ |
| 2140 |
return $this->entries; |
| 2141 |
} |
| 2142 |
} |
| 2143 |
|
| 2144 |
class Analytify_Google_Service_ShoppingContent_AccountsCustomBatchRequestEntry extends Analytify_Google_Model |
| 2145 |
{ |
| 2146 |
protected $accountType = 'Analytify_Google_Service_ShoppingContent_Account'; |
| 2147 |
protected $accountDataType = ''; |
| 2148 |
public $accountId; |
| 2149 |
public $batchId; |
| 2150 |
public $merchantId; |
| 2151 |
public $method; |
| 2152 |
|
| 2153 |
public function setAccount(Analytify_Google_Service_ShoppingContent_Account $account) |
| 2154 |
{ |
| 2155 |
$this->account = $account; |
| 2156 |
} |
| 2157 |
|
| 2158 |
public function getAccount() |
| 2159 |
{ |
| 2160 |
return $this->account; |
| 2161 |
} |
| 2162 |
|
| 2163 |
public function setAccountId($accountId) |
| 2164 |
{ |
| 2165 |
$this->accountId = $accountId; |
| 2166 |
} |
| 2167 |
|
| 2168 |
public function getAccountId() |
| 2169 |
{ |
| 2170 |
return $this->accountId; |
| 2171 |
} |
| 2172 |
|
| 2173 |
public function setBatchId($batchId) |
| 2174 |
{ |
| 2175 |
$this->batchId = $batchId; |
| 2176 |
} |
| 2177 |
|
| 2178 |
public function getBatchId() |
| 2179 |
{ |
| 2180 |
return $this->batchId; |
| 2181 |
} |
| 2182 |
|
| 2183 |
public function setMerchantId($merchantId) |
| 2184 |
{ |
| 2185 |
$this->merchantId = $merchantId; |
| 2186 |
} |
| 2187 |
|
| 2188 |
public function getMerchantId() |
| 2189 |
{ |
| 2190 |
return $this->merchantId; |
| 2191 |
} |
| 2192 |
|
| 2193 |
public function setMethod($method) |
| 2194 |
{ |
| 2195 |
$this->method = $method; |
| 2196 |
} |
| 2197 |
|
| 2198 |
public function getMethod() |
| 2199 |
{ |
| 2200 |
return $this->method; |
| 2201 |
} |
| 2202 |
} |
| 2203 |
|
| 2204 |
class Analytify_Google_Service_ShoppingContent_AccountsCustomBatchResponse extends Analytify_Google_Collection |
| 2205 |
{ |
| 2206 |
protected $entriesType = 'Analytify_Google_Service_ShoppingContent_AccountsCustomBatchResponseEntry'; |
| 2207 |
protected $entriesDataType = 'array'; |
| 2208 |
public $kind; |
| 2209 |
|
| 2210 |
public function setEntries($entries) |
| 2211 |
{ |
| 2212 |
$this->entries = $entries; |
| 2213 |
} |
| 2214 |
|
| 2215 |
public function getEntries() |
| 2216 |
{ |
| 2217 |
return $this->entries; |
| 2218 |
} |
| 2219 |
|
| 2220 |
public function setKind($kind) |
| 2221 |
{ |
| 2222 |
$this->kind = $kind; |
| 2223 |
} |
| 2224 |
|
| 2225 |
public function getKind() |
| 2226 |
{ |
| 2227 |
return $this->kind; |
| 2228 |
} |
| 2229 |
} |
| 2230 |
|
| 2231 |
class Analytify_Google_Service_ShoppingContent_AccountsCustomBatchResponseEntry extends Analytify_Google_Model |
| 2232 |
{ |
| 2233 |
protected $accountType = 'Analytify_Google_Service_ShoppingContent_Account'; |
| 2234 |
protected $accountDataType = ''; |
| 2235 |
public $batchId; |
| 2236 |
protected $errorsType = 'Analytify_Google_Service_ShoppingContent_Errors'; |
| 2237 |
protected $errorsDataType = ''; |
| 2238 |
public $kind; |
| 2239 |
|
| 2240 |
public function setAccount(Analytify_Google_Service_ShoppingContent_Account $account) |
| 2241 |
{ |
| 2242 |
$this->account = $account; |
| 2243 |
} |
| 2244 |
|
| 2245 |
public function getAccount() |
| 2246 |
{ |
| 2247 |
return $this->account; |
| 2248 |
} |
| 2249 |
|
| 2250 |
public function setBatchId($batchId) |
| 2251 |
{ |
| 2252 |
$this->batchId = $batchId; |
| 2253 |
} |
| 2254 |
|
| 2255 |
public function getBatchId() |
| 2256 |
{ |
| 2257 |
return $this->batchId; |
| 2258 |
} |
| 2259 |
|
| 2260 |
public function setErrors(Analytify_Google_Service_ShoppingContent_Errors $errors) |
| 2261 |
{ |
| 2262 |
$this->errors = $errors; |
| 2263 |
} |
| 2264 |
|
| 2265 |
public function getErrors() |
| 2266 |
{ |
| 2267 |
return $this->errors; |
| 2268 |
} |
| 2269 |
|
| 2270 |
public function setKind($kind) |
| 2271 |
{ |
| 2272 |
$this->kind = $kind; |
| 2273 |
} |
| 2274 |
|
| 2275 |
public function getKind() |
| 2276 |
{ |
| 2277 |
return $this->kind; |
| 2278 |
} |
| 2279 |
} |
| 2280 |
|
| 2281 |
class Analytify_Google_Service_ShoppingContent_AccountsListResponse extends Analytify_Google_Collection |
| 2282 |
{ |
| 2283 |
public $kind; |
| 2284 |
public $nextPageToken; |
| 2285 |
protected $resourcesType = 'Analytify_Google_Service_ShoppingContent_Account'; |
| 2286 |
protected $resourcesDataType = 'array'; |
| 2287 |
|
| 2288 |
public function setKind($kind) |
| 2289 |
{ |
| 2290 |
$this->kind = $kind; |
| 2291 |
} |
| 2292 |
|
| 2293 |
public function getKind() |
| 2294 |
{ |
| 2295 |
return $this->kind; |
| 2296 |
} |
| 2297 |
|
| 2298 |
public function setNextPageToken($nextPageToken) |
| 2299 |
{ |
| 2300 |
$this->nextPageToken = $nextPageToken; |
| 2301 |
} |
| 2302 |
|
| 2303 |
public function getNextPageToken() |
| 2304 |
{ |
| 2305 |
return $this->nextPageToken; |
| 2306 |
} |
| 2307 |
|
| 2308 |
public function setResources($resources) |
| 2309 |
{ |
| 2310 |
$this->resources = $resources; |
| 2311 |
} |
| 2312 |
|
| 2313 |
public function getResources() |
| 2314 |
{ |
| 2315 |
return $this->resources; |
| 2316 |
} |
| 2317 |
} |
| 2318 |
|
| 2319 |
class Analytify_Google_Service_ShoppingContent_AccountstatusesCustomBatchRequest extends Analytify_Google_Collection |
| 2320 |
{ |
| 2321 |
protected $entriesType = 'Analytify_Google_Service_ShoppingContent_AccountstatusesCustomBatchRequestEntry'; |
| 2322 |
protected $entriesDataType = 'array'; |
| 2323 |
|
| 2324 |
public function setEntries($entries) |
| 2325 |
{ |
| 2326 |
$this->entries = $entries; |
| 2327 |
} |
| 2328 |
|
| 2329 |
public function getEntries() |
| 2330 |
{ |
| 2331 |
return $this->entries; |
| 2332 |
} |
| 2333 |
} |
| 2334 |
|
| 2335 |
class Analytify_Google_Service_ShoppingContent_AccountstatusesCustomBatchRequestEntry extends Analytify_Google_Model |
| 2336 |
{ |
| 2337 |
public $accountId; |
| 2338 |
public $batchId; |
| 2339 |
public $merchantId; |
| 2340 |
public $method; |
| 2341 |
|
| 2342 |
public function setAccountId($accountId) |
| 2343 |
{ |
| 2344 |
$this->accountId = $accountId; |
| 2345 |
} |
| 2346 |
|
| 2347 |
public function getAccountId() |
| 2348 |
{ |
| 2349 |
return $this->accountId; |
| 2350 |
} |
| 2351 |
|
| 2352 |
public function setBatchId($batchId) |
| 2353 |
{ |
| 2354 |
$this->batchId = $batchId; |
| 2355 |
} |
| 2356 |
|
| 2357 |
public function getBatchId() |
| 2358 |
{ |
| 2359 |
return $this->batchId; |
| 2360 |
} |
| 2361 |
|
| 2362 |
public function setMerchantId($merchantId) |
| 2363 |
{ |
| 2364 |
$this->merchantId = $merchantId; |
| 2365 |
} |
| 2366 |
|
| 2367 |
public function getMerchantId() |
| 2368 |
{ |
| 2369 |
return $this->merchantId; |
| 2370 |
} |
| 2371 |
|
| 2372 |
public function setMethod($method) |
| 2373 |
{ |
| 2374 |
$this->method = $method; |
| 2375 |
} |
| 2376 |
|
| 2377 |
public function getMethod() |
| 2378 |
{ |
| 2379 |
return $this->method; |
| 2380 |
} |
| 2381 |
} |
| 2382 |
|
| 2383 |
class Analytify_Google_Service_ShoppingContent_AccountstatusesCustomBatchResponse extends Analytify_Google_Collection |
| 2384 |
{ |
| 2385 |
protected $entriesType = 'Analytify_Google_Service_ShoppingContent_AccountstatusesCustomBatchResponseEntry'; |
| 2386 |
protected $entriesDataType = 'array'; |
| 2387 |
public $kind; |
| 2388 |
|
| 2389 |
public function setEntries($entries) |
| 2390 |
{ |
| 2391 |
$this->entries = $entries; |
| 2392 |
} |
| 2393 |
|
| 2394 |
public function getEntries() |
| 2395 |
{ |
| 2396 |
return $this->entries; |
| 2397 |
} |
| 2398 |
|
| 2399 |
public function setKind($kind) |
| 2400 |
{ |
| 2401 |
$this->kind = $kind; |
| 2402 |
} |
| 2403 |
|
| 2404 |
public function getKind() |
| 2405 |
{ |
| 2406 |
return $this->kind; |
| 2407 |
} |
| 2408 |
} |
| 2409 |
|
| 2410 |
class Analytify_Google_Service_ShoppingContent_AccountstatusesCustomBatchResponseEntry extends Analytify_Google_Model |
| 2411 |
{ |
| 2412 |
protected $accountStatusType = 'Analytify_Google_Service_ShoppingContent_AccountStatus'; |
| 2413 |
protected $accountStatusDataType = ''; |
| 2414 |
public $batchId; |
| 2415 |
protected $errorsType = 'Analytify_Google_Service_ShoppingContent_Errors'; |
| 2416 |
protected $errorsDataType = ''; |
| 2417 |
|
| 2418 |
public function setAccountStatus(Analytify_Google_Service_ShoppingContent_AccountStatus $accountStatus) |
| 2419 |
{ |
| 2420 |
$this->accountStatus = $accountStatus; |
| 2421 |
} |
| 2422 |
|
| 2423 |
public function getAccountStatus() |
| 2424 |
{ |
| 2425 |
return $this->accountStatus; |
| 2426 |
} |
| 2427 |
|
| 2428 |
public function setBatchId($batchId) |
| 2429 |
{ |
| 2430 |
$this->batchId = $batchId; |
| 2431 |
} |
| 2432 |
|
| 2433 |
public function getBatchId() |
| 2434 |
{ |
| 2435 |
return $this->batchId; |
| 2436 |
} |
| 2437 |
|
| 2438 |
public function setErrors(Analytify_Google_Service_ShoppingContent_Errors $errors) |
| 2439 |
{ |
| 2440 |
$this->errors = $errors; |
| 2441 |
} |
| 2442 |
|
| 2443 |
public function getErrors() |
| 2444 |
{ |
| 2445 |
return $this->errors; |
| 2446 |
} |
| 2447 |
} |
| 2448 |
|
| 2449 |
class Analytify_Google_Service_ShoppingContent_AccountstatusesListResponse extends Analytify_Google_Collection |
| 2450 |
{ |
| 2451 |
public $kind; |
| 2452 |
public $nextPageToken; |
| 2453 |
protected $resourcesType = 'Analytify_Google_Service_ShoppingContent_AccountStatus'; |
| 2454 |
protected $resourcesDataType = 'array'; |
| 2455 |
|
| 2456 |
public function setKind($kind) |
| 2457 |
{ |
| 2458 |
$this->kind = $kind; |
| 2459 |
} |
| 2460 |
|
| 2461 |
public function getKind() |
| 2462 |
{ |
| 2463 |
return $this->kind; |
| 2464 |
} |
| 2465 |
|
| 2466 |
public function setNextPageToken($nextPageToken) |
| 2467 |
{ |
| 2468 |
$this->nextPageToken = $nextPageToken; |
| 2469 |
} |
| 2470 |
|
| 2471 |
public function getNextPageToken() |
| 2472 |
{ |
| 2473 |
return $this->nextPageToken; |
| 2474 |
} |
| 2475 |
|
| 2476 |
public function setResources($resources) |
| 2477 |
{ |
| 2478 |
$this->resources = $resources; |
| 2479 |
} |
| 2480 |
|
| 2481 |
public function getResources() |
| 2482 |
{ |
| 2483 |
return $this->resources; |
| 2484 |
} |
| 2485 |
} |
| 2486 |
|
| 2487 |
class Analytify_Google_Service_ShoppingContent_Datafeed extends Analytify_Google_Collection |
| 2488 |
{ |
| 2489 |
public $attributeLanguage; |
| 2490 |
public $contentLanguage; |
| 2491 |
public $contentType; |
| 2492 |
protected $fetchScheduleType = 'Analytify_Google_Service_ShoppingContent_DatafeedFetchSchedule'; |
| 2493 |
protected $fetchScheduleDataType = ''; |
| 2494 |
public $fileName; |
| 2495 |
protected $formatType = 'Analytify_Google_Service_ShoppingContent_DatafeedFormat'; |
| 2496 |
protected $formatDataType = ''; |
| 2497 |
public $id; |
| 2498 |
public $intendedDestinations; |
| 2499 |
public $kind; |
| 2500 |
public $name; |
| 2501 |
public $targetCountry; |
| 2502 |
|
| 2503 |
public function setAttributeLanguage($attributeLanguage) |
| 2504 |
{ |
| 2505 |
$this->attributeLanguage = $attributeLanguage; |
| 2506 |
} |
| 2507 |
|
| 2508 |
public function getAttributeLanguage() |
| 2509 |
{ |
| 2510 |
return $this->attributeLanguage; |
| 2511 |
} |
| 2512 |
|
| 2513 |
public function setContentLanguage($contentLanguage) |
| 2514 |
{ |
| 2515 |
$this->contentLanguage = $contentLanguage; |
| 2516 |
} |
| 2517 |
|
| 2518 |
public function getContentLanguage() |
| 2519 |
{ |
| 2520 |
return $this->contentLanguage; |
| 2521 |
} |
| 2522 |
|
| 2523 |
public function setContentType($contentType) |
| 2524 |
{ |
| 2525 |
$this->contentType = $contentType; |
| 2526 |
} |
| 2527 |
|
| 2528 |
public function getContentType() |
| 2529 |
{ |
| 2530 |
return $this->contentType; |
| 2531 |
} |
| 2532 |
|
| 2533 |
public function setFetchSchedule(Analytify_Google_Service_ShoppingContent_DatafeedFetchSchedule $fetchSchedule) |
| 2534 |
{ |
| 2535 |
$this->fetchSchedule = $fetchSchedule; |
| 2536 |
} |
| 2537 |
|
| 2538 |
public function getFetchSchedule() |
| 2539 |
{ |
| 2540 |
return $this->fetchSchedule; |
| 2541 |
} |
| 2542 |
|
| 2543 |
public function setFileName($fileName) |
| 2544 |
{ |
| 2545 |
$this->fileName = $fileName; |
| 2546 |
} |
| 2547 |
|
| 2548 |
public function getFileName() |
| 2549 |
{ |
| 2550 |
return $this->fileName; |
| 2551 |
} |
| 2552 |
|
| 2553 |
public function setFormat(Analytify_Google_Service_ShoppingContent_DatafeedFormat $format) |
| 2554 |
{ |
| 2555 |
$this->format = $format; |
| 2556 |
} |
| 2557 |
|
| 2558 |
public function getFormat() |
| 2559 |
{ |
| 2560 |
return $this->format; |
| 2561 |
} |
| 2562 |
|
| 2563 |
public function setId($id) |
| 2564 |
{ |
| 2565 |
$this->id = $id; |
| 2566 |
} |
| 2567 |
|
| 2568 |
public function getId() |
| 2569 |
{ |
| 2570 |
return $this->id; |
| 2571 |
} |
| 2572 |
|
| 2573 |
public function setIntendedDestinations($intendedDestinations) |
| 2574 |
{ |
| 2575 |
$this->intendedDestinations = $intendedDestinations; |
| 2576 |
} |
| 2577 |
|
| 2578 |
public function getIntendedDestinations() |
| 2579 |
{ |
| 2580 |
return $this->intendedDestinations; |
| 2581 |
} |
| 2582 |
|
| 2583 |
public function setKind($kind) |
| 2584 |
{ |
| 2585 |
$this->kind = $kind; |
| 2586 |
} |
| 2587 |
|
| 2588 |
public function getKind() |
| 2589 |
{ |
| 2590 |
return $this->kind; |
| 2591 |
} |
| 2592 |
|
| 2593 |
public function setName($name) |
| 2594 |
{ |
| 2595 |
$this->name = $name; |
| 2596 |
} |
| 2597 |
|
| 2598 |
public function getName() |
| 2599 |
{ |
| 2600 |
return $this->name; |
| 2601 |
} |
| 2602 |
|
| 2603 |
public function setTargetCountry($targetCountry) |
| 2604 |
{ |
| 2605 |
$this->targetCountry = $targetCountry; |
| 2606 |
} |
| 2607 |
|
| 2608 |
public function getTargetCountry() |
| 2609 |
{ |
| 2610 |
return $this->targetCountry; |
| 2611 |
} |
| 2612 |
} |
| 2613 |
|
| 2614 |
class Analytify_Google_Service_ShoppingContent_DatafeedFetchSchedule extends Analytify_Google_Model |
| 2615 |
{ |
| 2616 |
public $dayOfMonth; |
| 2617 |
public $fetchUrl; |
| 2618 |
public $hour; |
| 2619 |
public $password; |
| 2620 |
public $timeZone; |
| 2621 |
public $username; |
| 2622 |
public $weekday; |
| 2623 |
|
| 2624 |
public function setDayOfMonth($dayOfMonth) |
| 2625 |
{ |
| 2626 |
$this->dayOfMonth = $dayOfMonth; |
| 2627 |
} |
| 2628 |
|
| 2629 |
public function getDayOfMonth() |
| 2630 |
{ |
| 2631 |
return $this->dayOfMonth; |
| 2632 |
} |
| 2633 |
|
| 2634 |
public function setFetchUrl($fetchUrl) |
| 2635 |
{ |
| 2636 |
$this->fetchUrl = $fetchUrl; |
| 2637 |
} |
| 2638 |
|
| 2639 |
public function getFetchUrl() |
| 2640 |
{ |
| 2641 |
return $this->fetchUrl; |
| 2642 |
} |
| 2643 |
|
| 2644 |
public function setHour($hour) |
| 2645 |
{ |
| 2646 |
$this->hour = $hour; |
| 2647 |
} |
| 2648 |
|
| 2649 |
public function getHour() |
| 2650 |
{ |
| 2651 |
return $this->hour; |
| 2652 |
} |
| 2653 |
|
| 2654 |
public function setPassword($password) |
| 2655 |
{ |
| 2656 |
$this->password = $password; |
| 2657 |
} |
| 2658 |
|
| 2659 |
public function getPassword() |
| 2660 |
{ |
| 2661 |
return $this->password; |
| 2662 |
} |
| 2663 |
|
| 2664 |
public function setTimeZone($timeZone) |
| 2665 |
{ |
| 2666 |
$this->timeZone = $timeZone; |
| 2667 |
} |
| 2668 |
|
| 2669 |
public function getTimeZone() |
| 2670 |
{ |
| 2671 |
return $this->timeZone; |
| 2672 |
} |
| 2673 |
|
| 2674 |
public function setUsername($username) |
| 2675 |
{ |
| 2676 |
$this->username = $username; |
| 2677 |
} |
| 2678 |
|
| 2679 |
public function getUsername() |
| 2680 |
{ |
| 2681 |
return $this->username; |
| 2682 |
} |
| 2683 |
|
| 2684 |
public function setWeekday($weekday) |
| 2685 |
{ |
| 2686 |
$this->weekday = $weekday; |
| 2687 |
} |
| 2688 |
|
| 2689 |
public function getWeekday() |
| 2690 |
{ |
| 2691 |
return $this->weekday; |
| 2692 |
} |
| 2693 |
} |
| 2694 |
|
| 2695 |
class Analytify_Google_Service_ShoppingContent_DatafeedFormat extends Analytify_Google_Model |
| 2696 |
{ |
| 2697 |
public $columnDelimiter; |
| 2698 |
public $fileEncoding; |
| 2699 |
public $quotingMode; |
| 2700 |
|
| 2701 |
public function setColumnDelimiter($columnDelimiter) |
| 2702 |
{ |
| 2703 |
$this->columnDelimiter = $columnDelimiter; |
| 2704 |
} |
| 2705 |
|
| 2706 |
public function getColumnDelimiter() |
| 2707 |
{ |
| 2708 |
return $this->columnDelimiter; |
| 2709 |
} |
| 2710 |
|
| 2711 |
public function setFileEncoding($fileEncoding) |
| 2712 |
{ |
| 2713 |
$this->fileEncoding = $fileEncoding; |
| 2714 |
} |
| 2715 |
|
| 2716 |
public function getFileEncoding() |
| 2717 |
{ |
| 2718 |
return $this->fileEncoding; |
| 2719 |
} |
| 2720 |
|
| 2721 |
public function setQuotingMode($quotingMode) |
| 2722 |
{ |
| 2723 |
$this->quotingMode = $quotingMode; |
| 2724 |
} |
| 2725 |
|
| 2726 |
public function getQuotingMode() |
| 2727 |
{ |
| 2728 |
return $this->quotingMode; |
| 2729 |
} |
| 2730 |
} |
| 2731 |
|
| 2732 |
class Analytify_Google_Service_ShoppingContent_DatafeedStatus extends Analytify_Google_Collection |
| 2733 |
{ |
| 2734 |
public $datafeedId; |
| 2735 |
protected $errorsType = 'Analytify_Google_Service_ShoppingContent_DatafeedStatusError'; |
| 2736 |
protected $errorsDataType = 'array'; |
| 2737 |
public $itemsTotal; |
| 2738 |
public $itemsValid; |
| 2739 |
public $kind; |
| 2740 |
public $processingStatus; |
| 2741 |
protected $warningsType = 'Analytify_Google_Service_ShoppingContent_DatafeedStatusError'; |
| 2742 |
protected $warningsDataType = 'array'; |
| 2743 |
|
| 2744 |
public function setDatafeedId($datafeedId) |
| 2745 |
{ |
| 2746 |
$this->datafeedId = $datafeedId; |
| 2747 |
} |
| 2748 |
|
| 2749 |
public function getDatafeedId() |
| 2750 |
{ |
| 2751 |
return $this->datafeedId; |
| 2752 |
} |
| 2753 |
|
| 2754 |
public function setErrors($errors) |
| 2755 |
{ |
| 2756 |
$this->errors = $errors; |
| 2757 |
} |
| 2758 |
|
| 2759 |
public function getErrors() |
| 2760 |
{ |
| 2761 |
return $this->errors; |
| 2762 |
} |
| 2763 |
|
| 2764 |
public function setItemsTotal($itemsTotal) |
| 2765 |
{ |
| 2766 |
$this->itemsTotal = $itemsTotal; |
| 2767 |
} |
| 2768 |
|
| 2769 |
public function getItemsTotal() |
| 2770 |
{ |
| 2771 |
return $this->itemsTotal; |
| 2772 |
} |
| 2773 |
|
| 2774 |
public function setItemsValid($itemsValid) |
| 2775 |
{ |
| 2776 |
$this->itemsValid = $itemsValid; |
| 2777 |
} |
| 2778 |
|
| 2779 |
public function getItemsValid() |
| 2780 |
{ |
| 2781 |
return $this->itemsValid; |
| 2782 |
} |
| 2783 |
|
| 2784 |
public function setKind($kind) |
| 2785 |
{ |
| 2786 |
$this->kind = $kind; |
| 2787 |
} |
| 2788 |
|
| 2789 |
public function getKind() |
| 2790 |
{ |
| 2791 |
return $this->kind; |
| 2792 |
} |
| 2793 |
|
| 2794 |
public function setProcessingStatus($processingStatus) |
| 2795 |
{ |
| 2796 |
$this->processingStatus = $processingStatus; |
| 2797 |
} |
| 2798 |
|
| 2799 |
public function getProcessingStatus() |
| 2800 |
{ |
| 2801 |
return $this->processingStatus; |
| 2802 |
} |
| 2803 |
|
| 2804 |
public function setWarnings($warnings) |
| 2805 |
{ |
| 2806 |
$this->warnings = $warnings; |
| 2807 |
} |
| 2808 |
|
| 2809 |
public function getWarnings() |
| 2810 |
{ |
| 2811 |
return $this->warnings; |
| 2812 |
} |
| 2813 |
} |
| 2814 |
|
| 2815 |
class Analytify_Google_Service_ShoppingContent_DatafeedStatusError extends Analytify_Google_Collection |
| 2816 |
{ |
| 2817 |
public $code; |
| 2818 |
public $count; |
| 2819 |
protected $examplesType = 'Analytify_Google_Service_ShoppingContent_DatafeedStatusExample'; |
| 2820 |
protected $examplesDataType = 'array'; |
| 2821 |
public $message; |
| 2822 |
|
| 2823 |
public function setCode($code) |
| 2824 |
{ |
| 2825 |
$this->code = $code; |
| 2826 |
} |
| 2827 |
|
| 2828 |
public function getCode() |
| 2829 |
{ |
| 2830 |
return $this->code; |
| 2831 |
} |
| 2832 |
|
| 2833 |
public function setCount($count) |
| 2834 |
{ |
| 2835 |
$this->count = $count; |
| 2836 |
} |
| 2837 |
|
| 2838 |
public function getCount() |
| 2839 |
{ |
| 2840 |
return $this->count; |
| 2841 |
} |
| 2842 |
|
| 2843 |
public function setExamples($examples) |
| 2844 |
{ |
| 2845 |
$this->examples = $examples; |
| 2846 |
} |
| 2847 |
|
| 2848 |
public function getExamples() |
| 2849 |
{ |
| 2850 |
return $this->examples; |
| 2851 |
} |
| 2852 |
|
| 2853 |
public function setMessage($message) |
| 2854 |
{ |
| 2855 |
$this->message = $message; |
| 2856 |
} |
| 2857 |
|
| 2858 |
public function getMessage() |
| 2859 |
{ |
| 2860 |
return $this->message; |
| 2861 |
} |
| 2862 |
} |
| 2863 |
|
| 2864 |
class Analytify_Google_Service_ShoppingContent_DatafeedStatusExample extends Analytify_Google_Model |
| 2865 |
{ |
| 2866 |
public $itemId; |
| 2867 |
public $lineNumber; |
| 2868 |
public $value; |
| 2869 |
|
| 2870 |
public function setItemId($itemId) |
| 2871 |
{ |
| 2872 |
$this->itemId = $itemId; |
| 2873 |
} |
| 2874 |
|
| 2875 |
public function getItemId() |
| 2876 |
{ |
| 2877 |
return $this->itemId; |
| 2878 |
} |
| 2879 |
|
| 2880 |
public function setLineNumber($lineNumber) |
| 2881 |
{ |
| 2882 |
$this->lineNumber = $lineNumber; |
| 2883 |
} |
| 2884 |
|
| 2885 |
public function getLineNumber() |
| 2886 |
{ |
| 2887 |
return $this->lineNumber; |
| 2888 |
} |
| 2889 |
|
| 2890 |
public function setValue($value) |
| 2891 |
{ |
| 2892 |
$this->value = $value; |
| 2893 |
} |
| 2894 |
|
| 2895 |
public function getValue() |
| 2896 |
{ |
| 2897 |
return $this->value; |
| 2898 |
} |
| 2899 |
} |
| 2900 |
|
| 2901 |
class Analytify_Google_Service_ShoppingContent_DatafeedsBatchRequest extends Analytify_Google_Collection |
| 2902 |
{ |
| 2903 |
protected $entrysType = 'Analytify_Google_Service_ShoppingContent_DatafeedsBatchRequestEntry'; |
| 2904 |
protected $entrysDataType = 'array'; |
| 2905 |
|
| 2906 |
public function setEntrys($entrys) |
| 2907 |
{ |
| 2908 |
$this->entrys = $entrys; |
| 2909 |
} |
| 2910 |
|
| 2911 |
public function getEntrys() |
| 2912 |
{ |
| 2913 |
return $this->entrys; |
| 2914 |
} |
| 2915 |
} |
| 2916 |
|
| 2917 |
class Analytify_Google_Service_ShoppingContent_DatafeedsBatchRequestEntry extends Analytify_Google_Model |
| 2918 |
{ |
| 2919 |
public $batchId; |
| 2920 |
protected $datafeedsinsertrequestType = 'Analytify_Google_Service_ShoppingContent_DatafeedsInsertRequest'; |
| 2921 |
protected $datafeedsinsertrequestDataType = ''; |
| 2922 |
protected $datafeedsupdaterequestType = 'Analytify_Google_Service_ShoppingContent_DatafeedsUpdateRequest'; |
| 2923 |
protected $datafeedsupdaterequestDataType = ''; |
| 2924 |
public $methodName; |
| 2925 |
|
| 2926 |
public function setBatchId($batchId) |
| 2927 |
{ |
| 2928 |
$this->batchId = $batchId; |
| 2929 |
} |
| 2930 |
|
| 2931 |
public function getBatchId() |
| 2932 |
{ |
| 2933 |
return $this->batchId; |
| 2934 |
} |
| 2935 |
|
| 2936 |
public function setDatafeedsinsertrequest(Analytify_Google_Service_ShoppingContent_DatafeedsInsertRequest $datafeedsinsertrequest) |
| 2937 |
{ |
| 2938 |
$this->datafeedsinsertrequest = $datafeedsinsertrequest; |
| 2939 |
} |
| 2940 |
|
| 2941 |
public function getDatafeedsinsertrequest() |
| 2942 |
{ |
| 2943 |
return $this->datafeedsinsertrequest; |
| 2944 |
} |
| 2945 |
|
| 2946 |
public function setDatafeedsupdaterequest(Analytify_Google_Service_ShoppingContent_DatafeedsUpdateRequest $datafeedsupdaterequest) |
| 2947 |
{ |
| 2948 |
$this->datafeedsupdaterequest = $datafeedsupdaterequest; |
| 2949 |
} |
| 2950 |
|
| 2951 |
public function getDatafeedsupdaterequest() |
| 2952 |
{ |
| 2953 |
return $this->datafeedsupdaterequest; |
| 2954 |
} |
| 2955 |
|
| 2956 |
public function setMethodName($methodName) |
| 2957 |
{ |
| 2958 |
$this->methodName = $methodName; |
| 2959 |
} |
| 2960 |
|
| 2961 |
public function getMethodName() |
| 2962 |
{ |
| 2963 |
return $this->methodName; |
| 2964 |
} |
| 2965 |
} |
| 2966 |
|
| 2967 |
class Analytify_Google_Service_ShoppingContent_DatafeedsBatchResponse extends Analytify_Google_Collection |
| 2968 |
{ |
| 2969 |
protected $entrysType = 'Analytify_Google_Service_ShoppingContent_DatafeedsBatchResponseEntry'; |
| 2970 |
protected $entrysDataType = 'array'; |
| 2971 |
public $kind; |
| 2972 |
|
| 2973 |
public function setEntrys($entrys) |
| 2974 |
{ |
| 2975 |
$this->entrys = $entrys; |
| 2976 |
} |
| 2977 |
|
| 2978 |
public function getEntrys() |
| 2979 |
{ |
| 2980 |
return $this->entrys; |
| 2981 |
} |
| 2982 |
|
| 2983 |
public function setKind($kind) |
| 2984 |
{ |
| 2985 |
$this->kind = $kind; |
| 2986 |
} |
| 2987 |
|
| 2988 |
public function getKind() |
| 2989 |
{ |
| 2990 |
return $this->kind; |
| 2991 |
} |
| 2992 |
} |
| 2993 |
|
| 2994 |
class Analytify_Google_Service_ShoppingContent_DatafeedsBatchResponseEntry extends Analytify_Google_Model |
| 2995 |
{ |
| 2996 |
public $batchId; |
| 2997 |
protected $datafeedsgetresponseType = 'Analytify_Google_Service_ShoppingContent_DatafeedsGetResponse'; |
| 2998 |
protected $datafeedsgetresponseDataType = ''; |
| 2999 |
protected $datafeedsinsertresponseType = 'Analytify_Google_Service_ShoppingContent_DatafeedsInsertResponse'; |
| 3000 |
protected $datafeedsinsertresponseDataType = ''; |
| 3001 |
protected $datafeedsupdateresponseType = 'Analytify_Google_Service_ShoppingContent_DatafeedsUpdateResponse'; |
| 3002 |
protected $datafeedsupdateresponseDataType = ''; |
| 3003 |
|
| 3004 |
public function setBatchId($batchId) |
| 3005 |
{ |
| 3006 |
$this->batchId = $batchId; |
| 3007 |
} |
| 3008 |
|
| 3009 |
public function getBatchId() |
| 3010 |
{ |
| 3011 |
return $this->batchId; |
| 3012 |
} |
| 3013 |
|
| 3014 |
public function setDatafeedsgetresponse(Analytify_Google_Service_ShoppingContent_DatafeedsGetResponse $datafeedsgetresponse) |
| 3015 |
{ |
| 3016 |
$this->datafeedsgetresponse = $datafeedsgetresponse; |
| 3017 |
} |
| 3018 |
|
| 3019 |
public function getDatafeedsgetresponse() |
| 3020 |
{ |
| 3021 |
return $this->datafeedsgetresponse; |
| 3022 |
} |
| 3023 |
|
| 3024 |
public function setDatafeedsinsertresponse(Analytify_Google_Service_ShoppingContent_DatafeedsInsertResponse $datafeedsinsertresponse) |
| 3025 |
{ |
| 3026 |
$this->datafeedsinsertresponse = $datafeedsinsertresponse; |
| 3027 |
} |
| 3028 |
|
| 3029 |
public function getDatafeedsinsertresponse() |
| 3030 |
{ |
| 3031 |
return $this->datafeedsinsertresponse; |
| 3032 |
} |
| 3033 |
|
| 3034 |
public function setDatafeedsupdateresponse(Analytify_Google_Service_ShoppingContent_DatafeedsUpdateResponse $datafeedsupdateresponse) |
| 3035 |
{ |
| 3036 |
$this->datafeedsupdateresponse = $datafeedsupdateresponse; |
| 3037 |
} |
| 3038 |
|
| 3039 |
public function getDatafeedsupdateresponse() |
| 3040 |
{ |
| 3041 |
return $this->datafeedsupdateresponse; |
| 3042 |
} |
| 3043 |
} |
| 3044 |
|
| 3045 |
class Analytify_Google_Service_ShoppingContent_DatafeedsCustomBatchRequest extends Analytify_Google_Collection |
| 3046 |
{ |
| 3047 |
protected $entriesType = 'Analytify_Google_Service_ShoppingContent_DatafeedsCustomBatchRequestEntry'; |
| 3048 |
protected $entriesDataType = 'array'; |
| 3049 |
|
| 3050 |
public function setEntries($entries) |
| 3051 |
{ |
| 3052 |
$this->entries = $entries; |
| 3053 |
} |
| 3054 |
|
| 3055 |
public function getEntries() |
| 3056 |
{ |
| 3057 |
return $this->entries; |
| 3058 |
} |
| 3059 |
} |
| 3060 |
|
| 3061 |
class Analytify_Google_Service_ShoppingContent_DatafeedsCustomBatchRequestEntry extends Analytify_Google_Model |
| 3062 |
{ |
| 3063 |
public $batchId; |
| 3064 |
protected $datafeedType = 'Analytify_Google_Service_ShoppingContent_Datafeed'; |
| 3065 |
protected $datafeedDataType = ''; |
| 3066 |
public $datafeedId; |
| 3067 |
public $merchantId; |
| 3068 |
public $method; |
| 3069 |
|
| 3070 |
public function setBatchId($batchId) |
| 3071 |
{ |
| 3072 |
$this->batchId = $batchId; |
| 3073 |
} |
| 3074 |
|
| 3075 |
public function getBatchId() |
| 3076 |
{ |
| 3077 |
return $this->batchId; |
| 3078 |
} |
| 3079 |
|
| 3080 |
public function setDatafeed(Analytify_Google_Service_ShoppingContent_Datafeed $datafeed) |
| 3081 |
{ |
| 3082 |
$this->datafeed = $datafeed; |
| 3083 |
} |
| 3084 |
|
| 3085 |
public function getDatafeed() |
| 3086 |
{ |
| 3087 |
return $this->datafeed; |
| 3088 |
} |
| 3089 |
|
| 3090 |
public function setDatafeedId($datafeedId) |
| 3091 |
{ |
| 3092 |
$this->datafeedId = $datafeedId; |
| 3093 |
} |
| 3094 |
|
| 3095 |
public function getDatafeedId() |
| 3096 |
{ |
| 3097 |
return $this->datafeedId; |
| 3098 |
} |
| 3099 |
|
| 3100 |
public function setMerchantId($merchantId) |
| 3101 |
{ |
| 3102 |
$this->merchantId = $merchantId; |
| 3103 |
} |
| 3104 |
|
| 3105 |
public function getMerchantId() |
| 3106 |
{ |
| 3107 |
return $this->merchantId; |
| 3108 |
} |
| 3109 |
|
| 3110 |
public function setMethod($method) |
| 3111 |
{ |
| 3112 |
$this->method = $method; |
| 3113 |
} |
| 3114 |
|
| 3115 |
public function getMethod() |
| 3116 |
{ |
| 3117 |
return $this->method; |
| 3118 |
} |
| 3119 |
} |
| 3120 |
|
| 3121 |
class Analytify_Google_Service_ShoppingContent_DatafeedsCustomBatchResponse extends Analytify_Google_Collection |
| 3122 |
{ |
| 3123 |
protected $entriesType = 'Analytify_Google_Service_ShoppingContent_DatafeedsCustomBatchResponseEntry'; |
| 3124 |
protected $entriesDataType = 'array'; |
| 3125 |
public $kind; |
| 3126 |
|
| 3127 |
public function setEntries($entries) |
| 3128 |
{ |
| 3129 |
$this->entries = $entries; |
| 3130 |
} |
| 3131 |
|
| 3132 |
public function getEntries() |
| 3133 |
{ |
| 3134 |
return $this->entries; |
| 3135 |
} |
| 3136 |
|
| 3137 |
public function setKind($kind) |
| 3138 |
{ |
| 3139 |
$this->kind = $kind; |
| 3140 |
} |
| 3141 |
|
| 3142 |
public function getKind() |
| 3143 |
{ |
| 3144 |
return $this->kind; |
| 3145 |
} |
| 3146 |
} |
| 3147 |
|
| 3148 |
class Analytify_Google_Service_ShoppingContent_DatafeedsCustomBatchResponseEntry extends Analytify_Google_Model |
| 3149 |
{ |
| 3150 |
public $batchId; |
| 3151 |
protected $datafeedType = 'Analytify_Google_Service_ShoppingContent_Datafeed'; |
| 3152 |
protected $datafeedDataType = ''; |
| 3153 |
protected $errorsType = 'Analytify_Google_Service_ShoppingContent_Errors'; |
| 3154 |
protected $errorsDataType = ''; |
| 3155 |
|
| 3156 |
public function setBatchId($batchId) |
| 3157 |
{ |
| 3158 |
$this->batchId = $batchId; |
| 3159 |
} |
| 3160 |
|
| 3161 |
public function getBatchId() |
| 3162 |
{ |
| 3163 |
return $this->batchId; |
| 3164 |
} |
| 3165 |
|
| 3166 |
public function setDatafeed(Analytify_Google_Service_ShoppingContent_Datafeed $datafeed) |
| 3167 |
{ |
| 3168 |
$this->datafeed = $datafeed; |
| 3169 |
} |
| 3170 |
|
| 3171 |
public function getDatafeed() |
| 3172 |
{ |
| 3173 |
return $this->datafeed; |
| 3174 |
} |
| 3175 |
|
| 3176 |
public function setErrors(Analytify_Google_Service_ShoppingContent_Errors $errors) |
| 3177 |
{ |
| 3178 |
$this->errors = $errors; |
| 3179 |
} |
| 3180 |
|
| 3181 |
public function getErrors() |
| 3182 |
{ |
| 3183 |
return $this->errors; |
| 3184 |
} |
| 3185 |
} |
| 3186 |
|
| 3187 |
class Analytify_Google_Service_ShoppingContent_DatafeedsGetResponse extends Analytify_Google_Model |
| 3188 |
{ |
| 3189 |
public $kind; |
| 3190 |
protected $resourceType = 'Analytify_Google_Service_ShoppingContent_Datafeed'; |
| 3191 |
protected $resourceDataType = ''; |
| 3192 |
|
| 3193 |
public function setKind($kind) |
| 3194 |
{ |
| 3195 |
$this->kind = $kind; |
| 3196 |
} |
| 3197 |
|
| 3198 |
public function getKind() |
| 3199 |
{ |
| 3200 |
return $this->kind; |
| 3201 |
} |
| 3202 |
|
| 3203 |
public function setResource(Analytify_Google_Service_ShoppingContent_Datafeed $resource) |
| 3204 |
{ |
| 3205 |
$this->resource = $resource; |
| 3206 |
} |
| 3207 |
|
| 3208 |
public function getResource() |
| 3209 |
{ |
| 3210 |
return $this->resource; |
| 3211 |
} |
| 3212 |
} |
| 3213 |
|
| 3214 |
class Analytify_Google_Service_ShoppingContent_DatafeedsInsertRequest extends Analytify_Google_Model |
| 3215 |
{ |
| 3216 |
protected $resourceType = 'Analytify_Google_Service_ShoppingContent_Datafeed'; |
| 3217 |
protected $resourceDataType = ''; |
| 3218 |
|
| 3219 |
public function setResource(Analytify_Google_Service_ShoppingContent_Datafeed $resource) |
| 3220 |
{ |
| 3221 |
$this->resource = $resource; |
| 3222 |
} |
| 3223 |
|
| 3224 |
public function getResource() |
| 3225 |
{ |
| 3226 |
return $this->resource; |
| 3227 |
} |
| 3228 |
} |
| 3229 |
|
| 3230 |
class Analytify_Google_Service_ShoppingContent_DatafeedsInsertResponse extends Analytify_Google_Model |
| 3231 |
{ |
| 3232 |
public $kind; |
| 3233 |
protected $resourceType = 'Analytify_Google_Service_ShoppingContent_Datafeed'; |
| 3234 |
protected $resourceDataType = ''; |
| 3235 |
|
| 3236 |
public function setKind($kind) |
| 3237 |
{ |
| 3238 |
$this->kind = $kind; |
| 3239 |
} |
| 3240 |
|
| 3241 |
public function getKind() |
| 3242 |
{ |
| 3243 |
return $this->kind; |
| 3244 |
} |
| 3245 |
|
| 3246 |
public function setResource(Analytify_Google_Service_ShoppingContent_Datafeed $resource) |
| 3247 |
{ |
| 3248 |
$this->resource = $resource; |
| 3249 |
} |
| 3250 |
|
| 3251 |
public function getResource() |
| 3252 |
{ |
| 3253 |
return $this->resource; |
| 3254 |
} |
| 3255 |
} |
| 3256 |
|
| 3257 |
class Analytify_Google_Service_ShoppingContent_DatafeedsListResponse extends Analytify_Google_Collection |
| 3258 |
{ |
| 3259 |
public $kind; |
| 3260 |
protected $resourcesType = 'Analytify_Google_Service_ShoppingContent_Datafeed'; |
| 3261 |
protected $resourcesDataType = 'array'; |
| 3262 |
|
| 3263 |
public function setKind($kind) |
| 3264 |
{ |
| 3265 |
$this->kind = $kind; |
| 3266 |
} |
| 3267 |
|
| 3268 |
public function getKind() |
| 3269 |
{ |
| 3270 |
return $this->kind; |
| 3271 |
} |
| 3272 |
|
| 3273 |
public function setResources($resources) |
| 3274 |
{ |
| 3275 |
$this->resources = $resources; |
| 3276 |
} |
| 3277 |
|
| 3278 |
public function getResources() |
| 3279 |
{ |
| 3280 |
return $this->resources; |
| 3281 |
} |
| 3282 |
} |
| 3283 |
|
| 3284 |
class Analytify_Google_Service_ShoppingContent_DatafeedsUpdateRequest extends Analytify_Google_Model |
| 3285 |
{ |
| 3286 |
protected $resourceType = 'Analytify_Google_Service_ShoppingContent_Datafeed'; |
| 3287 |
protected $resourceDataType = ''; |
| 3288 |
|
| 3289 |
public function setResource(Analytify_Google_Service_ShoppingContent_Datafeed $resource) |
| 3290 |
{ |
| 3291 |
$this->resource = $resource; |
| 3292 |
} |
| 3293 |
|
| 3294 |
public function getResource() |
| 3295 |
{ |
| 3296 |
return $this->resource; |
| 3297 |
} |
| 3298 |
} |
| 3299 |
|
| 3300 |
class Analytify_Google_Service_ShoppingContent_DatafeedsUpdateResponse extends Analytify_Google_Model |
| 3301 |
{ |
| 3302 |
public $kind; |
| 3303 |
protected $resourceType = 'Analytify_Google_Service_ShoppingContent_Datafeed'; |
| 3304 |
protected $resourceDataType = ''; |
| 3305 |
|
| 3306 |
public function setKind($kind) |
| 3307 |
{ |
| 3308 |
$this->kind = $kind; |
| 3309 |
} |
| 3310 |
|
| 3311 |
public function getKind() |
| 3312 |
{ |
| 3313 |
return $this->kind; |
| 3314 |
} |
| 3315 |
|
| 3316 |
public function setResource(Analytify_Google_Service_ShoppingContent_Datafeed $resource) |
| 3317 |
{ |
| 3318 |
$this->resource = $resource; |
| 3319 |
} |
| 3320 |
|
| 3321 |
public function getResource() |
| 3322 |
{ |
| 3323 |
return $this->resource; |
| 3324 |
} |
| 3325 |
} |
| 3326 |
|
| 3327 |
class Analytify_Google_Service_ShoppingContent_DatafeedstatusesBatchRequest extends Analytify_Google_Collection |
| 3328 |
{ |
| 3329 |
protected $entrysType = 'Analytify_Google_Service_ShoppingContent_DatafeedstatusesBatchRequestEntry'; |
| 3330 |
protected $entrysDataType = 'array'; |
| 3331 |
|
| 3332 |
public function setEntrys($entrys) |
| 3333 |
{ |
| 3334 |
$this->entrys = $entrys; |
| 3335 |
} |
| 3336 |
|
| 3337 |
public function getEntrys() |
| 3338 |
{ |
| 3339 |
return $this->entrys; |
| 3340 |
} |
| 3341 |
} |
| 3342 |
|
| 3343 |
class Analytify_Google_Service_ShoppingContent_DatafeedstatusesBatchRequestEntry extends Analytify_Google_Model |
| 3344 |
{ |
| 3345 |
public $batchId; |
| 3346 |
public $methodName; |
| 3347 |
|
| 3348 |
public function setBatchId($batchId) |
| 3349 |
{ |
| 3350 |
$this->batchId = $batchId; |
| 3351 |
} |
| 3352 |
|
| 3353 |
public function getBatchId() |
| 3354 |
{ |
| 3355 |
return $this->batchId; |
| 3356 |
} |
| 3357 |
|
| 3358 |
public function setMethodName($methodName) |
| 3359 |
{ |
| 3360 |
$this->methodName = $methodName; |
| 3361 |
} |
| 3362 |
|
| 3363 |
public function getMethodName() |
| 3364 |
{ |
| 3365 |
return $this->methodName; |
| 3366 |
} |
| 3367 |
} |
| 3368 |
|
| 3369 |
class Analytify_Google_Service_ShoppingContent_DatafeedstatusesBatchResponse extends Analytify_Google_Collection |
| 3370 |
{ |
| 3371 |
protected $entrysType = 'Analytify_Google_Service_ShoppingContent_DatafeedstatusesBatchResponseEntry'; |
| 3372 |
protected $entrysDataType = 'array'; |
| 3373 |
public $kind; |
| 3374 |
|
| 3375 |
public function setEntrys($entrys) |
| 3376 |
{ |
| 3377 |
$this->entrys = $entrys; |
| 3378 |
} |
| 3379 |
|
| 3380 |
public function getEntrys() |
| 3381 |
{ |
| 3382 |
return $this->entrys; |
| 3383 |
} |
| 3384 |
|
| 3385 |
public function setKind($kind) |
| 3386 |
{ |
| 3387 |
$this->kind = $kind; |
| 3388 |
} |
| 3389 |
|
| 3390 |
public function getKind() |
| 3391 |
{ |
| 3392 |
return $this->kind; |
| 3393 |
} |
| 3394 |
} |
| 3395 |
|
| 3396 |
class Analytify_Google_Service_ShoppingContent_DatafeedstatusesBatchResponseEntry extends Analytify_Google_Model |
| 3397 |
{ |
| 3398 |
public $batchId; |
| 3399 |
protected $datafeedstatusesgetresponseType = 'Analytify_Google_Service_ShoppingContent_DatafeedstatusesGetResponse'; |
| 3400 |
protected $datafeedstatusesgetresponseDataType = ''; |
| 3401 |
|
| 3402 |
public function setBatchId($batchId) |
| 3403 |
{ |
| 3404 |
$this->batchId = $batchId; |
| 3405 |
} |
| 3406 |
|
| 3407 |
public function getBatchId() |
| 3408 |
{ |
| 3409 |
return $this->batchId; |
| 3410 |
} |
| 3411 |
|
| 3412 |
public function setDatafeedstatusesgetresponse(Analytify_Google_Service_ShoppingContent_DatafeedstatusesGetResponse $datafeedstatusesgetresponse) |
| 3413 |
{ |
| 3414 |
$this->datafeedstatusesgetresponse = $datafeedstatusesgetresponse; |
| 3415 |
} |
| 3416 |
|
| 3417 |
public function getDatafeedstatusesgetresponse() |
| 3418 |
{ |
| 3419 |
return $this->datafeedstatusesgetresponse; |
| 3420 |
} |
| 3421 |
} |
| 3422 |
|
| 3423 |
class Analytify_Google_Service_ShoppingContent_DatafeedstatusesCustomBatchRequest extends Analytify_Google_Collection |
| 3424 |
{ |
| 3425 |
protected $entriesType = 'Analytify_Google_Service_ShoppingContent_DatafeedstatusesCustomBatchRequestEntry'; |
| 3426 |
protected $entriesDataType = 'array'; |
| 3427 |
|
| 3428 |
public function setEntries($entries) |
| 3429 |
{ |
| 3430 |
$this->entries = $entries; |
| 3431 |
} |
| 3432 |
|
| 3433 |
public function getEntries() |
| 3434 |
{ |
| 3435 |
return $this->entries; |
| 3436 |
} |
| 3437 |
} |
| 3438 |
|
| 3439 |
class Analytify_Google_Service_ShoppingContent_DatafeedstatusesCustomBatchRequestEntry extends Analytify_Google_Model |
| 3440 |
{ |
| 3441 |
public $batchId; |
| 3442 |
public $datafeedId; |
| 3443 |
public $merchantId; |
| 3444 |
public $method; |
| 3445 |
|
| 3446 |
public function setBatchId($batchId) |
| 3447 |
{ |
| 3448 |
$this->batchId = $batchId; |
| 3449 |
} |
| 3450 |
|
| 3451 |
public function getBatchId() |
| 3452 |
{ |
| 3453 |
return $this->batchId; |
| 3454 |
} |
| 3455 |
|
| 3456 |
public function setDatafeedId($datafeedId) |
| 3457 |
{ |
| 3458 |
$this->datafeedId = $datafeedId; |
| 3459 |
} |
| 3460 |
|
| 3461 |
public function getDatafeedId() |
| 3462 |
{ |
| 3463 |
return $this->datafeedId; |
| 3464 |
} |
| 3465 |
|
| 3466 |
public function setMerchantId($merchantId) |
| 3467 |
{ |
| 3468 |
$this->merchantId = $merchantId; |
| 3469 |
} |
| 3470 |
|
| 3471 |
public function getMerchantId() |
| 3472 |
{ |
| 3473 |
return $this->merchantId; |
| 3474 |
} |
| 3475 |
|
| 3476 |
public function setMethod($method) |
| 3477 |
{ |
| 3478 |
$this->method = $method; |
| 3479 |
} |
| 3480 |
|
| 3481 |
public function getMethod() |
| 3482 |
{ |
| 3483 |
return $this->method; |
| 3484 |
} |
| 3485 |
} |
| 3486 |
|
| 3487 |
class Analytify_Google_Service_ShoppingContent_DatafeedstatusesCustomBatchResponse extends Analytify_Google_Collection |
| 3488 |
{ |
| 3489 |
protected $entriesType = 'Analytify_Google_Service_ShoppingContent_DatafeedstatusesCustomBatchResponseEntry'; |
| 3490 |
protected $entriesDataType = 'array'; |
| 3491 |
public $kind; |
| 3492 |
|
| 3493 |
public function setEntries($entries) |
| 3494 |
{ |
| 3495 |
$this->entries = $entries; |
| 3496 |
} |
| 3497 |
|
| 3498 |
public function getEntries() |
| 3499 |
{ |
| 3500 |
return $this->entries; |
| 3501 |
} |
| 3502 |
|
| 3503 |
public function setKind($kind) |
| 3504 |
{ |
| 3505 |
$this->kind = $kind; |
| 3506 |
} |
| 3507 |
|
| 3508 |
public function getKind() |
| 3509 |
{ |
| 3510 |
return $this->kind; |
| 3511 |
} |
| 3512 |
} |
| 3513 |
|
| 3514 |
class Analytify_Google_Service_ShoppingContent_DatafeedstatusesCustomBatchResponseEntry extends Analytify_Google_Model |
| 3515 |
{ |
| 3516 |
public $batchId; |
| 3517 |
protected $datafeedStatusType = 'Analytify_Google_Service_ShoppingContent_DatafeedStatus'; |
| 3518 |
protected $datafeedStatusDataType = ''; |
| 3519 |
protected $errorsType = 'Analytify_Google_Service_ShoppingContent_Errors'; |
| 3520 |
protected $errorsDataType = ''; |
| 3521 |
|
| 3522 |
public function setBatchId($batchId) |
| 3523 |
{ |
| 3524 |
$this->batchId = $batchId; |
| 3525 |
} |
| 3526 |
|
| 3527 |
public function getBatchId() |
| 3528 |
{ |
| 3529 |
return $this->batchId; |
| 3530 |
} |
| 3531 |
|
| 3532 |
public function setDatafeedStatus(Analytify_Google_Service_ShoppingContent_DatafeedStatus $datafeedStatus) |
| 3533 |
{ |
| 3534 |
$this->datafeedStatus = $datafeedStatus; |
| 3535 |
} |
| 3536 |
|
| 3537 |
public function getDatafeedStatus() |
| 3538 |
{ |
| 3539 |
return $this->datafeedStatus; |
| 3540 |
} |
| 3541 |
|
| 3542 |
public function setErrors(Analytify_Google_Service_ShoppingContent_Errors $errors) |
| 3543 |
{ |
| 3544 |
$this->errors = $errors; |
| 3545 |
} |
| 3546 |
|
| 3547 |
public function getErrors() |
| 3548 |
{ |
| 3549 |
return $this->errors; |
| 3550 |
} |
| 3551 |
} |
| 3552 |
|
| 3553 |
class Analytify_Google_Service_ShoppingContent_DatafeedstatusesGetResponse extends Analytify_Google_Model |
| 3554 |
{ |
| 3555 |
public $kind; |
| 3556 |
protected $resourceType = 'Analytify_Google_Service_ShoppingContent_DatafeedStatus'; |
| 3557 |
protected $resourceDataType = ''; |
| 3558 |
|
| 3559 |
public function setKind($kind) |
| 3560 |
{ |
| 3561 |
$this->kind = $kind; |
| 3562 |
} |
| 3563 |
|
| 3564 |
public function getKind() |
| 3565 |
{ |
| 3566 |
return $this->kind; |
| 3567 |
} |
| 3568 |
|
| 3569 |
public function setResource(Analytify_Google_Service_ShoppingContent_DatafeedStatus $resource) |
| 3570 |
{ |
| 3571 |
$this->resource = $resource; |
| 3572 |
} |
| 3573 |
|
| 3574 |
public function getResource() |
| 3575 |
{ |
| 3576 |
return $this->resource; |
| 3577 |
} |
| 3578 |
} |
| 3579 |
|
| 3580 |
class Analytify_Google_Service_ShoppingContent_DatafeedstatusesListResponse extends Analytify_Google_Collection |
| 3581 |
{ |
| 3582 |
public $kind; |
| 3583 |
protected $resourcesType = 'Analytify_Google_Service_ShoppingContent_DatafeedStatus'; |
| 3584 |
protected $resourcesDataType = 'array'; |
| 3585 |
|
| 3586 |
public function setKind($kind) |
| 3587 |
{ |
| 3588 |
$this->kind = $kind; |
| 3589 |
} |
| 3590 |
|
| 3591 |
public function getKind() |
| 3592 |
{ |
| 3593 |
return $this->kind; |
| 3594 |
} |
| 3595 |
|
| 3596 |
public function setResources($resources) |
| 3597 |
{ |
| 3598 |
$this->resources = $resources; |
| 3599 |
} |
| 3600 |
|
| 3601 |
public function getResources() |
| 3602 |
{ |
| 3603 |
return $this->resources; |
| 3604 |
} |
| 3605 |
} |
| 3606 |
|
| 3607 |
class Analytify_Google_Service_ShoppingContent_Error extends Analytify_Google_Model |
| 3608 |
{ |
| 3609 |
public $domain; |
| 3610 |
public $message; |
| 3611 |
public $reason; |
| 3612 |
|
| 3613 |
public function setDomain($domain) |
| 3614 |
{ |
| 3615 |
$this->domain = $domain; |
| 3616 |
} |
| 3617 |
|
| 3618 |
public function getDomain() |
| 3619 |
{ |
| 3620 |
return $this->domain; |
| 3621 |
} |
| 3622 |
|
| 3623 |
public function setMessage($message) |
| 3624 |
{ |
| 3625 |
$this->message = $message; |
| 3626 |
} |
| 3627 |
|
| 3628 |
public function getMessage() |
| 3629 |
{ |
| 3630 |
return $this->message; |
| 3631 |
} |
| 3632 |
|
| 3633 |
public function setReason($reason) |
| 3634 |
{ |
| 3635 |
$this->reason = $reason; |
| 3636 |
} |
| 3637 |
|
| 3638 |
public function getReason() |
| 3639 |
{ |
| 3640 |
return $this->reason; |
| 3641 |
} |
| 3642 |
} |
| 3643 |
|
| 3644 |
class Analytify_Google_Service_ShoppingContent_Errors extends Analytify_Google_Collection |
| 3645 |
{ |
| 3646 |
public $code; |
| 3647 |
protected $errorsType = 'Analytify_Google_Service_ShoppingContent_Error'; |
| 3648 |
protected $errorsDataType = 'array'; |
| 3649 |
public $message; |
| 3650 |
|
| 3651 |
public function setCode($code) |
| 3652 |
{ |
| 3653 |
$this->code = $code; |
| 3654 |
} |
| 3655 |
|
| 3656 |
public function getCode() |
| 3657 |
{ |
| 3658 |
return $this->code; |
| 3659 |
} |
| 3660 |
|
| 3661 |
public function setErrors($errors) |
| 3662 |
{ |
| 3663 |
$this->errors = $errors; |
| 3664 |
} |
| 3665 |
|
| 3666 |
public function getErrors() |
| 3667 |
{ |
| 3668 |
return $this->errors; |
| 3669 |
} |
| 3670 |
|
| 3671 |
public function setMessage($message) |
| 3672 |
{ |
| 3673 |
$this->message = $message; |
| 3674 |
} |
| 3675 |
|
| 3676 |
public function getMessage() |
| 3677 |
{ |
| 3678 |
return $this->message; |
| 3679 |
} |
| 3680 |
} |
| 3681 |
|
| 3682 |
class Analytify_Google_Service_ShoppingContent_Inventory extends Analytify_Google_Model |
| 3683 |
{ |
| 3684 |
public $availability; |
| 3685 |
public $kind; |
| 3686 |
protected $priceType = 'Analytify_Google_Service_ShoppingContent_Price'; |
| 3687 |
protected $priceDataType = ''; |
| 3688 |
public $quantity; |
| 3689 |
protected $salePriceType = 'Analytify_Google_Service_ShoppingContent_Price'; |
| 3690 |
protected $salePriceDataType = ''; |
| 3691 |
public $salePriceEffectiveDate; |
| 3692 |
|
| 3693 |
public function setAvailability($availability) |
| 3694 |
{ |
| 3695 |
$this->availability = $availability; |
| 3696 |
} |
| 3697 |
|
| 3698 |
public function getAvailability() |
| 3699 |
{ |
| 3700 |
return $this->availability; |
| 3701 |
} |
| 3702 |
|
| 3703 |
public function setKind($kind) |
| 3704 |
{ |
| 3705 |
$this->kind = $kind; |
| 3706 |
} |
| 3707 |
|
| 3708 |
public function getKind() |
| 3709 |
{ |
| 3710 |
return $this->kind; |
| 3711 |
} |
| 3712 |
|
| 3713 |
public function setPrice(Analytify_Google_Service_ShoppingContent_Price $price) |
| 3714 |
{ |
| 3715 |
$this->price = $price; |
| 3716 |
} |
| 3717 |
|
| 3718 |
public function getPrice() |
| 3719 |
{ |
| 3720 |
return $this->price; |
| 3721 |
} |
| 3722 |
|
| 3723 |
public function setQuantity($quantity) |
| 3724 |
{ |
| 3725 |
$this->quantity = $quantity; |
| 3726 |
} |
| 3727 |
|
| 3728 |
public function getQuantity() |
| 3729 |
{ |
| 3730 |
return $this->quantity; |
| 3731 |
} |
| 3732 |
|
| 3733 |
public function setSalePrice(Analytify_Google_Service_ShoppingContent_Price $salePrice) |
| 3734 |
{ |
| 3735 |
$this->salePrice = $salePrice; |
| 3736 |
} |
| 3737 |
|
| 3738 |
public function getSalePrice() |
| 3739 |
{ |
| 3740 |
return $this->salePrice; |
| 3741 |
} |
| 3742 |
|
| 3743 |
public function setSalePriceEffectiveDate($salePriceEffectiveDate) |
| 3744 |
{ |
| 3745 |
$this->salePriceEffectiveDate = $salePriceEffectiveDate; |
| 3746 |
} |
| 3747 |
|
| 3748 |
public function getSalePriceEffectiveDate() |
| 3749 |
{ |
| 3750 |
return $this->salePriceEffectiveDate; |
| 3751 |
} |
| 3752 |
} |
| 3753 |
|
| 3754 |
class Analytify_Google_Service_ShoppingContent_InventoryCustomBatchRequest extends Analytify_Google_Collection |
| 3755 |
{ |
| 3756 |
protected $entriesType = 'Analytify_Google_Service_ShoppingContent_InventoryCustomBatchRequestEntry'; |
| 3757 |
protected $entriesDataType = 'array'; |
| 3758 |
|
| 3759 |
public function setEntries($entries) |
| 3760 |
{ |
| 3761 |
$this->entries = $entries; |
| 3762 |
} |
| 3763 |
|
| 3764 |
public function getEntries() |
| 3765 |
{ |
| 3766 |
return $this->entries; |
| 3767 |
} |
| 3768 |
} |
| 3769 |
|
| 3770 |
class Analytify_Google_Service_ShoppingContent_InventoryCustomBatchRequestEntry extends Analytify_Google_Model |
| 3771 |
{ |
| 3772 |
public $batchId; |
| 3773 |
protected $inventoryType = 'Analytify_Google_Service_ShoppingContent_Inventory'; |
| 3774 |
protected $inventoryDataType = ''; |
| 3775 |
public $merchantId; |
| 3776 |
public $productId; |
| 3777 |
public $storeCode; |
| 3778 |
|
| 3779 |
public function setBatchId($batchId) |
| 3780 |
{ |
| 3781 |
$this->batchId = $batchId; |
| 3782 |
} |
| 3783 |
|
| 3784 |
public function getBatchId() |
| 3785 |
{ |
| 3786 |
return $this->batchId; |
| 3787 |
} |
| 3788 |
|
| 3789 |
public function setInventory(Analytify_Google_Service_ShoppingContent_Inventory $inventory) |
| 3790 |
{ |
| 3791 |
$this->inventory = $inventory; |
| 3792 |
} |
| 3793 |
|
| 3794 |
public function getInventory() |
| 3795 |
{ |
| 3796 |
return $this->inventory; |
| 3797 |
} |
| 3798 |
|
| 3799 |
public function setMerchantId($merchantId) |
| 3800 |
{ |
| 3801 |
$this->merchantId = $merchantId; |
| 3802 |
} |
| 3803 |
|
| 3804 |
public function getMerchantId() |
| 3805 |
{ |
| 3806 |
return $this->merchantId; |
| 3807 |
} |
| 3808 |
|
| 3809 |
public function setProductId($productId) |
| 3810 |
{ |
| 3811 |
$this->productId = $productId; |
| 3812 |
} |
| 3813 |
|
| 3814 |
public function getProductId() |
| 3815 |
{ |
| 3816 |
return $this->productId; |
| 3817 |
} |
| 3818 |
|
| 3819 |
public function setStoreCode($storeCode) |
| 3820 |
{ |
| 3821 |
$this->storeCode = $storeCode; |
| 3822 |
} |
| 3823 |
|
| 3824 |
public function getStoreCode() |
| 3825 |
{ |
| 3826 |
return $this->storeCode; |
| 3827 |
} |
| 3828 |
} |
| 3829 |
|
| 3830 |
class Analytify_Google_Service_ShoppingContent_InventoryCustomBatchResponse extends Analytify_Google_Collection |
| 3831 |
{ |
| 3832 |
protected $entriesType = 'Analytify_Google_Service_ShoppingContent_InventoryCustomBatchResponseEntry'; |
| 3833 |
protected $entriesDataType = 'array'; |
| 3834 |
public $kind; |
| 3835 |
|
| 3836 |
public function setEntries($entries) |
| 3837 |
{ |
| 3838 |
$this->entries = $entries; |
| 3839 |
} |
| 3840 |
|
| 3841 |
public function getEntries() |
| 3842 |
{ |
| 3843 |
return $this->entries; |
| 3844 |
} |
| 3845 |
|
| 3846 |
public function setKind($kind) |
| 3847 |
{ |
| 3848 |
$this->kind = $kind; |
| 3849 |
} |
| 3850 |
|
| 3851 |
public function getKind() |
| 3852 |
{ |
| 3853 |
return $this->kind; |
| 3854 |
} |
| 3855 |
} |
| 3856 |
|
| 3857 |
class Analytify_Google_Service_ShoppingContent_InventoryCustomBatchResponseEntry extends Analytify_Google_Model |
| 3858 |
{ |
| 3859 |
public $batchId; |
| 3860 |
protected $errorsType = 'Analytify_Google_Service_ShoppingContent_Errors'; |
| 3861 |
protected $errorsDataType = ''; |
| 3862 |
public $kind; |
| 3863 |
|
| 3864 |
public function setBatchId($batchId) |
| 3865 |
{ |
| 3866 |
$this->batchId = $batchId; |
| 3867 |
} |
| 3868 |
|
| 3869 |
public function getBatchId() |
| 3870 |
{ |
| 3871 |
return $this->batchId; |
| 3872 |
} |
| 3873 |
|
| 3874 |
public function setErrors(Analytify_Google_Service_ShoppingContent_Errors $errors) |
| 3875 |
{ |
| 3876 |
$this->errors = $errors; |
| 3877 |
} |
| 3878 |
|
| 3879 |
public function getErrors() |
| 3880 |
{ |
| 3881 |
return $this->errors; |
| 3882 |
} |
| 3883 |
|
| 3884 |
public function setKind($kind) |
| 3885 |
{ |
| 3886 |
$this->kind = $kind; |
| 3887 |
} |
| 3888 |
|
| 3889 |
public function getKind() |
| 3890 |
{ |
| 3891 |
return $this->kind; |
| 3892 |
} |
| 3893 |
} |
| 3894 |
|
| 3895 |
class Analytify_Google_Service_ShoppingContent_InventorySetRequest extends Analytify_Google_Model |
| 3896 |
{ |
| 3897 |
public $availability; |
| 3898 |
protected $priceType = 'Analytify_Google_Service_ShoppingContent_Price'; |
| 3899 |
protected $priceDataType = ''; |
| 3900 |
public $quantity; |
| 3901 |
protected $salePriceType = 'Analytify_Google_Service_ShoppingContent_Price'; |
| 3902 |
protected $salePriceDataType = ''; |
| 3903 |
public $salePriceEffectiveDate; |
| 3904 |
|
| 3905 |
public function setAvailability($availability) |
| 3906 |
{ |
| 3907 |
$this->availability = $availability; |
| 3908 |
} |
| 3909 |
|
| 3910 |
public function getAvailability() |
| 3911 |
{ |
| 3912 |
return $this->availability; |
| 3913 |
} |
| 3914 |
|
| 3915 |
public function setPrice(Analytify_Google_Service_ShoppingContent_Price $price) |
| 3916 |
{ |
| 3917 |
$this->price = $price; |
| 3918 |
} |
| 3919 |
|
| 3920 |
public function getPrice() |
| 3921 |
{ |
| 3922 |
return $this->price; |
| 3923 |
} |
| 3924 |
|
| 3925 |
public function setQuantity($quantity) |
| 3926 |
{ |
| 3927 |
$this->quantity = $quantity; |
| 3928 |
} |
| 3929 |
|
| 3930 |
public function getQuantity() |
| 3931 |
{ |
| 3932 |
return $this->quantity; |
| 3933 |
} |
| 3934 |
|
| 3935 |
public function setSalePrice(Analytify_Google_Service_ShoppingContent_Price $salePrice) |
| 3936 |
{ |
| 3937 |
$this->salePrice = $salePrice; |
| 3938 |
} |
| 3939 |
|
| 3940 |
public function getSalePrice() |
| 3941 |
{ |
| 3942 |
return $this->salePrice; |
| 3943 |
} |
| 3944 |
|
| 3945 |
public function setSalePriceEffectiveDate($salePriceEffectiveDate) |
| 3946 |
{ |
| 3947 |
$this->salePriceEffectiveDate = $salePriceEffectiveDate; |
| 3948 |
} |
| 3949 |
|
| 3950 |
public function getSalePriceEffectiveDate() |
| 3951 |
{ |
| 3952 |
return $this->salePriceEffectiveDate; |
| 3953 |
} |
| 3954 |
} |
| 3955 |
|
| 3956 |
class Analytify_Google_Service_ShoppingContent_InventorySetResponse extends Analytify_Google_Model |
| 3957 |
{ |
| 3958 |
public $kind; |
| 3959 |
|
| 3960 |
public function setKind($kind) |
| 3961 |
{ |
| 3962 |
$this->kind = $kind; |
| 3963 |
} |
| 3964 |
|
| 3965 |
public function getKind() |
| 3966 |
{ |
| 3967 |
return $this->kind; |
| 3968 |
} |
| 3969 |
} |
| 3970 |
|
| 3971 |
class Analytify_Google_Service_ShoppingContent_LoyaltyPoints extends Analytify_Google_Model |
| 3972 |
{ |
| 3973 |
public $name; |
| 3974 |
public $pointsValue; |
| 3975 |
public $ratio; |
| 3976 |
|
| 3977 |
public function setName($name) |
| 3978 |
{ |
| 3979 |
$this->name = $name; |
| 3980 |
} |
| 3981 |
|
| 3982 |
public function getName() |
| 3983 |
{ |
| 3984 |
return $this->name; |
| 3985 |
} |
| 3986 |
|
| 3987 |
public function setPointsValue($pointsValue) |
| 3988 |
{ |
| 3989 |
$this->pointsValue = $pointsValue; |
| 3990 |
} |
| 3991 |
|
| 3992 |
public function getPointsValue() |
| 3993 |
{ |
| 3994 |
return $this->pointsValue; |
| 3995 |
} |
| 3996 |
|
| 3997 |
public function setRatio($ratio) |
| 3998 |
{ |
| 3999 |
$this->ratio = $ratio; |
| 4000 |
} |
| 4001 |
|
| 4002 |
public function getRatio() |
| 4003 |
{ |
| 4004 |
return $this->ratio; |
| 4005 |
} |
| 4006 |
} |
| 4007 |
|
| 4008 |
class Analytify_Google_Service_ShoppingContent_Price extends Analytify_Google_Model |
| 4009 |
{ |
| 4010 |
public $currency; |
| 4011 |
public $value; |
| 4012 |
|
| 4013 |
public function setCurrency($currency) |
| 4014 |
{ |
| 4015 |
$this->currency = $currency; |
| 4016 |
} |
| 4017 |
|
| 4018 |
public function getCurrency() |
| 4019 |
{ |
| 4020 |
return $this->currency; |
| 4021 |
} |
| 4022 |
|
| 4023 |
public function setValue($value) |
| 4024 |
{ |
| 4025 |
$this->value = $value; |
| 4026 |
} |
| 4027 |
|
| 4028 |
public function getValue() |
| 4029 |
{ |
| 4030 |
return $this->value; |
| 4031 |
} |
| 4032 |
} |
| 4033 |
|
| 4034 |
class Analytify_Google_Service_ShoppingContent_Product extends Analytify_Google_Collection |
| 4035 |
{ |
| 4036 |
public $additionalImageLinks; |
| 4037 |
public $adult; |
| 4038 |
public $adwordsGrouping; |
| 4039 |
public $adwordsLabels; |
| 4040 |
public $adwordsRedirect; |
| 4041 |
public $ageGroup; |
| 4042 |
public $availability; |
| 4043 |
public $availabilityDate; |
| 4044 |
public $brand; |
| 4045 |
public $channel; |
| 4046 |
public $color; |
| 4047 |
public $condition; |
| 4048 |
public $contentLanguage; |
| 4049 |
protected $customAttributesType = 'Analytify_Google_Service_ShoppingContent_ProductCustomAttribute'; |
| 4050 |
protected $customAttributesDataType = 'array'; |
| 4051 |
protected $customGroupsType = 'Analytify_Google_Service_ShoppingContent_ProductCustomGroup'; |
| 4052 |
protected $customGroupsDataType = 'array'; |
| 4053 |
public $customLabel0; |
| 4054 |
public $customLabel1; |
| 4055 |
public $customLabel2; |
| 4056 |
public $customLabel3; |
| 4057 |
public $customLabel4; |
| 4058 |
public $description; |
| 4059 |
protected $destinationsType = 'Analytify_Google_Service_ShoppingContent_ProductDestination'; |
| 4060 |
protected $destinationsDataType = 'array'; |
| 4061 |
public $energyEfficiencyClass; |
| 4062 |
public $expirationDate; |
| 4063 |
public $gender; |
| 4064 |
public $googleProductCategory; |
| 4065 |
public $gtin; |
| 4066 |
public $id; |
| 4067 |
public $identifierExists; |
| 4068 |
public $imageLink; |
| 4069 |
protected $installmentType = 'Analytify_Google_Service_ShoppingContent_ProductInstallment'; |
| 4070 |
protected $installmentDataType = ''; |
| 4071 |
public $isBundle; |
| 4072 |
public $itemGroupId; |
| 4073 |
public $kind; |
| 4074 |
public $link; |
| 4075 |
protected $loyaltyPointsType = 'Analytify_Google_Service_ShoppingContent_LoyaltyPoints'; |
| 4076 |
protected $loyaltyPointsDataType = ''; |
| 4077 |
public $material; |
| 4078 |
public $merchantMultipackQuantity; |
| 4079 |
public $mobileLink; |
| 4080 |
public $mpn; |
| 4081 |
public $offerId; |
| 4082 |
public $onlineOnly; |
| 4083 |
public $pattern; |
| 4084 |
protected $priceType = 'Analytify_Google_Service_ShoppingContent_Price'; |
| 4085 |
protected $priceDataType = ''; |
| 4086 |
public $productType; |
| 4087 |
protected $salePriceType = 'Analytify_Google_Service_ShoppingContent_Price'; |
| 4088 |
protected $salePriceDataType = ''; |
| 4089 |
public $salePriceEffectiveDate; |
| 4090 |
protected $shippingType = 'Analytify_Google_Service_ShoppingContent_ProductShipping'; |
| 4091 |
protected $shippingDataType = 'array'; |
| 4092 |
protected $shippingWeightType = 'Analytify_Google_Service_ShoppingContent_ProductShippingWeight'; |
| 4093 |
protected $shippingWeightDataType = ''; |
| 4094 |
public $sizeSystem; |
| 4095 |
public $sizeType; |
| 4096 |
public $sizes; |
| 4097 |
public $targetCountry; |
| 4098 |
protected $taxesType = 'Analytify_Google_Service_ShoppingContent_ProductTax'; |
| 4099 |
protected $taxesDataType = 'array'; |
| 4100 |
public $title; |
| 4101 |
public $unitPricingBaseMeasure; |
| 4102 |
public $unitPricingMeasure; |
| 4103 |
public $validatedDestinations; |
| 4104 |
protected $warningsType = 'Analytify_Google_Service_ShoppingContent_Error'; |
| 4105 |
protected $warningsDataType = 'array'; |
| 4106 |
|
| 4107 |
public function setAdditionalImageLinks($additionalImageLinks) |
| 4108 |
{ |
| 4109 |
$this->additionalImageLinks = $additionalImageLinks; |
| 4110 |
} |
| 4111 |
|
| 4112 |
public function getAdditionalImageLinks() |
| 4113 |
{ |
| 4114 |
return $this->additionalImageLinks; |
| 4115 |
} |
| 4116 |
|
| 4117 |
public function setAdult($adult) |
| 4118 |
{ |
| 4119 |
$this->adult = $adult; |
| 4120 |
} |
| 4121 |
|
| 4122 |
public function getAdult() |
| 4123 |
{ |
| 4124 |
return $this->adult; |
| 4125 |
} |
| 4126 |
|
| 4127 |
public function setAdwordsGrouping($adwordsGrouping) |
| 4128 |
{ |
| 4129 |
$this->adwordsGrouping = $adwordsGrouping; |
| 4130 |
} |
| 4131 |
|
| 4132 |
public function getAdwordsGrouping() |
| 4133 |
{ |
| 4134 |
return $this->adwordsGrouping; |
| 4135 |
} |
| 4136 |
|
| 4137 |
public function setAdwordsLabels($adwordsLabels) |
| 4138 |
{ |
| 4139 |
$this->adwordsLabels = $adwordsLabels; |
| 4140 |
} |
| 4141 |
|
| 4142 |
public function getAdwordsLabels() |
| 4143 |
{ |
| 4144 |
return $this->adwordsLabels; |
| 4145 |
} |
| 4146 |
|
| 4147 |
public function setAdwordsRedirect($adwordsRedirect) |
| 4148 |
{ |
| 4149 |
$this->adwordsRedirect = $adwordsRedirect; |
| 4150 |
} |
| 4151 |
|
| 4152 |
public function getAdwordsRedirect() |
| 4153 |
{ |
| 4154 |
return $this->adwordsRedirect; |
| 4155 |
} |
| 4156 |
|
| 4157 |
public function setAgeGroup($ageGroup) |
| 4158 |
{ |
| 4159 |
$this->ageGroup = $ageGroup; |
| 4160 |
} |
| 4161 |
|
| 4162 |
public function getAgeGroup() |
| 4163 |
{ |
| 4164 |
return $this->ageGroup; |
| 4165 |
} |
| 4166 |
|
| 4167 |
public function setAvailability($availability) |
| 4168 |
{ |
| 4169 |
$this->availability = $availability; |
| 4170 |
} |
| 4171 |
|
| 4172 |
public function getAvailability() |
| 4173 |
{ |
| 4174 |
return $this->availability; |
| 4175 |
} |
| 4176 |
|
| 4177 |
public function setAvailabilityDate($availabilityDate) |
| 4178 |
{ |
| 4179 |
$this->availabilityDate = $availabilityDate; |
| 4180 |
} |
| 4181 |
|
| 4182 |
public function getAvailabilityDate() |
| 4183 |
{ |
| 4184 |
return $this->availabilityDate; |
| 4185 |
} |
| 4186 |
|
| 4187 |
public function setBrand($brand) |
| 4188 |
{ |
| 4189 |
$this->brand = $brand; |
| 4190 |
} |
| 4191 |
|
| 4192 |
public function getBrand() |
| 4193 |
{ |
| 4194 |
return $this->brand; |
| 4195 |
} |
| 4196 |
|
| 4197 |
public function setChannel($channel) |
| 4198 |
{ |
| 4199 |
$this->channel = $channel; |
| 4200 |
} |
| 4201 |
|
| 4202 |
public function getChannel() |
| 4203 |
{ |
| 4204 |
return $this->channel; |
| 4205 |
} |
| 4206 |
|
| 4207 |
public function setColor($color) |
| 4208 |
{ |
| 4209 |
$this->color = $color; |
| 4210 |
} |
| 4211 |
|
| 4212 |
public function getColor() |
| 4213 |
{ |
| 4214 |
return $this->color; |
| 4215 |
} |
| 4216 |
|
| 4217 |
public function setCondition($condition) |
| 4218 |
{ |
| 4219 |
$this->condition = $condition; |
| 4220 |
} |
| 4221 |
|
| 4222 |
public function getCondition() |
| 4223 |
{ |
| 4224 |
return $this->condition; |
| 4225 |
} |
| 4226 |
|
| 4227 |
public function setContentLanguage($contentLanguage) |
| 4228 |
{ |
| 4229 |
$this->contentLanguage = $contentLanguage; |
| 4230 |
} |
| 4231 |
|
| 4232 |
public function getContentLanguage() |
| 4233 |
{ |
| 4234 |
return $this->contentLanguage; |
| 4235 |
} |
| 4236 |
|
| 4237 |
public function setCustomAttributes($customAttributes) |
| 4238 |
{ |
| 4239 |
$this->customAttributes = $customAttributes; |
| 4240 |
} |
| 4241 |
|
| 4242 |
public function getCustomAttributes() |
| 4243 |
{ |
| 4244 |
return $this->customAttributes; |
| 4245 |
} |
| 4246 |
|
| 4247 |
public function setCustomGroups($customGroups) |
| 4248 |
{ |
| 4249 |
$this->customGroups = $customGroups; |
| 4250 |
} |
| 4251 |
|
| 4252 |
public function getCustomGroups() |
| 4253 |
{ |
| 4254 |
return $this->customGroups; |
| 4255 |
} |
| 4256 |
|
| 4257 |
public function setCustomLabel0($customLabel0) |
| 4258 |
{ |
| 4259 |
$this->customLabel0 = $customLabel0; |
| 4260 |
} |
| 4261 |
|
| 4262 |
public function getCustomLabel0() |
| 4263 |
{ |
| 4264 |
return $this->customLabel0; |
| 4265 |
} |
| 4266 |
|
| 4267 |
public function setCustomLabel1($customLabel1) |
| 4268 |
{ |
| 4269 |
$this->customLabel1 = $customLabel1; |
| 4270 |
} |
| 4271 |
|
| 4272 |
public function getCustomLabel1() |
| 4273 |
{ |
| 4274 |
return $this->customLabel1; |
| 4275 |
} |
| 4276 |
|
| 4277 |
public function setCustomLabel2($customLabel2) |
| 4278 |
{ |
| 4279 |
$this->customLabel2 = $customLabel2; |
| 4280 |
} |
| 4281 |
|
| 4282 |
public function getCustomLabel2() |
| 4283 |
{ |
| 4284 |
return $this->customLabel2; |
| 4285 |
} |
| 4286 |
|
| 4287 |
public function setCustomLabel3($customLabel3) |
| 4288 |
{ |
| 4289 |
$this->customLabel3 = $customLabel3; |
| 4290 |
} |
| 4291 |
|
| 4292 |
public function getCustomLabel3() |
| 4293 |
{ |
| 4294 |
return $this->customLabel3; |
| 4295 |
} |
| 4296 |
|
| 4297 |
public function setCustomLabel4($customLabel4) |
| 4298 |
{ |
| 4299 |
$this->customLabel4 = $customLabel4; |
| 4300 |
} |
| 4301 |
|
| 4302 |
public function getCustomLabel4() |
| 4303 |
{ |
| 4304 |
return $this->customLabel4; |
| 4305 |
} |
| 4306 |
|
| 4307 |
public function setDescription($description) |
| 4308 |
{ |
| 4309 |
$this->description = $description; |
| 4310 |
} |
| 4311 |
|
| 4312 |
public function getDescription() |
| 4313 |
{ |
| 4314 |
return $this->description; |
| 4315 |
} |
| 4316 |
|
| 4317 |
public function setDestinations($destinations) |
| 4318 |
{ |
| 4319 |
$this->destinations = $destinations; |
| 4320 |
} |
| 4321 |
|
| 4322 |
public function getDestinations() |
| 4323 |
{ |
| 4324 |
return $this->destinations; |
| 4325 |
} |
| 4326 |
|
| 4327 |
public function setEnergyEfficiencyClass($energyEfficiencyClass) |
| 4328 |
{ |
| 4329 |
$this->energyEfficiencyClass = $energyEfficiencyClass; |
| 4330 |
} |
| 4331 |
|
| 4332 |
public function getEnergyEfficiencyClass() |
| 4333 |
{ |
| 4334 |
return $this->energyEfficiencyClass; |
| 4335 |
} |
| 4336 |
|
| 4337 |
public function setExpirationDate($expirationDate) |
| 4338 |
{ |
| 4339 |
$this->expirationDate = $expirationDate; |
| 4340 |
} |
| 4341 |
|
| 4342 |
public function getExpirationDate() |
| 4343 |
{ |
| 4344 |
return $this->expirationDate; |
| 4345 |
} |
| 4346 |
|
| 4347 |
public function setGender($gender) |
| 4348 |
{ |
| 4349 |
$this->gender = $gender; |
| 4350 |
} |
| 4351 |
|
| 4352 |
public function getGender() |
| 4353 |
{ |
| 4354 |
return $this->gender; |
| 4355 |
} |
| 4356 |
|
| 4357 |
public function setGoogleProductCategory($googleProductCategory) |
| 4358 |
{ |
| 4359 |
$this->googleProductCategory = $googleProductCategory; |
| 4360 |
} |
| 4361 |
|
| 4362 |
public function getGoogleProductCategory() |
| 4363 |
{ |
| 4364 |
return $this->googleProductCategory; |
| 4365 |
} |
| 4366 |
|
| 4367 |
public function setGtin($gtin) |
| 4368 |
{ |
| 4369 |
$this->gtin = $gtin; |
| 4370 |
} |
| 4371 |
|
| 4372 |
public function getGtin() |
| 4373 |
{ |
| 4374 |
return $this->gtin; |
| 4375 |
} |
| 4376 |
|
| 4377 |
public function setId($id) |
| 4378 |
{ |
| 4379 |
$this->id = $id; |
| 4380 |
} |
| 4381 |
|
| 4382 |
public function getId() |
| 4383 |
{ |
| 4384 |
return $this->id; |
| 4385 |
} |
| 4386 |
|
| 4387 |
public function setIdentifierExists($identifierExists) |
| 4388 |
{ |
| 4389 |
$this->identifierExists = $identifierExists; |
| 4390 |
} |
| 4391 |
|
| 4392 |
public function getIdentifierExists() |
| 4393 |
{ |
| 4394 |
return $this->identifierExists; |
| 4395 |
} |
| 4396 |
|
| 4397 |
public function setImageLink($imageLink) |
| 4398 |
{ |
| 4399 |
$this->imageLink = $imageLink; |
| 4400 |
} |
| 4401 |
|
| 4402 |
public function getImageLink() |
| 4403 |
{ |
| 4404 |
return $this->imageLink; |
| 4405 |
} |
| 4406 |
|
| 4407 |
public function setInstallment(Analytify_Google_Service_ShoppingContent_ProductInstallment $installment) |
| 4408 |
{ |
| 4409 |
$this->installment = $installment; |
| 4410 |
} |
| 4411 |
|
| 4412 |
public function getInstallment() |
| 4413 |
{ |
| 4414 |
return $this->installment; |
| 4415 |
} |
| 4416 |
|
| 4417 |
public function setIsBundle($isBundle) |
| 4418 |
{ |
| 4419 |
$this->isBundle = $isBundle; |
| 4420 |
} |
| 4421 |
|
| 4422 |
public function getIsBundle() |
| 4423 |
{ |
| 4424 |
return $this->isBundle; |
| 4425 |
} |
| 4426 |
|
| 4427 |
public function setItemGroupId($itemGroupId) |
| 4428 |
{ |
| 4429 |
$this->itemGroupId = $itemGroupId; |
| 4430 |
} |
| 4431 |
|
| 4432 |
public function getItemGroupId() |
| 4433 |
{ |
| 4434 |
return $this->itemGroupId; |
| 4435 |
} |
| 4436 |
|
| 4437 |
public function setKind($kind) |
| 4438 |
{ |
| 4439 |
$this->kind = $kind; |
| 4440 |
} |
| 4441 |
|
| 4442 |
public function getKind() |
| 4443 |
{ |
| 4444 |
return $this->kind; |
| 4445 |
} |
| 4446 |
|
| 4447 |
public function setLink($link) |
| 4448 |
{ |
| 4449 |
$this->link = $link; |
| 4450 |
} |
| 4451 |
|
| 4452 |
public function getLink() |
| 4453 |
{ |
| 4454 |
return $this->link; |
| 4455 |
} |
| 4456 |
|
| 4457 |
public function setLoyaltyPoints(Analytify_Google_Service_ShoppingContent_LoyaltyPoints $loyaltyPoints) |
| 4458 |
{ |
| 4459 |
$this->loyaltyPoints = $loyaltyPoints; |
| 4460 |
} |
| 4461 |
|
| 4462 |
public function getLoyaltyPoints() |
| 4463 |
{ |
| 4464 |
return $this->loyaltyPoints; |
| 4465 |
} |
| 4466 |
|
| 4467 |
public function setMaterial($material) |
| 4468 |
{ |
| 4469 |
$this->material = $material; |
| 4470 |
} |
| 4471 |
|
| 4472 |
public function getMaterial() |
| 4473 |
{ |
| 4474 |
return $this->material; |
| 4475 |
} |
| 4476 |
|
| 4477 |
public function setMerchantMultipackQuantity($merchantMultipackQuantity) |
| 4478 |
{ |
| 4479 |
$this->merchantMultipackQuantity = $merchantMultipackQuantity; |
| 4480 |
} |
| 4481 |
|
| 4482 |
public function getMerchantMultipackQuantity() |
| 4483 |
{ |
| 4484 |
return $this->merchantMultipackQuantity; |
| 4485 |
} |
| 4486 |
|
| 4487 |
public function setMobileLink($mobileLink) |
| 4488 |
{ |
| 4489 |
$this->mobileLink = $mobileLink; |
| 4490 |
} |
| 4491 |
|
| 4492 |
public function getMobileLink() |
| 4493 |
{ |
| 4494 |
return $this->mobileLink; |
| 4495 |
} |
| 4496 |
|
| 4497 |
public function setMpn($mpn) |
| 4498 |
{ |
| 4499 |
$this->mpn = $mpn; |
| 4500 |
} |
| 4501 |
|
| 4502 |
public function getMpn() |
| 4503 |
{ |
| 4504 |
return $this->mpn; |
| 4505 |
} |
| 4506 |
|
| 4507 |
public function setOfferId($offerId) |
| 4508 |
{ |
| 4509 |
$this->offerId = $offerId; |
| 4510 |
} |
| 4511 |
|
| 4512 |
public function getOfferId() |
| 4513 |
{ |
| 4514 |
return $this->offerId; |
| 4515 |
} |
| 4516 |
|
| 4517 |
public function setOnlineOnly($onlineOnly) |
| 4518 |
{ |
| 4519 |
$this->onlineOnly = $onlineOnly; |
| 4520 |
} |
| 4521 |
|
| 4522 |
public function getOnlineOnly() |
| 4523 |
{ |
| 4524 |
return $this->onlineOnly; |
| 4525 |
} |
| 4526 |
|
| 4527 |
public function setPattern($pattern) |
| 4528 |
{ |
| 4529 |
$this->pattern = $pattern; |
| 4530 |
} |
| 4531 |
|
| 4532 |
public function getPattern() |
| 4533 |
{ |
| 4534 |
return $this->pattern; |
| 4535 |
} |
| 4536 |
|
| 4537 |
public function setPrice(Analytify_Google_Service_ShoppingContent_Price $price) |
| 4538 |
{ |
| 4539 |
$this->price = $price; |
| 4540 |
} |
| 4541 |
|
| 4542 |
public function getPrice() |
| 4543 |
{ |
| 4544 |
return $this->price; |
| 4545 |
} |
| 4546 |
|
| 4547 |
public function setProductType($productType) |
| 4548 |
{ |
| 4549 |
$this->productType = $productType; |
| 4550 |
} |
| 4551 |
|
| 4552 |
public function getProductType() |
| 4553 |
{ |
| 4554 |
return $this->productType; |
| 4555 |
} |
| 4556 |
|
| 4557 |
public function setSalePrice(Analytify_Google_Service_ShoppingContent_Price $salePrice) |
| 4558 |
{ |
| 4559 |
$this->salePrice = $salePrice; |
| 4560 |
} |
| 4561 |
|
| 4562 |
public function getSalePrice() |
| 4563 |
{ |
| 4564 |
return $this->salePrice; |
| 4565 |
} |
| 4566 |
|
| 4567 |
public function setSalePriceEffectiveDate($salePriceEffectiveDate) |
| 4568 |
{ |
| 4569 |
$this->salePriceEffectiveDate = $salePriceEffectiveDate; |
| 4570 |
} |
| 4571 |
|
| 4572 |
public function getSalePriceEffectiveDate() |
| 4573 |
{ |
| 4574 |
return $this->salePriceEffectiveDate; |
| 4575 |
} |
| 4576 |
|
| 4577 |
public function setShipping($shipping) |
| 4578 |
{ |
| 4579 |
$this->shipping = $shipping; |
| 4580 |
} |
| 4581 |
|
| 4582 |
public function getShipping() |
| 4583 |
{ |
| 4584 |
return $this->shipping; |
| 4585 |
} |
| 4586 |
|
| 4587 |
public function setShippingWeight(Analytify_Google_Service_ShoppingContent_ProductShippingWeight $shippingWeight) |
| 4588 |
{ |
| 4589 |
$this->shippingWeight = $shippingWeight; |
| 4590 |
} |
| 4591 |
|
| 4592 |
public function getShippingWeight() |
| 4593 |
{ |
| 4594 |
return $this->shippingWeight; |
| 4595 |
} |
| 4596 |
|
| 4597 |
public function setSizeSystem($sizeSystem) |
| 4598 |
{ |
| 4599 |
$this->sizeSystem = $sizeSystem; |
| 4600 |
} |
| 4601 |
|
| 4602 |
public function getSizeSystem() |
| 4603 |
{ |
| 4604 |
return $this->sizeSystem; |
| 4605 |
} |
| 4606 |
|
| 4607 |
public function setSizeType($sizeType) |
| 4608 |
{ |
| 4609 |
$this->sizeType = $sizeType; |
| 4610 |
} |
| 4611 |
|
| 4612 |
public function getSizeType() |
| 4613 |
{ |
| 4614 |
return $this->sizeType; |
| 4615 |
} |
| 4616 |
|
| 4617 |
public function setSizes($sizes) |
| 4618 |
{ |
| 4619 |
$this->sizes = $sizes; |
| 4620 |
} |
| 4621 |
|
| 4622 |
public function getSizes() |
| 4623 |
{ |
| 4624 |
return $this->sizes; |
| 4625 |
} |
| 4626 |
|
| 4627 |
public function setTargetCountry($targetCountry) |
| 4628 |
{ |
| 4629 |
$this->targetCountry = $targetCountry; |
| 4630 |
} |
| 4631 |
|
| 4632 |
public function getTargetCountry() |
| 4633 |
{ |
| 4634 |
return $this->targetCountry; |
| 4635 |
} |
| 4636 |
|
| 4637 |
public function setTaxes($taxes) |
| 4638 |
{ |
| 4639 |
$this->taxes = $taxes; |
| 4640 |
} |
| 4641 |
|
| 4642 |
public function getTaxes() |
| 4643 |
{ |
| 4644 |
return $this->taxes; |
| 4645 |
} |
| 4646 |
|
| 4647 |
public function setTitle($title) |
| 4648 |
{ |
| 4649 |
$this->title = $title; |
| 4650 |
} |
| 4651 |
|
| 4652 |
public function getTitle() |
| 4653 |
{ |
| 4654 |
return $this->title; |
| 4655 |
} |
| 4656 |
|
| 4657 |
public function setUnitPricingBaseMeasure($unitPricingBaseMeasure) |
| 4658 |
{ |
| 4659 |
$this->unitPricingBaseMeasure = $unitPricingBaseMeasure; |
| 4660 |
} |
| 4661 |
|
| 4662 |
public function getUnitPricingBaseMeasure() |
| 4663 |
{ |
| 4664 |
return $this->unitPricingBaseMeasure; |
| 4665 |
} |
| 4666 |
|
| 4667 |
public function setUnitPricingMeasure($unitPricingMeasure) |
| 4668 |
{ |
| 4669 |
$this->unitPricingMeasure = $unitPricingMeasure; |
| 4670 |
} |
| 4671 |
|
| 4672 |
public function getUnitPricingMeasure() |
| 4673 |
{ |
| 4674 |
return $this->unitPricingMeasure; |
| 4675 |
} |
| 4676 |
|
| 4677 |
public function setValidatedDestinations($validatedDestinations) |
| 4678 |
{ |
| 4679 |
$this->validatedDestinations = $validatedDestinations; |
| 4680 |
} |
| 4681 |
|
| 4682 |
public function getValidatedDestinations() |
| 4683 |
{ |
| 4684 |
return $this->validatedDestinations; |
| 4685 |
} |
| 4686 |
|
| 4687 |
public function setWarnings($warnings) |
| 4688 |
{ |
| 4689 |
$this->warnings = $warnings; |
| 4690 |
} |
| 4691 |
|
| 4692 |
public function getWarnings() |
| 4693 |
{ |
| 4694 |
return $this->warnings; |
| 4695 |
} |
| 4696 |
} |
| 4697 |
|
| 4698 |
class Analytify_Google_Service_ShoppingContent_ProductCustomAttribute extends Analytify_Google_Model |
| 4699 |
{ |
| 4700 |
public $name; |
| 4701 |
public $type; |
| 4702 |
public $unit; |
| 4703 |
public $value; |
| 4704 |
|
| 4705 |
public function setName($name) |
| 4706 |
{ |
| 4707 |
$this->name = $name; |
| 4708 |
} |
| 4709 |
|
| 4710 |
public function getName() |
| 4711 |
{ |
| 4712 |
return $this->name; |
| 4713 |
} |
| 4714 |
|
| 4715 |
public function setType($type) |
| 4716 |
{ |
| 4717 |
$this->type = $type; |
| 4718 |
} |
| 4719 |
|
| 4720 |
public function getType() |
| 4721 |
{ |
| 4722 |
return $this->type; |
| 4723 |
} |
| 4724 |
|
| 4725 |
public function setUnit($unit) |
| 4726 |
{ |
| 4727 |
$this->unit = $unit; |
| 4728 |
} |
| 4729 |
|
| 4730 |
public function getUnit() |
| 4731 |
{ |
| 4732 |
return $this->unit; |
| 4733 |
} |
| 4734 |
|
| 4735 |
public function setValue($value) |
| 4736 |
{ |
| 4737 |
$this->value = $value; |
| 4738 |
} |
| 4739 |
|
| 4740 |
public function getValue() |
| 4741 |
{ |
| 4742 |
return $this->value; |
| 4743 |
} |
| 4744 |
} |
| 4745 |
|
| 4746 |
class Analytify_Google_Service_ShoppingContent_ProductCustomGroup extends Analytify_Google_Collection |
| 4747 |
{ |
| 4748 |
protected $attributesType = 'Analytify_Google_Service_ShoppingContent_ProductCustomAttribute'; |
| 4749 |
protected $attributesDataType = 'array'; |
| 4750 |
public $name; |
| 4751 |
|
| 4752 |
public function setAttributes($attributes) |
| 4753 |
{ |
| 4754 |
$this->attributes = $attributes; |
| 4755 |
} |
| 4756 |
|
| 4757 |
public function getAttributes() |
| 4758 |
{ |
| 4759 |
return $this->attributes; |
| 4760 |
} |
| 4761 |
|
| 4762 |
public function setName($name) |
| 4763 |
{ |
| 4764 |
$this->name = $name; |
| 4765 |
} |
| 4766 |
|
| 4767 |
public function getName() |
| 4768 |
{ |
| 4769 |
return $this->name; |
| 4770 |
} |
| 4771 |
} |
| 4772 |
|
| 4773 |
class Analytify_Google_Service_ShoppingContent_ProductDestination extends Analytify_Google_Model |
| 4774 |
{ |
| 4775 |
public $destinationName; |
| 4776 |
public $intention; |
| 4777 |
|
| 4778 |
public function setDestinationName($destinationName) |
| 4779 |
{ |
| 4780 |
$this->destinationName = $destinationName; |
| 4781 |
} |
| 4782 |
|
| 4783 |
public function getDestinationName() |
| 4784 |
{ |
| 4785 |
return $this->destinationName; |
| 4786 |
} |
| 4787 |
|
| 4788 |
public function setIntention($intention) |
| 4789 |
{ |
| 4790 |
$this->intention = $intention; |
| 4791 |
} |
| 4792 |
|
| 4793 |
public function getIntention() |
| 4794 |
{ |
| 4795 |
return $this->intention; |
| 4796 |
} |
| 4797 |
} |
| 4798 |
|
| 4799 |
class Analytify_Google_Service_ShoppingContent_ProductInstallment extends Analytify_Google_Model |
| 4800 |
{ |
| 4801 |
protected $amountType = 'Analytify_Google_Service_ShoppingContent_Price'; |
| 4802 |
protected $amountDataType = ''; |
| 4803 |
public $months; |
| 4804 |
|
| 4805 |
public function setAmount(Analytify_Google_Service_ShoppingContent_Price $amount) |
| 4806 |
{ |
| 4807 |
$this->amount = $amount; |
| 4808 |
} |
| 4809 |
|
| 4810 |
public function getAmount() |
| 4811 |
{ |
| 4812 |
return $this->amount; |
| 4813 |
} |
| 4814 |
|
| 4815 |
public function setMonths($months) |
| 4816 |
{ |
| 4817 |
$this->months = $months; |
| 4818 |
} |
| 4819 |
|
| 4820 |
public function getMonths() |
| 4821 |
{ |
| 4822 |
return $this->months; |
| 4823 |
} |
| 4824 |
} |
| 4825 |
|
| 4826 |
class Analytify_Google_Service_ShoppingContent_ProductShipping extends Analytify_Google_Model |
| 4827 |
{ |
| 4828 |
public $country; |
| 4829 |
protected $priceType = 'Analytify_Google_Service_ShoppingContent_Price'; |
| 4830 |
protected $priceDataType = ''; |
| 4831 |
public $region; |
| 4832 |
public $service; |
| 4833 |
|
| 4834 |
public function setCountry($country) |
| 4835 |
{ |
| 4836 |
$this->country = $country; |
| 4837 |
} |
| 4838 |
|
| 4839 |
public function getCountry() |
| 4840 |
{ |
| 4841 |
return $this->country; |
| 4842 |
} |
| 4843 |
|
| 4844 |
public function setPrice(Analytify_Google_Service_ShoppingContent_Price $price) |
| 4845 |
{ |
| 4846 |
$this->price = $price; |
| 4847 |
} |
| 4848 |
|
| 4849 |
public function getPrice() |
| 4850 |
{ |
| 4851 |
return $this->price; |
| 4852 |
} |
| 4853 |
|
| 4854 |
public function setRegion($region) |
| 4855 |
{ |
| 4856 |
$this->region = $region; |
| 4857 |
} |
| 4858 |
|
| 4859 |
public function getRegion() |
| 4860 |
{ |
| 4861 |
return $this->region; |
| 4862 |
} |
| 4863 |
|
| 4864 |
public function setService($service) |
| 4865 |
{ |
| 4866 |
$this->service = $service; |
| 4867 |
} |
| 4868 |
|
| 4869 |
public function getService() |
| 4870 |
{ |
| 4871 |
return $this->service; |
| 4872 |
} |
| 4873 |
} |
| 4874 |
|
| 4875 |
class Analytify_Google_Service_ShoppingContent_ProductShippingWeight extends Analytify_Google_Model |
| 4876 |
{ |
| 4877 |
public $unit; |
| 4878 |
public $value; |
| 4879 |
|
| 4880 |
public function setUnit($unit) |
| 4881 |
{ |
| 4882 |
$this->unit = $unit; |
| 4883 |
} |
| 4884 |
|
| 4885 |
public function getUnit() |
| 4886 |
{ |
| 4887 |
return $this->unit; |
| 4888 |
} |
| 4889 |
|
| 4890 |
public function setValue($value) |
| 4891 |
{ |
| 4892 |
$this->value = $value; |
| 4893 |
} |
| 4894 |
|
| 4895 |
public function getValue() |
| 4896 |
{ |
| 4897 |
return $this->value; |
| 4898 |
} |
| 4899 |
} |
| 4900 |
|
| 4901 |
class Analytify_Google_Service_ShoppingContent_ProductStatus extends Analytify_Google_Collection |
| 4902 |
{ |
| 4903 |
protected $dataQualityIssuesType = 'Analytify_Google_Service_ShoppingContent_ProductStatusDataQualityIssue'; |
| 4904 |
protected $dataQualityIssuesDataType = 'array'; |
| 4905 |
protected $destinationStatusesType = 'Analytify_Google_Service_ShoppingContent_ProductStatusDestinationStatus'; |
| 4906 |
protected $destinationStatusesDataType = 'array'; |
| 4907 |
public $kind; |
| 4908 |
public $link; |
| 4909 |
public $productId; |
| 4910 |
public $title; |
| 4911 |
|
| 4912 |
public function setDataQualityIssues($dataQualityIssues) |
| 4913 |
{ |
| 4914 |
$this->dataQualityIssues = $dataQualityIssues; |
| 4915 |
} |
| 4916 |
|
| 4917 |
public function getDataQualityIssues() |
| 4918 |
{ |
| 4919 |
return $this->dataQualityIssues; |
| 4920 |
} |
| 4921 |
|
| 4922 |
public function setDestinationStatuses($destinationStatuses) |
| 4923 |
{ |
| 4924 |
$this->destinationStatuses = $destinationStatuses; |
| 4925 |
} |
| 4926 |
|
| 4927 |
public function getDestinationStatuses() |
| 4928 |
{ |
| 4929 |
return $this->destinationStatuses; |
| 4930 |
} |
| 4931 |
|
| 4932 |
public function setKind($kind) |
| 4933 |
{ |
| 4934 |
$this->kind = $kind; |
| 4935 |
} |
| 4936 |
|
| 4937 |
public function getKind() |
| 4938 |
{ |
| 4939 |
return $this->kind; |
| 4940 |
} |
| 4941 |
|
| 4942 |
public function setLink($link) |
| 4943 |
{ |
| 4944 |
$this->link = $link; |
| 4945 |
} |
| 4946 |
|
| 4947 |
public function getLink() |
| 4948 |
{ |
| 4949 |
return $this->link; |
| 4950 |
} |
| 4951 |
|
| 4952 |
public function setProductId($productId) |
| 4953 |
{ |
| 4954 |
$this->productId = $productId; |
| 4955 |
} |
| 4956 |
|
| 4957 |
public function getProductId() |
| 4958 |
{ |
| 4959 |
return $this->productId; |
| 4960 |
} |
| 4961 |
|
| 4962 |
public function setTitle($title) |
| 4963 |
{ |
| 4964 |
$this->title = $title; |
| 4965 |
} |
| 4966 |
|
| 4967 |
public function getTitle() |
| 4968 |
{ |
| 4969 |
return $this->title; |
| 4970 |
} |
| 4971 |
} |
| 4972 |
|
| 4973 |
class Analytify_Google_Service_ShoppingContent_ProductStatusDataQualityIssue extends Analytify_Google_Model |
| 4974 |
{ |
| 4975 |
public $detail; |
| 4976 |
public $fetchStatus; |
| 4977 |
public $id; |
| 4978 |
public $location; |
| 4979 |
public $timestamp; |
| 4980 |
public $valueOnLandingPage; |
| 4981 |
public $valueProvided; |
| 4982 |
|
| 4983 |
public function setDetail($detail) |
| 4984 |
{ |
| 4985 |
$this->detail = $detail; |
| 4986 |
} |
| 4987 |
|
| 4988 |
public function getDetail() |
| 4989 |
{ |
| 4990 |
return $this->detail; |
| 4991 |
} |
| 4992 |
|
| 4993 |
public function setFetchStatus($fetchStatus) |
| 4994 |
{ |
| 4995 |
$this->fetchStatus = $fetchStatus; |
| 4996 |
} |
| 4997 |
|
| 4998 |
public function getFetchStatus() |
| 4999 |
{ |
| 5000 |
return $this->fetchStatus; |
| 5001 |
} |
| 5002 |
|
| 5003 |
public function setId($id) |
| 5004 |
{ |
| 5005 |
$this->id = $id; |
| 5006 |
} |
| 5007 |
|
| 5008 |
public function getId() |
| 5009 |
{ |
| 5010 |
return $this->id; |
| 5011 |
} |
| 5012 |
|
| 5013 |
public function setLocation($location) |
| 5014 |
{ |
| 5015 |
$this->location = $location; |
| 5016 |
} |
| 5017 |
|
| 5018 |
public function getLocation() |
| 5019 |
{ |
| 5020 |
return $this->location; |
| 5021 |
} |
| 5022 |
|
| 5023 |
public function setTimestamp($timestamp) |
| 5024 |
{ |
| 5025 |
$this->timestamp = $timestamp; |
| 5026 |
} |
| 5027 |
|
| 5028 |
public function getTimestamp() |
| 5029 |
{ |
| 5030 |
return $this->timestamp; |
| 5031 |
} |
| 5032 |
|
| 5033 |
public function setValueOnLandingPage($valueOnLandingPage) |
| 5034 |
{ |
| 5035 |
$this->valueOnLandingPage = $valueOnLandingPage; |
| 5036 |
} |
| 5037 |
|
| 5038 |
public function getValueOnLandingPage() |
| 5039 |
{ |
| 5040 |
return $this->valueOnLandingPage; |
| 5041 |
} |
| 5042 |
|
| 5043 |
public function setValueProvided($valueProvided) |
| 5044 |
{ |
| 5045 |
$this->valueProvided = $valueProvided; |
| 5046 |
} |
| 5047 |
|
| 5048 |
public function getValueProvided() |
| 5049 |
{ |
| 5050 |
return $this->valueProvided; |
| 5051 |
} |
| 5052 |
} |
| 5053 |
|
| 5054 |
class Analytify_Google_Service_ShoppingContent_ProductStatusDestinationStatus extends Analytify_Google_Model |
| 5055 |
{ |
| 5056 |
public $approvalStatus; |
| 5057 |
public $destination; |
| 5058 |
public $intention; |
| 5059 |
|
| 5060 |
public function setApprovalStatus($approvalStatus) |
| 5061 |
{ |
| 5062 |
$this->approvalStatus = $approvalStatus; |
| 5063 |
} |
| 5064 |
|
| 5065 |
public function getApprovalStatus() |
| 5066 |
{ |
| 5067 |
return $this->approvalStatus; |
| 5068 |
} |
| 5069 |
|
| 5070 |
public function setDestination($destination) |
| 5071 |
{ |
| 5072 |
$this->destination = $destination; |
| 5073 |
} |
| 5074 |
|
| 5075 |
public function getDestination() |
| 5076 |
{ |
| 5077 |
return $this->destination; |
| 5078 |
} |
| 5079 |
|
| 5080 |
public function setIntention($intention) |
| 5081 |
{ |
| 5082 |
$this->intention = $intention; |
| 5083 |
} |
| 5084 |
|
| 5085 |
public function getIntention() |
| 5086 |
{ |
| 5087 |
return $this->intention; |
| 5088 |
} |
| 5089 |
} |
| 5090 |
|
| 5091 |
class Analytify_Google_Service_ShoppingContent_ProductTax extends Analytify_Google_Model |
| 5092 |
{ |
| 5093 |
public $country; |
| 5094 |
public $rate; |
| 5095 |
public $region; |
| 5096 |
public $taxShip; |
| 5097 |
|
| 5098 |
public function setCountry($country) |
| 5099 |
{ |
| 5100 |
$this->country = $country; |
| 5101 |
} |
| 5102 |
|
| 5103 |
public function getCountry() |
| 5104 |
{ |
| 5105 |
return $this->country; |
| 5106 |
} |
| 5107 |
|
| 5108 |
public function setRate($rate) |
| 5109 |
{ |
| 5110 |
$this->rate = $rate; |
| 5111 |
} |
| 5112 |
|
| 5113 |
public function getRate() |
| 5114 |
{ |
| 5115 |
return $this->rate; |
| 5116 |
} |
| 5117 |
|
| 5118 |
public function setRegion($region) |
| 5119 |
{ |
| 5120 |
$this->region = $region; |
| 5121 |
} |
| 5122 |
|
| 5123 |
public function getRegion() |
| 5124 |
{ |
| 5125 |
return $this->region; |
| 5126 |
} |
| 5127 |
|
| 5128 |
public function setTaxShip($taxShip) |
| 5129 |
{ |
| 5130 |
$this->taxShip = $taxShip; |
| 5131 |
} |
| 5132 |
|
| 5133 |
public function getTaxShip() |
| 5134 |
{ |
| 5135 |
return $this->taxShip; |
| 5136 |
} |
| 5137 |
} |
| 5138 |
|
| 5139 |
class Analytify_Google_Service_ShoppingContent_ProductsCustomBatchRequest extends Analytify_Google_Collection |
| 5140 |
{ |
| 5141 |
protected $entriesType = 'Analytify_Google_Service_ShoppingContent_ProductsCustomBatchRequestEntry'; |
| 5142 |
protected $entriesDataType = 'array'; |
| 5143 |
|
| 5144 |
public function setEntries($entries) |
| 5145 |
{ |
| 5146 |
$this->entries = $entries; |
| 5147 |
} |
| 5148 |
|
| 5149 |
public function getEntries() |
| 5150 |
{ |
| 5151 |
return $this->entries; |
| 5152 |
} |
| 5153 |
} |
| 5154 |
|
| 5155 |
class Analytify_Google_Service_ShoppingContent_ProductsCustomBatchRequestEntry extends Analytify_Google_Model |
| 5156 |
{ |
| 5157 |
public $batchId; |
| 5158 |
public $merchantId; |
| 5159 |
public $method; |
| 5160 |
protected $productType = 'Analytify_Google_Service_ShoppingContent_Product'; |
| 5161 |
protected $productDataType = ''; |
| 5162 |
public $productId; |
| 5163 |
|
| 5164 |
public function setBatchId($batchId) |
| 5165 |
{ |
| 5166 |
$this->batchId = $batchId; |
| 5167 |
} |
| 5168 |
|
| 5169 |
public function getBatchId() |
| 5170 |
{ |
| 5171 |
return $this->batchId; |
| 5172 |
} |
| 5173 |
|
| 5174 |
public function setMerchantId($merchantId) |
| 5175 |
{ |
| 5176 |
$this->merchantId = $merchantId; |
| 5177 |
} |
| 5178 |
|
| 5179 |
public function getMerchantId() |
| 5180 |
{ |
| 5181 |
return $this->merchantId; |
| 5182 |
} |
| 5183 |
|
| 5184 |
public function setMethod($method) |
| 5185 |
{ |
| 5186 |
$this->method = $method; |
| 5187 |
} |
| 5188 |
|
| 5189 |
public function getMethod() |
| 5190 |
{ |
| 5191 |
return $this->method; |
| 5192 |
} |
| 5193 |
|
| 5194 |
public function setProduct(Analytify_Google_Service_ShoppingContent_Product $product) |
| 5195 |
{ |
| 5196 |
$this->product = $product; |
| 5197 |
} |
| 5198 |
|
| 5199 |
public function getProduct() |
| 5200 |
{ |
| 5201 |
return $this->product; |
| 5202 |
} |
| 5203 |
|
| 5204 |
public function setProductId($productId) |
| 5205 |
{ |
| 5206 |
$this->productId = $productId; |
| 5207 |
} |
| 5208 |
|
| 5209 |
public function getProductId() |
| 5210 |
{ |
| 5211 |
return $this->productId; |
| 5212 |
} |
| 5213 |
} |
| 5214 |
|
| 5215 |
class Analytify_Google_Service_ShoppingContent_ProductsCustomBatchResponse extends Analytify_Google_Collection |
| 5216 |
{ |
| 5217 |
protected $entriesType = 'Analytify_Google_Service_ShoppingContent_ProductsCustomBatchResponseEntry'; |
| 5218 |
protected $entriesDataType = 'array'; |
| 5219 |
public $kind; |
| 5220 |
|
| 5221 |
public function setEntries($entries) |
| 5222 |
{ |
| 5223 |
$this->entries = $entries; |
| 5224 |
} |
| 5225 |
|
| 5226 |
public function getEntries() |
| 5227 |
{ |
| 5228 |
return $this->entries; |
| 5229 |
} |
| 5230 |
|
| 5231 |
public function setKind($kind) |
| 5232 |
{ |
| 5233 |
$this->kind = $kind; |
| 5234 |
} |
| 5235 |
|
| 5236 |
public function getKind() |
| 5237 |
{ |
| 5238 |
return $this->kind; |
| 5239 |
} |
| 5240 |
} |
| 5241 |
|
| 5242 |
class Analytify_Google_Service_ShoppingContent_ProductsCustomBatchResponseEntry extends Analytify_Google_Model |
| 5243 |
{ |
| 5244 |
public $batchId; |
| 5245 |
protected $errorsType = 'Analytify_Google_Service_ShoppingContent_Errors'; |
| 5246 |
protected $errorsDataType = ''; |
| 5247 |
public $kind; |
| 5248 |
protected $productType = 'Analytify_Google_Service_ShoppingContent_Product'; |
| 5249 |
protected $productDataType = ''; |
| 5250 |
|
| 5251 |
public function setBatchId($batchId) |
| 5252 |
{ |
| 5253 |
$this->batchId = $batchId; |
| 5254 |
} |
| 5255 |
|
| 5256 |
public function getBatchId() |
| 5257 |
{ |
| 5258 |
return $this->batchId; |
| 5259 |
} |
| 5260 |
|
| 5261 |
public function setErrors(Analytify_Google_Service_ShoppingContent_Errors $errors) |
| 5262 |
{ |
| 5263 |
$this->errors = $errors; |
| 5264 |
} |
| 5265 |
|
| 5266 |
public function getErrors() |
| 5267 |
{ |
| 5268 |
return $this->errors; |
| 5269 |
} |
| 5270 |
|
| 5271 |
public function setKind($kind) |
| 5272 |
{ |
| 5273 |
$this->kind = $kind; |
| 5274 |
} |
| 5275 |
|
| 5276 |
public function getKind() |
| 5277 |
{ |
| 5278 |
return $this->kind; |
| 5279 |
} |
| 5280 |
|
| 5281 |
public function setProduct(Analytify_Google_Service_ShoppingContent_Product $product) |
| 5282 |
{ |
| 5283 |
$this->product = $product; |
| 5284 |
} |
| 5285 |
|
| 5286 |
public function getProduct() |
| 5287 |
{ |
| 5288 |
return $this->product; |
| 5289 |
} |
| 5290 |
} |
| 5291 |
|
| 5292 |
class Analytify_Google_Service_ShoppingContent_ProductsListResponse extends Analytify_Google_Collection |
| 5293 |
{ |
| 5294 |
public $kind; |
| 5295 |
public $nextPageToken; |
| 5296 |
protected $resourcesType = 'Analytify_Google_Service_ShoppingContent_Product'; |
| 5297 |
protected $resourcesDataType = 'array'; |
| 5298 |
|
| 5299 |
public function setKind($kind) |
| 5300 |
{ |
| 5301 |
$this->kind = $kind; |
| 5302 |
} |
| 5303 |
|
| 5304 |
public function getKind() |
| 5305 |
{ |
| 5306 |
return $this->kind; |
| 5307 |
} |
| 5308 |
|
| 5309 |
public function setNextPageToken($nextPageToken) |
| 5310 |
{ |
| 5311 |
$this->nextPageToken = $nextPageToken; |
| 5312 |
} |
| 5313 |
|
| 5314 |
public function getNextPageToken() |
| 5315 |
{ |
| 5316 |
return $this->nextPageToken; |
| 5317 |
} |
| 5318 |
|
| 5319 |
public function setResources($resources) |
| 5320 |
{ |
| 5321 |
$this->resources = $resources; |
| 5322 |
} |
| 5323 |
|
| 5324 |
public function getResources() |
| 5325 |
{ |
| 5326 |
return $this->resources; |
| 5327 |
} |
| 5328 |
} |
| 5329 |
|
| 5330 |
class Analytify_Google_Service_ShoppingContent_ProductstatusesCustomBatchRequest extends Analytify_Google_Collection |
| 5331 |
{ |
| 5332 |
protected $entriesType = 'Analytify_Google_Service_ShoppingContent_ProductstatusesCustomBatchRequestEntry'; |
| 5333 |
protected $entriesDataType = 'array'; |
| 5334 |
|
| 5335 |
public function setEntries($entries) |
| 5336 |
{ |
| 5337 |
$this->entries = $entries; |
| 5338 |
} |
| 5339 |
|
| 5340 |
public function getEntries() |
| 5341 |
{ |
| 5342 |
return $this->entries; |
| 5343 |
} |
| 5344 |
} |
| 5345 |
|
| 5346 |
class Analytify_Google_Service_ShoppingContent_ProductstatusesCustomBatchRequestEntry extends Analytify_Google_Model |
| 5347 |
{ |
| 5348 |
public $batchId; |
| 5349 |
public $merchantId; |
| 5350 |
public $method; |
| 5351 |
public $productId; |
| 5352 |
|
| 5353 |
public function setBatchId($batchId) |
| 5354 |
{ |
| 5355 |
$this->batchId = $batchId; |
| 5356 |
} |
| 5357 |
|
| 5358 |
public function getBatchId() |
| 5359 |
{ |
| 5360 |
return $this->batchId; |
| 5361 |
} |
| 5362 |
|
| 5363 |
public function setMerchantId($merchantId) |
| 5364 |
{ |
| 5365 |
$this->merchantId = $merchantId; |
| 5366 |
} |
| 5367 |
|
| 5368 |
public function getMerchantId() |
| 5369 |
{ |
| 5370 |
return $this->merchantId; |
| 5371 |
} |
| 5372 |
|
| 5373 |
public function setMethod($method) |
| 5374 |
{ |
| 5375 |
$this->method = $method; |
| 5376 |
} |
| 5377 |
|
| 5378 |
public function getMethod() |
| 5379 |
{ |
| 5380 |
return $this->method; |
| 5381 |
} |
| 5382 |
|
| 5383 |
public function setProductId($productId) |
| 5384 |
{ |
| 5385 |
$this->productId = $productId; |
| 5386 |
} |
| 5387 |
|
| 5388 |
public function getProductId() |
| 5389 |
{ |
| 5390 |
return $this->productId; |
| 5391 |
} |
| 5392 |
} |
| 5393 |
|
| 5394 |
class Analytify_Google_Service_ShoppingContent_ProductstatusesCustomBatchResponse extends Analytify_Google_Collection |
| 5395 |
{ |
| 5396 |
protected $entriesType = 'Analytify_Google_Service_ShoppingContent_ProductstatusesCustomBatchResponseEntry'; |
| 5397 |
protected $entriesDataType = 'array'; |
| 5398 |
public $kind; |
| 5399 |
|
| 5400 |
public function setEntries($entries) |
| 5401 |
{ |
| 5402 |
$this->entries = $entries; |
| 5403 |
} |
| 5404 |
|
| 5405 |
public function getEntries() |
| 5406 |
{ |
| 5407 |
return $this->entries; |
| 5408 |
} |
| 5409 |
|
| 5410 |
public function setKind($kind) |
| 5411 |
{ |
| 5412 |
$this->kind = $kind; |
| 5413 |
} |
| 5414 |
|
| 5415 |
public function getKind() |
| 5416 |
{ |
| 5417 |
return $this->kind; |
| 5418 |
} |
| 5419 |
} |
| 5420 |
|
| 5421 |
class Analytify_Google_Service_ShoppingContent_ProductstatusesCustomBatchResponseEntry extends Analytify_Google_Model |
| 5422 |
{ |
| 5423 |
public $batchId; |
| 5424 |
protected $errorsType = 'Analytify_Google_Service_ShoppingContent_Errors'; |
| 5425 |
protected $errorsDataType = ''; |
| 5426 |
public $kind; |
| 5427 |
protected $productStatusType = 'Analytify_Google_Service_ShoppingContent_ProductStatus'; |
| 5428 |
protected $productStatusDataType = ''; |
| 5429 |
|
| 5430 |
public function setBatchId($batchId) |
| 5431 |
{ |
| 5432 |
$this->batchId = $batchId; |
| 5433 |
} |
| 5434 |
|
| 5435 |
public function getBatchId() |
| 5436 |
{ |
| 5437 |
return $this->batchId; |
| 5438 |
} |
| 5439 |
|
| 5440 |
public function setErrors(Analytify_Google_Service_ShoppingContent_Errors $errors) |
| 5441 |
{ |
| 5442 |
$this->errors = $errors; |
| 5443 |
} |
| 5444 |
|
| 5445 |
public function getErrors() |
| 5446 |
{ |
| 5447 |
return $this->errors; |
| 5448 |
} |
| 5449 |
|
| 5450 |
public function setKind($kind) |
| 5451 |
{ |
| 5452 |
$this->kind = $kind; |
| 5453 |
} |
| 5454 |
|
| 5455 |
public function getKind() |
| 5456 |
{ |
| 5457 |
return $this->kind; |
| 5458 |
} |
| 5459 |
|
| 5460 |
public function setProductStatus(Analytify_Google_Service_ShoppingContent_ProductStatus $productStatus) |
| 5461 |
{ |
| 5462 |
$this->productStatus = $productStatus; |
| 5463 |
} |
| 5464 |
|
| 5465 |
public function getProductStatus() |
| 5466 |
{ |
| 5467 |
return $this->productStatus; |
| 5468 |
} |
| 5469 |
} |
| 5470 |
|
| 5471 |
class Analytify_Google_Service_ShoppingContent_ProductstatusesListResponse extends Analytify_Google_Collection |
| 5472 |
{ |
| 5473 |
public $kind; |
| 5474 |
public $nextPageToken; |
| 5475 |
protected $resourcesType = 'Analytify_Google_Service_ShoppingContent_ProductStatus'; |
| 5476 |
protected $resourcesDataType = 'array'; |
| 5477 |
|
| 5478 |
public function setKind($kind) |
| 5479 |
{ |
| 5480 |
$this->kind = $kind; |
| 5481 |
} |
| 5482 |
|
| 5483 |
public function getKind() |
| 5484 |
{ |
| 5485 |
return $this->kind; |
| 5486 |
} |
| 5487 |
|
| 5488 |
public function setNextPageToken($nextPageToken) |
| 5489 |
{ |
| 5490 |
$this->nextPageToken = $nextPageToken; |
| 5491 |
} |
| 5492 |
|
| 5493 |
public function getNextPageToken() |
| 5494 |
{ |
| 5495 |
return $this->nextPageToken; |
| 5496 |
} |
| 5497 |
|
| 5498 |
public function setResources($resources) |
| 5499 |
{ |
| 5500 |
$this->resources = $resources; |
| 5501 |
} |
| 5502 |
|
| 5503 |
public function getResources() |
| 5504 |
{ |
| 5505 |
return $this->resources; |
| 5506 |
} |
| 5507 |
} |
| 5508 |
|
| 5509 |
class Analytify_Google_Service_ShoppingContent_Weight extends Analytify_Google_Model |
| 5510 |
{ |
| 5511 |
public $unit; |
| 5512 |
public $value; |
| 5513 |
|
| 5514 |
public function setUnit($unit) |
| 5515 |
{ |
| 5516 |
$this->unit = $unit; |
| 5517 |
} |
| 5518 |
|
| 5519 |
public function getUnit() |
| 5520 |
{ |
| 5521 |
return $this->unit; |
| 5522 |
} |
| 5523 |
|
| 5524 |
public function setValue($value) |
| 5525 |
{ |
| 5526 |
$this->value = $value; |
| 5527 |
} |
| 5528 |
|
| 5529 |
public function getValue() |
| 5530 |
{ |
| 5531 |
return $this->value; |
| 5532 |
} |
| 5533 |
} |
| 5534 |
|