from kalshi_python.models.get_total_resting_order_value_response import GetTotalRestingOrderValueResponse# Create an instance with example dataget_total_resting_order_value_response_instance = GetTotalRestingOrderValueResponse( # Add required fields here)# Convert to JSON stringjson_str = get_total_resting_order_value_response_instance.to_json()print(json_str)# Create from JSON stringget_total_resting_order_value_response_from_json = GetTotalRestingOrderValueResponse.from_json(json_str)# Convert to dictget_total_resting_order_value_response_dict = get_total_resting_order_value_response_instance.to_dict()# Create from dictget_total_resting_order_value_response_from_dict = GetTotalRestingOrderValueResponse.from_dict(get_total_resting_order_value_response_dict)