from moonsdk.models.broad_cast_raw_transaction_api_response import BroadCastRawTransactionAPIResponse# TODO update the JSON string belowjson ="{}"# create an instance of BroadCastRawTransactionAPIResponse from a JSON stringbroad_cast_raw_transaction_api_response_instance = BroadCastRawTransactionAPIResponse.from_json(json)# print the JSON string representation of the objectprint(BroadCastRawTransactionAPIResponse.to_json())# convert the object into a dictbroad_cast_raw_transaction_api_response_dict = broad_cast_raw_transaction_api_response_instance.to_dict()# create an instance of BroadCastRawTransactionAPIResponse from a dictbroad_cast_raw_transaction_api_response_form_dict = broad_cast_raw_transaction_api_response.from_dict(broad_cast_raw_transaction_api_response_dict)