Skip to main content

Properties

NameTypeDescriptionNotes
is_auto_cancel_enabledboolWhether auto-cancel is enabled for this order group[optional]
ordersList[str]List of order IDs that belong to this order group[optional]

Example

from kalshi_python.models.get_order_group_response import GetOrderGroupResponse

# Create an instance with example data
get_order_group_response_instance = GetOrderGroupResponse(
    # Add required fields here
)

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

# Create from JSON string
get_order_group_response_from_json = GetOrderGroupResponse.from_json(json_str)

# Convert to dict
get_order_group_response_dict = get_order_group_response_instance.to_dict()

# Create from dict
get_order_group_response_from_dict = GetOrderGroupResponse.from_dict(get_order_group_response_dict)
[Back to Model list] [Back to API list] [Back to README]