lib/google_api/content/v2/model/order_report_disbursement.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.OrderReportDisbursement do
  @moduledoc """
  Order disbursement. All methods require the payment analyst role.

  ## Attributes

  *   `disbursementAmount` (*type:* `GoogleApi.Content.V2.Model.Price.t`, *default:* `nil`) - The disbursement amount.
  *   `disbursementCreationDate` (*type:* `String.t`, *default:* `nil`) - The disbursement date, in ISO 8601 format.
  *   `disbursementDate` (*type:* `String.t`, *default:* `nil`) - The date the disbursement was initiated, in ISO 8601 format.
  *   `disbursementId` (*type:* `String.t`, *default:* `nil`) - The ID of the disbursement.
  *   `merchantId` (*type:* `String.t`, *default:* `nil`) - The ID of the managing account.
  """

  use GoogleApi.Gax.ModelBase

  @type t :: %__MODULE__{
          :disbursementAmount => GoogleApi.Content.V2.Model.Price.t() | nil,
          :disbursementCreationDate => String.t() | nil,
          :disbursementDate => String.t() | nil,
          :disbursementId => String.t() | nil,
          :merchantId => String.t() | nil
        }

  field(:disbursementAmount, as: GoogleApi.Content.V2.Model.Price)
  field(:disbursementCreationDate)
  field(:disbursementDate)
  field(:disbursementId)
  field(:merchantId)
end

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

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