Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.06 KB

PaymentMethodDetails.md

File metadata and controls

30 lines (21 loc) · 1.06 KB

PaymentMethodDetails

Properties

Name Type Description Notes
title str Payment method details title [optional]
description str Payment method details description [optional]

Example

from fattureincloud_python_sdk.models.payment_method_details import PaymentMethodDetails

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

# convert the object into a dict
payment_method_details_dict = payment_method_details_instance.to_dict()
# create an instance of PaymentMethodDetails from a dict
payment_method_details_from_dict = PaymentMethodDetails.from_dict(payment_method_details_dict)

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