Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.01 KB

File metadata and controls

29 lines (20 loc) · 1.01 KB

DeleteClusterNodesFields

Properties

Name Type Description Notes
ids List[int] [optional]

Example

from hyperstack.models.delete_cluster_nodes_fields import DeleteClusterNodesFields

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

# convert the object into a dict
delete_cluster_nodes_fields_dict = delete_cluster_nodes_fields_instance.to_dict()
# create an instance of DeleteClusterNodesFields from a dict
delete_cluster_nodes_fields_from_dict = DeleteClusterNodesFields.from_dict(delete_cluster_nodes_fields_dict)

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