Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.25 KB

File metadata and controls

29 lines (20 loc) · 1.25 KB

DisplayPreferenceRequest

Properties

Name Type Description Notes
preference str この支払い方法がアカウントで有効になっているかどうか

Example

from payjpv2.models.display_preference_request import DisplayPreferenceRequest

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

# convert the object into a dict
display_preference_request_dict = display_preference_request_instance.to_dict()
# create an instance of DisplayPreferenceRequest from a dict
display_preference_request_from_dict = DisplayPreferenceRequest.from_dict(display_preference_request_dict)

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