Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 989 Bytes

UserCatalogDetails.md

File metadata and controls

29 lines (20 loc) · 989 Bytes

UserCatalogDetails

Properties

Name Type Description Notes
connections List[str] List of user auth connections.

Example

from onelens_backend_client.models.user_catalog_details import UserCatalogDetails

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

# convert the object into a dict
user_catalog_details_dict = user_catalog_details_instance.to_dict()
# create an instance of UserCatalogDetails from a dict
user_catalog_details_form_dict = user_catalog_details.from_dict(user_catalog_details_dict)

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