Skip to main content

Properties

NameTypeDescriptionNotes
event_tickerstr[optional]
series_tickerstr[optional]
sub_titlestr[optional]
titlestr[optional]
statusstr[optional]
marketsList[Market][optional]

Example

from kalshi_python.models.event import Event

# Create an instance with example data
event_instance = Event(
    # Add required fields here
)

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

# Create from JSON string
event_from_json = Event.from_json(json_str)

# Convert to dict
event_dict = event_instance.to_dict()

# Create from dict
event_from_dict = Event.from_dict(event_dict)
[Back to Model list] [Back to API list] [Back to README]