Skip to main content

Properties

NameTypeDescriptionNotes
tickerstr[optional]
marketsList[str][optional]

Example

from kalshi_python.models.lookup_bundle_request_bundle_inner import LookupBundleRequestBundleInner

# Create an instance with example data
lookup_bundle_request_bundle_inner_instance = LookupBundleRequestBundleInner(
    # Add required fields here
)

# Convert to JSON string
json_str = lookup_bundle_request_bundle_inner_instance.to_json()
print(json_str)

# Create from JSON string
lookup_bundle_request_bundle_inner_from_json = LookupBundleRequestBundleInner.from_json(json_str)

# Convert to dict
lookup_bundle_request_bundle_inner_dict = lookup_bundle_request_bundle_inner_instance.to_dict()

# Create from dict
lookup_bundle_request_bundle_inner_from_dict = LookupBundleRequestBundleInner.from_dict(lookup_bundle_request_bundle_inner_dict)
[Back to Model list] [Back to API list] [Back to README]