Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 917 Bytes

JoinCond.md

File metadata and controls

30 lines (21 loc) · 917 Bytes

JoinCond

Object representing the conditions used to perform the join operation

Properties

Name Type Description Notes
field str Field to join on
table str Joined table
type object [optional]

Example

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)

[Back to Model list] [Back to API list] [Back to README]