from moonsdk.models.conveyor_finance_controller_response import ConveyorFinanceControllerResponse# TODO update the JSON string belowjson ="{}"# create an instance of ConveyorFinanceControllerResponse from a JSON stringconveyor_finance_controller_response_instance = ConveyorFinanceControllerResponse.from_json(json)# print the JSON string representation of the objectprint(ConveyorFinanceControllerResponse.to_json())# convert the object into a dictconveyor_finance_controller_response_dict = conveyor_finance_controller_response_instance.to_dict()# create an instance of ConveyorFinanceControllerResponse from a dictconveyor_finance_controller_response_form_dict = conveyor_finance_controller_response.from_dict(conveyor_finance_controller_response_dict)