Properties

NameTypeDescriptionNotes
queue_positionsDict[str, int][optional]

Example

from kalshi_python.models.get_queue_positions_response import GetQueuePositionsResponse

# Create an instance with example data
get_queue_positions_response_instance = GetQueuePositionsResponse(
    # Add required fields here
)

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

# Create from JSON string
get_queue_positions_response_from_json = GetQueuePositionsResponse.from_json(json_str)

# Convert to dict
get_queue_positions_response_dict = get_queue_positions_response_instance.to_dict()

# Create from dict
get_queue_positions_response_from_dict = GetQueuePositionsResponse.from_dict(get_queue_positions_response_dict)
[Back to Model list] [Back to API list] [Back to README]