from kalshi_python.models.get_settlements_response import GetSettlementsResponse# Create an instance with example dataget_settlements_response_instance = GetSettlementsResponse( # Add required fields here)# Convert to JSON stringjson_str = get_settlements_response_instance.to_json()print(json_str)# Create from JSON stringget_settlements_response_from_json = GetSettlementsResponse.from_json(json_str)# Convert to dictget_settlements_response_dict = get_settlements_response_instance.to_dict()# Create from dictget_settlements_response_from_dict = GetSettlementsResponse.from_dict(get_settlements_response_dict)