from moonsdk.models.payment_type import PaymentType# TODO update the JSON string belowjson ="{}"# create an instance of PaymentType from a JSON stringpayment_type_instance = PaymentType.from_json(json)# print the JSON string representation of the objectprint(PaymentType.to_json())# convert the object into a dictpayment_type_dict = payment_type_instance.to_dict()# create an instance of PaymentType from a dictpayment_type_form_dict = payment_type.from_dict(payment_type_dict)