Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.07 KB

ModifyPaymentMethodRequest.md

File metadata and controls

29 lines (20 loc) · 1.07 KB

ModifyPaymentMethodRequest

Properties

Name Type Description Notes
data PaymentMethod [optional]

Example

from fattureincloud_python_sdk.models.modify_payment_method_request import ModifyPaymentMethodRequest

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

# convert the object into a dict
modify_payment_method_request_dict = modify_payment_method_request_instance.to_dict()
# create an instance of ModifyPaymentMethodRequest from a dict
modify_payment_method_request_from_dict = ModifyPaymentMethodRequest.from_dict(modify_payment_method_request_dict)

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