Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 927 Bytes

File metadata and controls

30 lines (21 loc) · 927 Bytes

JoinResponse

Properties

Name Type Description Notes
stats JoinStats
results List[Dict[str, object]] [optional]

Example

from mixpeek.models.join_response import JoinResponse

# TODO update the JSON string below
json = "{}"
# create an instance of JoinResponse from a JSON string
join_response_instance = JoinResponse.from_json(json)
# print the JSON string representation of the object
print(JoinResponse.to_json())

# convert the object into a dict
join_response_dict = join_response_instance.to_dict()
# create an instance of JoinResponse from a dict
join_response_from_dict = JoinResponse.from_dict(join_response_dict)

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