from kalshi_python.models.lookup_bundle_response import LookupBundleResponse# Create an instance with example datalookup_bundle_response_instance = LookupBundleResponse( # Add required fields here)# Convert to JSON stringjson_str = lookup_bundle_response_instance.to_json()print(json_str)# Create from JSON stringlookup_bundle_response_from_json = LookupBundleResponse.from_json(json_str)# Convert to dictlookup_bundle_response_dict = lookup_bundle_response_instance.to_dict()# Create from dictlookup_bundle_response_from_dict = LookupBundleResponse.from_dict(lookup_bundle_response_dict)