Name | Type | Description | Notes |
---|---|---|---|
right | JoinCond | [optional] | |
left | JoinCond | [optional] | |
operator | str | [optional] |
from manticoresearch.models.join_on import JoinOn
# 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)