Skip to content

Latest commit

 

History

History
38 lines (32 loc) · 1.43 KB

File metadata and controls

38 lines (32 loc) · 1.43 KB

PAYJPv2::StatementResponse

Properties

Name Type Description Notes
object String [optional][default to 'statement']
id String 明細 ID
livemode Boolean 本番環境かどうか
title String
type StatementType 取引明細の区分
term TermResponse
balance_id String
items Array<StatementItemResponse> 明細項目のリスト
net Integer 含まれる statement_item の金額合計
created_at Time 作成日時 (UTC, ISO 8601 形式)
updated_at Time 更新日時 (UTC, ISO 8601 形式)

Example

require 'payjpv2'

instance = PAYJPv2::StatementResponse.new(
  object: null,
  id: null,
  livemode: null,
  title: null,
  type: null,
  term: null,
  balance_id: null,
  items: null,
  net: null,
  created_at: null,
  updated_at: null
)