from wallet.models.wt_payment_design import WTPaymentDesign
# TODO update the JSON string below
json = "{}"
# create an instance of WTPaymentDesign from a JSON string
wt_payment_design_instance = WTPaymentDesign.from_json(json)
# print the JSON string representation of the object
print WTPaymentDesign.to_json()
# convert the object into a dict
wt_payment_design_dict = wt_payment_design_instance.to_dict()
# create an instance of WTPaymentDesign from a dict
wt_payment_design_form_dict = wt_payment_design.from_dict(wt_payment_design_dict)