Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.39 KB

File metadata and controls

33 lines (24 loc) · 1.39 KB

CheckoutSessionCustomerDetailsResponse

customer_details のレスポンスモデル

Properties

Name Type Description Notes
name str
email str
phone str
address CheckoutSessionCustomerDetailsAddressResponse

Example

from payjpv2.models.checkout_session_customer_details_response import CheckoutSessionCustomerDetailsResponse

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

# convert the object into a dict
checkout_session_customer_details_response_dict = checkout_session_customer_details_response_instance.to_dict()
# create an instance of CheckoutSessionCustomerDetailsResponse from a dict
checkout_session_customer_details_response_from_dict = CheckoutSessionCustomerDetailsResponse.from_dict(checkout_session_customer_details_response_dict)

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