| 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 形式) |
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)