lib/google_api/content/v2/model/merchant_order_return.ex

# Copyright 2019 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# NOTE: This file is auto generated by the elixir code generator program.
# Do not edit this file manually.

defmodule GoogleApi.Content.V2.Model.MerchantOrderReturn do
  @moduledoc """
  Order return. Production access (all methods) requires the order manager role. Sandbox access does not.

  ## Attributes

  *   `creationDate` (*type:* `String.t`, *default:* `nil`) - The date of creation of the return, in ISO 8601 format.
  *   `merchantOrderId` (*type:* `String.t`, *default:* `nil`) - Merchant defined order ID.
  *   `orderId` (*type:* `String.t`, *default:* `nil`) - Google order ID.
  *   `orderReturnId` (*type:* `String.t`, *default:* `nil`) - Order return ID generated by Google.
  *   `returnItems` (*type:* `list(GoogleApi.Content.V2.Model.MerchantOrderReturnItem.t)`, *default:* `nil`) - Items of the return.
  *   `returnShipments` (*type:* `list(GoogleApi.Content.V2.Model.ReturnShipment.t)`, *default:* `nil`) - Shipments of the return.
  """

  use GoogleApi.Gax.ModelBase

  @type t :: %__MODULE__{
          :creationDate => String.t() | nil,
          :merchantOrderId => String.t() | nil,
          :orderId => String.t() | nil,
          :orderReturnId => String.t() | nil,
          :returnItems => list(GoogleApi.Content.V2.Model.MerchantOrderReturnItem.t()) | nil,
          :returnShipments => list(GoogleApi.Content.V2.Model.ReturnShipment.t()) | nil
        }

  field(:creationDate)
  field(:merchantOrderId)
  field(:orderId)
  field(:orderReturnId)
  field(:returnItems, as: GoogleApi.Content.V2.Model.MerchantOrderReturnItem, type: :list)
  field(:returnShipments, as: GoogleApi.Content.V2.Model.ReturnShipment, type: :list)
end

defimpl Poison.Decoder, for: GoogleApi.Content.V2.Model.MerchantOrderReturn do
  def decode(value, options) do
    GoogleApi.Content.V2.Model.MerchantOrderReturn.decode(value, options)
  end
end

defimpl Poison.Encoder, for: GoogleApi.Content.V2.Model.MerchantOrderReturn do
  def encode(value, options) do
    GoogleApi.Gax.ModelBase.encode(value, options)
  end
end