from kalshi_python.models.get_settlements_response import GetSettlementsResponse
# Create an instance with example data
get_settlements_response_instance = GetSettlementsResponse(
# Add required fields here
)
# Convert to JSON string
json_str = get_settlements_response_instance.to_json()
print(json_str)
# Create from JSON string
get_settlements_response_from_json = GetSettlementsResponse.from_json(json_str)
# Convert to dict
get_settlements_response_dict = get_settlements_response_instance.to_dict()
# Create from dict
get_settlements_response_from_dict = GetSettlementsResponse.from_dict(get_settlements_response_dict)