from moonsdk.models.available_payment_method import AvailablePaymentMethod# TODO update the JSON string belowjson ="{}"# create an instance of AvailablePaymentMethod from a JSON stringavailable_payment_method_instance = AvailablePaymentMethod.from_json(json)# print the JSON string representation of the objectprint(AvailablePaymentMethod.to_json())# convert the object into a dictavailable_payment_method_dict = available_payment_method_instance.to_dict()# create an instance of AvailablePaymentMethod from a dictavailable_payment_method_form_dict = available_payment_method.from_dict(available_payment_method_dict)