Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.83 KB

File metadata and controls

36 lines (27 loc) · 1.83 KB

PaymentMethodConfigurationDetailsResponse

Properties

Name Type Description Notes
object str [optional] [default to 'payment_method_configuration']
id str 支払い方法設定 ID
livemode bool 本番環境かどうか
active bool 設定が有効かどうか
name str
paypay PaymentMethodConfigurationSettingResponse PayPay の設定
card PaymentMethodConfigurationSettingResponse カードの設定
apple_pay PaymentMethodConfigurationSettingResponse Apple Pay の設定

Example

from payjpv2.models.payment_method_configuration_details_response import PaymentMethodConfigurationDetailsResponse

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

# convert the object into a dict
payment_method_configuration_details_response_dict = payment_method_configuration_details_response_instance.to_dict()
# create an instance of PaymentMethodConfigurationDetailsResponse from a dict
payment_method_configuration_details_response_from_dict = PaymentMethodConfigurationDetailsResponse.from_dict(payment_method_configuration_details_response_dict)

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