Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.11 KB

File metadata and controls

31 lines (22 loc) · 1.11 KB

FlowNodeSummary

Properties

Name Type Description Notes
types_count List[TypesCountInner]
cloud_accounts_count List[CloudAccountCountInner]
cloud_regions_count List[CloudRegionCountInner]

Example

from ibm_gdsc_sdk_saas.models.flow_node_summary import FlowNodeSummary

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

# convert the object into a dict
flow_node_summary_dict = flow_node_summary_instance.to_dict()
# create an instance of FlowNodeSummary from a dict
flow_node_summary_from_dict = FlowNodeSummary.from_dict(flow_node_summary_dict)

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