Skip to content

Latest commit

 

History

History
executable file
·
29 lines (20 loc) · 855 Bytes

JoinOn.md

File metadata and controls

executable file
·
29 lines (20 loc) · 855 Bytes

JoinOn

Properties

Name Type Description Notes
right JoinCond [optional]
left JoinCond [optional]
operator str [optional]

Example

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)

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