Skip to main content

Properties

NameTypeDescriptionNotes
tickerstr[optional]
is_yes_onlybool[optional]
size_minint[optional]
size_maxint[optional]

Example

from kalshi_python.models.multivariate_event_collection_events_inner import MultivariateEventCollectionEventsInner

# Create an instance with example data
multivariate_event_collection_events_inner_instance = MultivariateEventCollectionEventsInner(
    # Add required fields here
)

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

# Create from JSON string
multivariate_event_collection_events_inner_from_json = MultivariateEventCollectionEventsInner.from_json(json_str)

# Convert to dict
multivariate_event_collection_events_inner_dict = multivariate_event_collection_events_inner_instance.to_dict()

# Create from dict
multivariate_event_collection_events_inner_from_dict = MultivariateEventCollectionEventsInner.from_dict(multivariate_event_collection_events_inner_dict)
[Back to Model list] [Back to API list] [Back to README]