Skip to content

Latest commit

 

History

History
42 lines (36 loc) · 1.71 KB

File metadata and controls

42 lines (36 loc) · 1.71 KB

PAYJPv2::PaymentDisputeResponse

Properties

Name Type Description Notes
object String [optional][default to 'payment_dispute']
id String PaymentDispute ID
livemode Boolean 本番環境かどうか
payment_flow_id String 関連する PaymentFlow の ID
amount Integer 金額
currency Currency 通貨コード (ISO 4217)
status PaymentDisputeStatus disputeのステータス
reason PaymentDisputeReason
due_by Time
payment_method_type PaymentMethodTypes 支払い方法の種類
metadata Hash<String, MetadataValue> メタデータ
created_at Time 作成日時 (UTC, ISO 8601 形式)
updated_at Time 更新日時 (UTC, ISO 8601 形式)

Example

require 'payjpv2'

instance = PAYJPv2::PaymentDisputeResponse.new(
  object: null,
  id: null,
  livemode: null,
  payment_flow_id: null,
  amount: null,
  currency: null,
  status: null,
  reason: null,
  due_by: null,
  payment_method_type: null,
  metadata: null,
  created_at: null,
  updated_at: null
)