Nav apraksta

OrderinvoicesCreateRefundInvoiceRequest.php 2.9KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <?php
  2. /*
  3. * Copyright 2014 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. class Google_Service_ShoppingContent_OrderinvoicesCreateRefundInvoiceRequest extends Google_Collection
  18. {
  19. protected $collection_key = 'shipmentInvoices';
  20. public $invoiceId;
  21. public $operationId;
  22. protected $refundOnlyOptionType = 'Google_Service_ShoppingContent_OrderinvoicesCustomBatchRequestEntryCreateRefundInvoiceRefundOption';
  23. protected $refundOnlyOptionDataType = '';
  24. protected $returnOptionType = 'Google_Service_ShoppingContent_OrderinvoicesCustomBatchRequestEntryCreateRefundInvoiceReturnOption';
  25. protected $returnOptionDataType = '';
  26. protected $shipmentInvoicesType = 'Google_Service_ShoppingContent_ShipmentInvoice';
  27. protected $shipmentInvoicesDataType = 'array';
  28. public function setInvoiceId($invoiceId)
  29. {
  30. $this->invoiceId = $invoiceId;
  31. }
  32. public function getInvoiceId()
  33. {
  34. return $this->invoiceId;
  35. }
  36. public function setOperationId($operationId)
  37. {
  38. $this->operationId = $operationId;
  39. }
  40. public function getOperationId()
  41. {
  42. return $this->operationId;
  43. }
  44. /**
  45. * @param Google_Service_ShoppingContent_OrderinvoicesCustomBatchRequestEntryCreateRefundInvoiceRefundOption
  46. */
  47. public function setRefundOnlyOption(Google_Service_ShoppingContent_OrderinvoicesCustomBatchRequestEntryCreateRefundInvoiceRefundOption $refundOnlyOption)
  48. {
  49. $this->refundOnlyOption = $refundOnlyOption;
  50. }
  51. /**
  52. * @return Google_Service_ShoppingContent_OrderinvoicesCustomBatchRequestEntryCreateRefundInvoiceRefundOption
  53. */
  54. public function getRefundOnlyOption()
  55. {
  56. return $this->refundOnlyOption;
  57. }
  58. /**
  59. * @param Google_Service_ShoppingContent_OrderinvoicesCustomBatchRequestEntryCreateRefundInvoiceReturnOption
  60. */
  61. public function setReturnOption(Google_Service_ShoppingContent_OrderinvoicesCustomBatchRequestEntryCreateRefundInvoiceReturnOption $returnOption)
  62. {
  63. $this->returnOption = $returnOption;
  64. }
  65. /**
  66. * @return Google_Service_ShoppingContent_OrderinvoicesCustomBatchRequestEntryCreateRefundInvoiceReturnOption
  67. */
  68. public function getReturnOption()
  69. {
  70. return $this->returnOption;
  71. }
  72. /**
  73. * @param Google_Service_ShoppingContent_ShipmentInvoice
  74. */
  75. public function setShipmentInvoices($shipmentInvoices)
  76. {
  77. $this->shipmentInvoices = $shipmentInvoices;
  78. }
  79. /**
  80. * @return Google_Service_ShoppingContent_ShipmentInvoice
  81. */
  82. public function getShipmentInvoices()
  83. {
  84. return $this->shipmentInvoices;
  85. }
  86. }