Properties

NameTypeDescriptionNotes
collectionsList[MultivariateEventCollection][optional]

Example

from kalshi_python.models.get_multivariate_event_collections_response import GetMultivariateEventCollectionsResponse

# Create an instance with example data
get_multivariate_event_collections_response_instance = GetMultivariateEventCollectionsResponse(
    # Add required fields here
)

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

# Create from JSON string
get_multivariate_event_collections_response_from_json = GetMultivariateEventCollectionsResponse.from_json(json_str)

# Convert to dict
get_multivariate_event_collections_response_dict = get_multivariate_event_collections_response_instance.to_dict()

# Create from dict
get_multivariate_event_collections_response_from_dict = GetMultivariateEventCollectionsResponse.from_dict(get_multivariate_event_collections_response_dict)
[Back to Model list] [Back to API list] [Back to README]