Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 1.88 KB

File metadata and controls

40 lines (31 loc) · 1.88 KB

BalanceResponse

Properties

Name Type Description Notes
object str [optional] [default to 'balance']
id str 残高 ID
livemode bool 本番環境かどうか
state BalanceState Balance の状態
statements List[StatementResponse] 関連付けられている Statement オブジェクトのリスト
closed bool この Balance の清算が終了していれば true state=transfer であれば加盟店口座への入金作業完了、state=claim であれば PAY.JP で請求額の振込が確認できたことを表します。
closed_date datetime
due_date datetime
net int 関連付けられている Statement の総額
bank_info BankInfoResponse
created_at datetime 作成日時 (UTC, ISO 8601 形式)
updated_at datetime 更新時の日時 (UTC, ISO 8601 形式)

Example

from payjpv2.models.balance_response import BalanceResponse

# TODO update the JSON string below
json = "{}"
# create an instance of BalanceResponse from a JSON string
balance_response_instance = BalanceResponse.from_json(json)
# print the JSON string representation of the object
print(BalanceResponse.to_json())

# convert the object into a dict
balance_response_dict = balance_response_instance.to_dict()
# create an instance of BalanceResponse from a dict
balance_response_from_dict = BalanceResponse.from_dict(balance_response_dict)

[Back to Model list] [Back to API list] [Back to README]