Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 835 Bytes

File metadata and controls

31 lines (22 loc) · 835 Bytes

Join

Properties

Name Type Description Notes
current_table_column str
join_table str
join_table_column str

Example

from onelens_backend_client.models.join import Join

# TODO update the JSON string below
json = "{}"
# 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_form_dict = join.from_dict(join_dict)

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