Documentation Index
Fetch the complete documentation index at: https://docs.kalshi.com/llms.txt
Use this file to discover all available pages before exploring further.
Properties
| Name | Type | Description | Notes |
|---|
| bundle_id | str | | [optional] |
| price | float | | [optional] |
Example
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)
[Back to Model list] [Back to API list] [Back to README]