Object representing the conditions used to perform the join operation
Name | Type | Description | Notes |
---|---|---|---|
field | str | Field to join on | |
table | str | Joined table | |
type | object | [optional] |
from manticoresearch.models.join_cond import JoinCond
# create an instance of JoinCond from a JSON string
join_cond_instance = JoinCond.from_json(json)
# print the JSON string representation of the object
print(JoinCond.to_json())
# convert the object into a dict
join_cond_dict = join_cond_instance.to_dict()
# create an instance of JoinCond from a dict
join_cond_from_dict = JoinCond.from_dict(join_cond_dict)