Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.09 KB

ModifyPaymentAccountRequest.md

File metadata and controls

29 lines (20 loc) · 1.09 KB

ModifyPaymentAccountRequest

Properties

Name Type Description Notes
data PaymentAccount [optional]

Example

from fattureincloud_python_sdk.models.modify_payment_account_request import ModifyPaymentAccountRequest

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

# convert the object into a dict
modify_payment_account_request_dict = modify_payment_account_request_instance.to_dict()
# create an instance of ModifyPaymentAccountRequest from a dict
modify_payment_account_request_from_dict = ModifyPaymentAccountRequest.from_dict(modify_payment_account_request_dict)

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