Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.12 KB

File metadata and controls

34 lines (25 loc) · 1.12 KB

GetConnectionResponse

Response body for GET /connections/{connection_id}

Properties

Name Type Description Notes
id str
name str
source_type str
synced_table_count int
table_count int

Example

from hotdata.models.get_connection_response import GetConnectionResponse

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

# convert the object into a dict
get_connection_response_dict = get_connection_response_instance.to_dict()
# create an instance of GetConnectionResponse from a dict
get_connection_response_from_dict = GetConnectionResponse.from_dict(get_connection_response_dict)

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