Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.47 KB

File metadata and controls

33 lines (24 loc) · 1.47 KB

PaymentMethodConfigurationUpdateRequest

Properties

Name Type Description Notes
active bool [optional]
name str [optional]
card CardConfigRequest [optional]
paypay PayPayConfigRequest [optional]
apple_pay ApplePayConfigRequest [optional]

Example

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)

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