from kalshi_python.models.lookup_bundle_response import LookupBundleResponse
# Create an instance with example data
lookup_bundle_response_instance = LookupBundleResponse(
# Add required fields here
)
# Convert to JSON string
json_str = lookup_bundle_response_instance.to_json()
print(json_str)
# Create from JSON string
lookup_bundle_response_from_json = LookupBundleResponse.from_json(json_str)
# Convert to dict
lookup_bundle_response_dict = lookup_bundle_response_instance.to_dict()
# Create from dict
lookup_bundle_response_from_dict = LookupBundleResponse.from_dict(lookup_bundle_response_dict)