Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.62 KB

File metadata and controls

30 lines (21 loc) · 1.62 KB

PaymentMethodConfigurationSettingResponse

Properties

Name Type Description Notes
available bool この支払い方法が決済画面に表示されるかどうか。`display_preference.preference` と `display_preference.value` の両方が `on` の場合に決済画面に表示されます。 [optional]
display_preference PaymentMethodConfigurationDisplayPreference 支払い方法の表示設定 [optional]

Example

from payjpv2.models.payment_method_configuration_setting_response import PaymentMethodConfigurationSettingResponse

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

# convert the object into a dict
payment_method_configuration_setting_response_dict = payment_method_configuration_setting_response_instance.to_dict()
# create an instance of PaymentMethodConfigurationSettingResponse from a dict
payment_method_configuration_setting_response_from_dict = PaymentMethodConfigurationSettingResponse.from_dict(payment_method_configuration_setting_response_dict)

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