JoinOn
October 23, 2025 ยท View on GitHub
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| right | JoinCond | [optional] | |
| left | JoinCond | [optional] | |
| operator | str | [optional] |
Example
from manticoresearch.models.join_on import JoinOn
# TODO update the JSON string below
json = "{}"
# create an instance of JoinOn from a JSON string
join_on_instance = JoinOn.from_json(json)
# print the JSON string representation of the object
print(JoinOn.to_json())
# convert the object into a dict
join_on_dict = join_on_instance.to_dict()
# create an instance of JoinOn from a dict
join_on_from_dict = JoinOn.from_dict(join_on_dict)