Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1010 Bytes

File metadata and controls

32 lines (23 loc) · 1010 Bytes

NodeStocksPayload

Properties

Name Type Description Notes
name str [optional]
type str
total int
in_use int

Example

from hyperstack.models.node_stocks_payload import NodeStocksPayload

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

# convert the object into a dict
node_stocks_payload_dict = node_stocks_payload_instance.to_dict()
# create an instance of NodeStocksPayload from a dict
node_stocks_payload_form_dict = node_stocks_payload.from_dict(node_stocks_payload_dict)

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