from kalshi_python.models.get_market_response import GetMarketResponse# Create an instance with example dataget_market_response_instance = GetMarketResponse( # Add required fields here)# Convert to JSON stringjson_str = get_market_response_instance.to_json()print(json_str)# Create from JSON stringget_market_response_from_json = GetMarketResponse.from_json(json_str)# Convert to dictget_market_response_dict = get_market_response_instance.to_dict()# Create from dictget_market_response_from_dict = GetMarketResponse.from_dict(get_market_response_dict)