Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.08 KB

ModifyPaymentMethodResponse.md

File metadata and controls

29 lines (20 loc) · 1.08 KB

ModifyPaymentMethodResponse

Properties

Name Type Description Notes
data PaymentMethod [optional]

Example

from fattureincloud_python_sdk.models.modify_payment_method_response import ModifyPaymentMethodResponse

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

# convert the object into a dict
modify_payment_method_response_dict = modify_payment_method_response_instance.to_dict()
# create an instance of ModifyPaymentMethodResponse from a dict
modify_payment_method_response_from_dict = ModifyPaymentMethodResponse.from_dict(modify_payment_method_response_dict)

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