| Name | Type | Description | Notes |
|---|---|---|---|
| active | bool | [optional] | |
| name | str | [optional] | |
| card | CardConfigRequest | [optional] | |
| paypay | PayPayConfigRequest | [optional] | |
| apple_pay | ApplePayConfigRequest | [optional] |
from payjpv2.models.payment_method_configuration_update_request import PaymentMethodConfigurationUpdateRequest
# TODO update the JSON string below
json = "{}"
# create an instance of PaymentMethodConfigurationUpdateRequest from a JSON string
payment_method_configuration_update_request_instance = PaymentMethodConfigurationUpdateRequest.from_json(json)
# print the JSON string representation of the object
print(PaymentMethodConfigurationUpdateRequest.to_json())
# convert the object into a dict
payment_method_configuration_update_request_dict = payment_method_configuration_update_request_instance.to_dict()
# create an instance of PaymentMethodConfigurationUpdateRequest from a dict
payment_method_configuration_update_request_from_dict = PaymentMethodConfigurationUpdateRequest.from_dict(payment_method_configuration_update_request_dict)