Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.02 KB

File metadata and controls

33 lines (24 loc) · 1.02 KB

UserConnection

User connection extension.

Properties

Name Type Description Notes
api_version str
kind str
metadata Metadata
spec UserConnectionSpec

Example

from halo_client.models.user_connection import UserConnection

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

# convert the object into a dict
user_connection_dict = user_connection_instance.to_dict()
# create an instance of UserConnection from a dict
user_connection_from_dict = UserConnection.from_dict(user_connection_dict)

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