Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 2.12 KB

File metadata and controls

41 lines (32 loc) · 2.12 KB

PaymentDisputeResponse

Properties

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

Example

from payjpv2.models.payment_dispute_response import PaymentDisputeResponse

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

# convert the object into a dict
payment_dispute_response_dict = payment_dispute_response_instance.to_dict()
# create an instance of PaymentDisputeResponse from a dict
payment_dispute_response_from_dict = PaymentDisputeResponse.from_dict(payment_dispute_response_dict)

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