Name | Type | Description | Notes |
---|---|---|---|
type | str | Type of the join operation | |
on | List[JoinOn] | List of objects defining joined tables | |
query | FulltextFilter | [optional] | |
table | str | Basic table of the join operation |
from manticoresearch.models.join import Join
# create an instance of Join from a JSON string
join_instance = Join.from_json(json)
# print the JSON string representation of the object
print(Join.to_json())
# convert the object into a dict
join_dict = join_instance.to_dict()
# create an instance of Join from a dict
join_from_dict = Join.from_dict(join_dict)