Skip to content

Latest commit

 

History

History
34 lines (28 loc) · 1.07 KB

File metadata and controls

34 lines (28 loc) · 1.07 KB

PAYJPv2::CheckoutSessionLineItemDataResponse

Properties

Name Type Description Notes
object String [optional][default to 'line_item']
id String ID
amount_subtotal Integer 割引や税金が適用される前のすべての商品の合計金額
amount_tax Integer 税額
amount_total Integer 割引と税金が適用された後のすべての商品の合計金額
currency Currency 価格の通貨。現在は `jpy` のみサポートしています。
description String
price PriceDetailsResponse 料金情報
quantity Integer 数量

Example

require 'payjpv2'

instance = PAYJPv2::CheckoutSessionLineItemDataResponse.new(
  object: null,
  id: null,
  amount_subtotal: null,
  amount_tax: null,
  amount_total: null,
  currency: null,
  description: null,
  price: null,
  quantity: null
)