| 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 | カード情報 |
from payjpv2.models.payment_method_card_response import PaymentMethodCardResponse
# TODO update the JSON string below
json = "{}"
# create an instance of PaymentMethodCardResponse from a JSON string
payment_method_card_response_instance = PaymentMethodCardResponse.from_json(json)
# print the JSON string representation of the object
print(PaymentMethodCardResponse.to_json())
# convert the object into a dict
payment_method_card_response_dict = payment_method_card_response_instance.to_dict()
# create an instance of PaymentMethodCardResponse from a dict
payment_method_card_response_from_dict = PaymentMethodCardResponse.from_dict(payment_method_card_response_dict)