Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.1 KB

ModifyPaymentAccountResponse.md

File metadata and controls

28 lines (20 loc) · 1.1 KB

ModifyPaymentAccountResponse

Properties

Name Type Description Notes
data PaymentAccount [optional]

Example

from fattureincloud_python_sdk.models.modify_payment_account_response import ModifyPaymentAccountResponse

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

# convert the object into a dict
modify_payment_account_response_dict = modify_payment_account_response_instance.to_dict()
# create an instance of ModifyPaymentAccountResponse from a dict
modify_payment_account_response_form_dict = modify_payment_account_response.from_dict(modify_payment_account_response_dict)

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