Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.33 KB

File metadata and controls

29 lines (20 loc) · 1.33 KB

EcommerceV1PaymentEnableManualPaymentRequest

Properties

Name Type Description Notes
title str Optional display name shown to customers at checkout. [optional]

Example

from hostinger_api.models.ecommerce_v1_payment_enable_manual_payment_request import EcommerceV1PaymentEnableManualPaymentRequest

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

# convert the object into a dict
ecommerce_v1_payment_enable_manual_payment_request_dict = ecommerce_v1_payment_enable_manual_payment_request_instance.to_dict()
# create an instance of EcommerceV1PaymentEnableManualPaymentRequest from a dict
ecommerce_v1_payment_enable_manual_payment_request_from_dict = EcommerceV1PaymentEnableManualPaymentRequest.from_dict(ecommerce_v1_payment_enable_manual_payment_request_dict)

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