from kalshi_python.models.get_fills_response import GetFillsResponse
# Create an instance with example data
get_fills_response_instance = GetFillsResponse(
# Add required fields here
)
# Convert to JSON string
json_str = get_fills_response_instance.to_json()
print(json_str)
# Create from JSON string
get_fills_response_from_json = GetFillsResponse.from_json(json_str)
# Convert to dict
get_fills_response_dict = get_fills_response_instance.to_dict()
# Create from dict
get_fills_response_from_dict = GetFillsResponse.from_dict(get_fills_response_dict)