Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.6 KB

File metadata and controls

39 lines (30 loc) · 1.6 KB

PaymentMethodResponse

Properties

Name Type Description Notes
object str [optional] [default to 'payment_method']
id str ID
livemode bool 本番環境かどうか
type str
customer_id str
detached_at datetime
metadata Dict[str, MetadataValue] メタデータ
created_at datetime 作成日時 (UTC, ISO 8601 形式)
updated_at datetime 更新日時 (UTC, ISO 8601 形式)
billing_details PaymentMethodBillingDetailsResponse 請求先情報
card PaymentMethodCardDetailsResponse カード情報

Example

from payjpv2.models.payment_method_response import PaymentMethodResponse

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

# convert the object into a dict
payment_method_response_dict = payment_method_response_instance.to_dict()
# create an instance of PaymentMethodResponse from a dict
payment_method_response_from_dict = PaymentMethodResponse.from_dict(payment_method_response_dict)

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