Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.07 KB

CreatePaymentMethodRequest.md

File metadata and controls

29 lines (20 loc) · 1.07 KB

CreatePaymentMethodRequest

Properties

Name Type Description Notes
data PaymentMethod [optional]

Example

from fattureincloud_python_sdk.models.create_payment_method_request import CreatePaymentMethodRequest

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

# convert the object into a dict
create_payment_method_request_dict = create_payment_method_request_instance.to_dict()
# create an instance of CreatePaymentMethodRequest from a dict
create_payment_method_request_from_dict = CreatePaymentMethodRequest.from_dict(create_payment_method_request_dict)

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