Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.63 KB

File metadata and controls

32 lines (23 loc) · 1.63 KB

PaymentMethodBillingDetailsRequest

Properties

Name Type Description Notes
name str 請求先の名義 [optional]
phone str 請求先の電話番号( `type=card` の場合、 `phone` または `email` のどちらかは必須) [optional]
email str 請求先のメールアドレス( `type=card` の場合、 `phone` または `email` のどちらかは必須) [optional]
address PaymentMethodBillingAddressRequest 請求先の住所 [optional]

Example

from payjpv2.models.payment_method_billing_details_request import PaymentMethodBillingDetailsRequest

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

# convert the object into a dict
payment_method_billing_details_request_dict = payment_method_billing_details_request_instance.to_dict()
# create an instance of PaymentMethodBillingDetailsRequest from a dict
payment_method_billing_details_request_from_dict = PaymentMethodBillingDetailsRequest.from_dict(payment_method_billing_details_request_dict)

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