Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.04 KB

File metadata and controls

29 lines (20 loc) · 1.04 KB

ClusterRegistrationResponse

Properties

Name Type Description Notes
id int

Example

from platform_api_python_client.models.cluster_registration_response import ClusterRegistrationResponse

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

# convert the object into a dict
cluster_registration_response_dict = cluster_registration_response_instance.to_dict()
# create an instance of ClusterRegistrationResponse from a dict
cluster_registration_response_from_dict = ClusterRegistrationResponse.from_dict(cluster_registration_response_dict)

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